-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathX32Show.h
7322 lines (7236 loc) · 451 KB
/
X32Show.h
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
/*
* X32Show.h
*
* Created on: 19 févr. 2015
* Author: patrick
*/
#ifndef X32SHOW_H_
#define X32SHOW_H_
X32command Xshow[] = {
{"/-show/prepos/current", {I32}, F_XET, {0}, NULL},
{"/-show", {SNAM}, F_FND, {0}, NULL},
{"/-show/showfile", {SNAM}, F_FND, {0}, NULL},
{"/-show/showfile/show", {SNAM}, F_FND, {0}, NULL},
{"/-show/showfile/show/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/show/inputs", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/show/mxsends", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/show/mxbuses", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/show/console", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/show/chan16", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/show/chan32", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/show/return", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/show/buses", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/show/lrmtxdca", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/show/effects", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/000", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/000/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/000/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/000/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/000/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/000/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/000/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/000/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/000/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/000/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/001", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/001/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/001/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/001/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/001/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/001/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/001/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/001/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/001/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/001/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/002", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/002/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/002/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/002/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/002/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/002/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/002/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/002/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/002/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/002/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/003", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/003/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/003/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/003/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/003/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/003/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/003/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/003/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/003/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/003/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/004", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/004/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/004/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/004/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/004/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/004/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/004/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/004/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/004/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/004/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/005", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/005/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/005/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/005/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/005/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/005/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/005/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/005/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/005/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/005/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/006", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/006/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/006/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/006/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/006/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/006/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/006/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/006/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/006/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/006/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/007", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/007/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/007/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/007/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/007/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/007/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/007/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/007/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/007/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/007/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/008", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/008/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/008/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/008/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/008/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/008/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/008/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/008/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/008/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/008/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/009", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/009/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/009/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/009/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/009/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/009/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/009/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/009/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/009/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/009/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/010", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/010/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/010/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/010/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/010/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/010/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/010/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/010/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/010/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/010/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/011", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/011/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/011/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/011/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/011/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/011/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/011/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/011/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/011/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/011/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/012", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/012/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/012/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/012/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/012/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/012/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/012/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/012/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/012/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/012/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/013", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/013/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/013/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/013/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/013/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/013/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/013/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/013/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/013/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/013/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/014", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/014/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/014/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/014/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/014/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/014/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/014/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/014/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/014/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/014/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/015", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/015/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/015/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/015/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/015/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/015/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/015/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/015/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/015/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/015/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/016", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/016/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/016/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/016/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/016/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/016/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/016/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/016/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/016/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/016/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/017", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/017/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/017/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/017/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/017/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/017/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/017/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/017/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/017/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/017/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/018", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/018/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/018/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/018/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/018/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/018/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/018/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/018/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/018/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/018/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/019", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/019/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/019/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/019/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/019/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/019/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/019/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/019/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/019/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/019/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/020", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/020/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/020/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/020/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/020/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/020/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/020/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/020/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/020/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/020/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/021", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/021/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/021/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/021/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/021/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/021/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/021/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/021/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/021/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/021/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/022", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/022/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/022/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/022/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/022/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/022/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/022/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/022/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/022/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/022/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/023", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/023/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/023/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/023/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/023/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/023/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/023/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/023/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/023/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/023/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/024", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/024/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/024/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/024/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/024/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/024/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/024/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/024/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/024/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/024/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/025", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/025/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/025/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/025/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/025/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/025/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/025/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/025/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/025/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/025/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/026", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/026/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/026/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/026/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/026/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/026/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/026/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/026/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/026/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/026/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/027", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/027/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/027/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/027/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/027/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/027/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/027/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/027/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/027/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/027/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/028", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/028/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/028/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/028/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/028/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/028/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/028/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/028/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/028/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/028/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/029", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/029/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/029/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/029/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/029/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/029/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/029/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/029/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/029/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/029/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/030", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/030/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/030/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/030/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/030/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/030/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/030/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/030/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/030/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/030/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/031", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/031/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/031/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/031/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/031/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/031/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/031/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/031/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/031/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/031/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/032", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/032/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/032/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/032/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/032/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/032/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/032/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/032/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/032/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/032/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/033", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/033/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/033/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/033/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/033/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/033/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/033/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/033/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/033/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/033/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/034", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/034/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/034/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/034/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/034/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/034/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/034/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/034/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/034/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/034/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/035", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/035/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/035/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/035/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/035/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/035/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/035/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/035/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/035/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/035/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/036", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/036/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/036/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/036/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/036/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/036/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/036/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/036/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/036/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/036/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/037", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/037/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/037/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/037/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/037/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/037/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/037/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/037/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/037/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/037/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/038", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/038/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/038/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/038/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/038/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/038/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/038/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/038/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/038/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/038/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/039", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/039/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/039/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/039/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/039/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/039/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/039/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/039/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/039/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/039/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/040", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/040/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/040/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/040/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/040/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/040/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/040/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/040/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/040/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/040/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/041", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/041/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/041/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/041/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/041/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/041/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/041/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/041/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/041/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/041/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/042", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/042/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/042/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/042/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/042/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/042/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/042/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/042/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/042/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/042/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/043", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/043/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/043/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/043/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/043/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/043/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/043/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/043/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/043/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/043/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/044", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/044/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/044/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/044/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/044/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/044/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/044/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/044/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/044/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/044/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/045", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/045/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/045/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/045/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/045/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/045/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/045/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/045/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/045/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/045/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/046", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/046/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/046/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/046/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/046/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/046/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/046/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/046/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/046/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/046/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/047", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/047/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/047/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/047/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/047/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/047/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/047/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/047/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/047/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/047/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/048", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/048/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/048/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/048/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/048/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/048/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/048/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/048/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/048/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/048/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/049", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/049/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/049/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/049/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/049/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/049/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/049/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/049/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/049/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/049/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/050", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/050/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/050/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/050/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/050/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/050/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/050/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/050/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/050/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/050/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/051", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/051/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/051/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/051/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/051/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/051/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/051/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/051/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/051/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/051/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/052", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/052/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/052/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/052/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/052/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/052/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/052/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/052/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/052/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/052/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/053", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/053/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/053/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/053/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/053/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/053/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/053/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/053/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/053/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/053/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/054", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/054/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/054/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/054/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/054/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/054/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/054/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/054/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/054/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/054/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/055", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/055/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/055/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/055/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/055/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/055/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/055/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/055/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/055/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/055/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/056", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/056/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/056/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/056/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/056/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/056/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/056/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/056/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/056/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/056/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/057", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/057/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/057/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/057/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/057/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/057/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/057/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/057/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/057/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/057/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/058", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/058/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/058/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/058/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/058/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/058/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/058/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/058/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/058/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/058/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/059", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/059/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/059/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/059/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/059/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/059/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/059/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/059/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/059/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/059/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/060", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/060/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/060/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/060/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/060/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/060/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/060/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/060/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/060/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/060/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/061", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/061/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/061/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/061/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/061/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/061/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/061/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/061/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/061/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/061/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/062", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/062/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/062/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/062/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/062/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/062/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/062/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/062/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/062/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/062/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/063", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/063/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/063/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/063/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/063/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/063/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/063/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/063/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/063/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/063/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/064", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/064/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/064/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/064/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/064/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/064/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/064/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/064/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/064/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/064/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/065", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/065/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/065/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/065/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/065/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/065/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/065/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/065/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/065/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/065/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/066", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/066/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/066/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/066/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/066/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/066/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/066/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/066/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/066/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/066/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/067", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/067/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/067/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/067/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/067/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/067/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/067/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/067/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/067/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/067/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/068", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/068/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/068/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/068/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/068/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/068/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/068/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/068/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/068/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/068/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/069", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/069/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/069/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/069/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/069/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/069/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/069/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/069/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/069/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/069/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/070", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/070/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/070/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/070/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/070/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/070/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/070/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/070/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/070/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/070/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/071", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/071/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/071/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/071/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/071/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/071/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/071/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/071/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/071/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/071/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/072", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/072/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/072/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/072/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/072/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/072/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/072/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/072/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/072/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/072/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/073", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/073/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/073/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/073/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/073/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/073/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/073/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/073/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/073/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/073/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/074", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/074/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/074/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/074/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/074/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/074/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/074/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/074/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/074/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/074/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/075", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/075/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/075/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/075/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/075/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/075/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/075/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/075/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/075/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/075/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/076", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/076/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/076/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/076/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/076/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/076/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/076/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/076/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/076/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/076/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/077", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/077/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/077/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/077/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/077/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/077/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/077/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/077/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/077/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/077/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/078", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/078/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/078/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/078/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/078/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/078/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/078/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/078/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/078/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/078/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/079", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/079/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/079/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/079/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/079/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/079/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/079/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/079/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/079/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/079/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/080", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/080/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/080/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/080/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/080/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/080/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/080/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/080/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/080/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/080/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/081", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/081/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/081/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/081/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/081/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/081/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/081/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/081/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/081/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/081/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/082", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/082/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/082/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/082/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/082/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/082/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/082/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/082/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/082/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/082/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/083", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/083/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/083/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/083/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/083/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/083/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/083/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/083/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/083/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/083/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/084", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/084/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/084/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/084/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/084/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/084/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/084/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/084/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/084/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/084/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/085", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/085/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/085/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/085/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/085/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/085/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/085/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/085/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/085/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/085/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/086", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/086/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/086/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/086/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/086/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/086/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/086/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/086/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/086/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/086/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/087", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/087/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/087/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/087/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/087/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/087/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/087/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/087/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/087/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/087/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/088", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/088/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/088/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/088/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/088/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/088/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/088/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/088/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/088/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/088/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/089", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/089/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/089/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/089/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/089/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/089/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/089/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/089/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/089/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/089/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/090", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/090/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/090/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/090/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/090/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/090/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/090/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/090/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/090/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/090/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/091", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/091/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/091/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/091/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/091/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/091/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/091/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/091/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/091/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/091/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/092", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/092/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/092/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/092/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/092/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/092/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/092/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/092/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/092/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/092/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/093", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/093/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/093/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/093/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/093/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/093/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/093/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/093/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/093/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/093/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/094", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/094/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/094/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/094/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/094/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/094/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/094/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/094/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/094/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/094/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/095", {SCUE}, F_FND, {0}, NULL},
{"/-show/showfile/cue/095/numb", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/095/name", {S32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/095/skip", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/095/scene", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/095/bit", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/095/miditype", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/095/midichan", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/095/midipara1", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/095/midipara2", {I32}, F_XET, {0}, NULL},
{"/-show/showfile/cue/096", {SCUE}, F_FND, {0}, NULL},