-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathinstrument_Qxx.txt
1797 lines (1539 loc) · 33.6 KB
/
instrument_Qxx.txt
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
#Maintained by: RehabMan for: ACPIDebug
#instrument_Qxx.txt
# generated by instrument.sh
into method label _Q00 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q00 enter")\n
%1\n
\\rmdt.p1("EC _Q00 exit")\n
end;
into method label _Q01 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q01 enter")\n
%1\n
\\rmdt.p1("EC _Q01 exit")\n
end;
into method label _Q02 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q02 enter")\n
%1\n
\\rmdt.p1("EC _Q02 exit")\n
end;
into method label _Q03 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q03 enter")\n
%1\n
\\rmdt.p1("EC _Q03 exit")\n
end;
into method label _Q04 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q04 enter")\n
%1\n
\\rmdt.p1("EC _Q04 exit")\n
end;
into method label _Q05 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q05 enter")\n
%1\n
\\rmdt.p1("EC _Q05 exit")\n
end;
into method label _Q06 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q06 enter")\n
%1\n
\\rmdt.p1("EC _Q06 exit")\n
end;
into method label _Q07 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q07 enter")\n
%1\n
\\rmdt.p1("EC _Q07 exit")\n
end;
into method label _Q08 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q08 enter")\n
%1\n
\\rmdt.p1("EC _Q08 exit")\n
end;
into method label _Q09 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q09 enter")\n
%1\n
\\rmdt.p1("EC _Q09 exit")\n
end;
into method label _Q0A code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q0A enter")\n
%1\n
\\rmdt.p1("EC _Q0A exit")\n
end;
into method label _Q0B code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q0B enter")\n
%1\n
\\rmdt.p1("EC _Q0B exit")\n
end;
into method label _Q0C code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q0C enter")\n
%1\n
\\rmdt.p1("EC _Q0C exit")\n
end;
into method label _Q0D code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q0D enter")\n
%1\n
\\rmdt.p1("EC _Q0D exit")\n
end;
into method label _Q0E code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q0E enter")\n
%1\n
\\rmdt.p1("EC _Q0E exit")\n
end;
into method label _Q0F code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q0F enter")\n
%1\n
\\rmdt.p1("EC _Q0F exit")\n
end;
into method label _Q10 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q10 enter")\n
%1\n
\\rmdt.p1("EC _Q10 exit")\n
end;
into method label _Q11 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q11 enter")\n
%1\n
\\rmdt.p1("EC _Q11 exit")\n
end;
into method label _Q12 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q12 enter")\n
%1\n
\\rmdt.p1("EC _Q12 exit")\n
end;
into method label _Q13 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q13 enter")\n
%1\n
\\rmdt.p1("EC _Q13 exit")\n
end;
into method label _Q14 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q14 enter")\n
%1\n
\\rmdt.p1("EC _Q14 exit")\n
end;
into method label _Q15 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q15 enter")\n
%1\n
\\rmdt.p1("EC _Q15 exit")\n
end;
into method label _Q16 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q16 enter")\n
%1\n
\\rmdt.p1("EC _Q16 exit")\n
end;
into method label _Q17 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q17 enter")\n
%1\n
\\rmdt.p1("EC _Q17 exit")\n
end;
into method label _Q18 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q18 enter")\n
%1\n
\\rmdt.p1("EC _Q18 exit")\n
end;
into method label _Q19 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q19 enter")\n
%1\n
\\rmdt.p1("EC _Q19 exit")\n
end;
into method label _Q1A code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q1A enter")\n
%1\n
\\rmdt.p1("EC _Q1A exit")\n
end;
into method label _Q1B code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q1B enter")\n
%1\n
\\rmdt.p1("EC _Q1B exit")\n
end;
into method label _Q1C code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q1C enter")\n
%1\n
\\rmdt.p1("EC _Q1C exit")\n
end;
into method label _Q1D code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q1D enter")\n
%1\n
\\rmdt.p1("EC _Q1D exit")\n
end;
into method label _Q1E code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q1E enter")\n
%1\n
\\rmdt.p1("EC _Q1E exit")\n
end;
into method label _Q1F code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q1F enter")\n
%1\n
\\rmdt.p1("EC _Q1F exit")\n
end;
into method label _Q20 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q20 enter")\n
%1\n
\\rmdt.p1("EC _Q20 exit")\n
end;
into method label _Q21 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q21 enter")\n
%1\n
\\rmdt.p1("EC _Q21 exit")\n
end;
into method label _Q22 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q22 enter")\n
%1\n
\\rmdt.p1("EC _Q22 exit")\n
end;
into method label _Q23 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q23 enter")\n
%1\n
\\rmdt.p1("EC _Q23 exit")\n
end;
into method label _Q24 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q24 enter")\n
%1\n
\\rmdt.p1("EC _Q24 exit")\n
end;
into method label _Q25 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q25 enter")\n
%1\n
\\rmdt.p1("EC _Q25 exit")\n
end;
into method label _Q26 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q26 enter")\n
%1\n
\\rmdt.p1("EC _Q26 exit")\n
end;
into method label _Q27 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q27 enter")\n
%1\n
\\rmdt.p1("EC _Q27 exit")\n
end;
into method label _Q28 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q28 enter")\n
%1\n
\\rmdt.p1("EC _Q28 exit")\n
end;
into method label _Q29 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q29 enter")\n
%1\n
\\rmdt.p1("EC _Q29 exit")\n
end;
into method label _Q2A code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q2A enter")\n
%1\n
\\rmdt.p1("EC _Q2A exit")\n
end;
into method label _Q2B code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q2B enter")\n
%1\n
\\rmdt.p1("EC _Q2B exit")\n
end;
into method label _Q2C code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q2C enter")\n
%1\n
\\rmdt.p1("EC _Q2C exit")\n
end;
into method label _Q2D code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q2D enter")\n
%1\n
\\rmdt.p1("EC _Q2D exit")\n
end;
into method label _Q2E code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q2E enter")\n
%1\n
\\rmdt.p1("EC _Q2E exit")\n
end;
into method label _Q2F code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q2F enter")\n
%1\n
\\rmdt.p1("EC _Q2F exit")\n
end;
into method label _Q30 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q30 enter")\n
%1\n
\\rmdt.p1("EC _Q30 exit")\n
end;
into method label _Q31 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q31 enter")\n
%1\n
\\rmdt.p1("EC _Q31 exit")\n
end;
into method label _Q32 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q32 enter")\n
%1\n
\\rmdt.p1("EC _Q32 exit")\n
end;
into method label _Q33 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q33 enter")\n
%1\n
\\rmdt.p1("EC _Q33 exit")\n
end;
into method label _Q34 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q34 enter")\n
%1\n
\\rmdt.p1("EC _Q34 exit")\n
end;
into method label _Q35 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q35 enter")\n
%1\n
\\rmdt.p1("EC _Q35 exit")\n
end;
into method label _Q36 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q36 enter")\n
%1\n
\\rmdt.p1("EC _Q36 exit")\n
end;
into method label _Q37 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q37 enter")\n
%1\n
\\rmdt.p1("EC _Q37 exit")\n
end;
into method label _Q38 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q38 enter")\n
%1\n
\\rmdt.p1("EC _Q38 exit")\n
end;
into method label _Q39 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q39 enter")\n
%1\n
\\rmdt.p1("EC _Q39 exit")\n
end;
into method label _Q3A code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q3A enter")\n
%1\n
\\rmdt.p1("EC _Q3A exit")\n
end;
into method label _Q3B code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q3B enter")\n
%1\n
\\rmdt.p1("EC _Q3B exit")\n
end;
into method label _Q3C code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q3C enter")\n
%1\n
\\rmdt.p1("EC _Q3C exit")\n
end;
into method label _Q3D code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q3D enter")\n
%1\n
\\rmdt.p1("EC _Q3D exit")\n
end;
into method label _Q3E code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q3E enter")\n
%1\n
\\rmdt.p1("EC _Q3E exit")\n
end;
into method label _Q3F code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q3F enter")\n
%1\n
\\rmdt.p1("EC _Q3F exit")\n
end;
into method label _Q40 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q40 enter")\n
%1\n
\\rmdt.p1("EC _Q40 exit")\n
end;
into method label _Q41 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q41 enter")\n
%1\n
\\rmdt.p1("EC _Q41 exit")\n
end;
into method label _Q42 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q42 enter")\n
%1\n
\\rmdt.p1("EC _Q42 exit")\n
end;
into method label _Q43 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q43 enter")\n
%1\n
\\rmdt.p1("EC _Q43 exit")\n
end;
into method label _Q44 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q44 enter")\n
%1\n
\\rmdt.p1("EC _Q44 exit")\n
end;
into method label _Q45 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q45 enter")\n
%1\n
\\rmdt.p1("EC _Q45 exit")\n
end;
into method label _Q46 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q46 enter")\n
%1\n
\\rmdt.p1("EC _Q46 exit")\n
end;
into method label _Q47 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q47 enter")\n
%1\n
\\rmdt.p1("EC _Q47 exit")\n
end;
into method label _Q48 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q48 enter")\n
%1\n
\\rmdt.p1("EC _Q48 exit")\n
end;
into method label _Q49 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q49 enter")\n
%1\n
\\rmdt.p1("EC _Q49 exit")\n
end;
into method label _Q4A code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q4A enter")\n
%1\n
\\rmdt.p1("EC _Q4A exit")\n
end;
into method label _Q4B code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q4B enter")\n
%1\n
\\rmdt.p1("EC _Q4B exit")\n
end;
into method label _Q4C code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q4C enter")\n
%1\n
\\rmdt.p1("EC _Q4C exit")\n
end;
into method label _Q4D code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q4D enter")\n
%1\n
\\rmdt.p1("EC _Q4D exit")\n
end;
into method label _Q4E code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q4E enter")\n
%1\n
\\rmdt.p1("EC _Q4E exit")\n
end;
into method label _Q4F code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q4F enter")\n
%1\n
\\rmdt.p1("EC _Q4F exit")\n
end;
into method label _Q50 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q50 enter")\n
%1\n
\\rmdt.p1("EC _Q50 exit")\n
end;
into method label _Q51 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q51 enter")\n
%1\n
\\rmdt.p1("EC _Q51 exit")\n
end;
into method label _Q52 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q52 enter")\n
%1\n
\\rmdt.p1("EC _Q52 exit")\n
end;
into method label _Q53 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q53 enter")\n
%1\n
\\rmdt.p1("EC _Q53 exit")\n
end;
into method label _Q54 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q54 enter")\n
%1\n
\\rmdt.p1("EC _Q54 exit")\n
end;
into method label _Q55 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q55 enter")\n
%1\n
\\rmdt.p1("EC _Q55 exit")\n
end;
into method label _Q56 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q56 enter")\n
%1\n
\\rmdt.p1("EC _Q56 exit")\n
end;
into method label _Q57 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q57 enter")\n
%1\n
\\rmdt.p1("EC _Q57 exit")\n
end;
into method label _Q58 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q58 enter")\n
%1\n
\\rmdt.p1("EC _Q58 exit")\n
end;
into method label _Q59 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q59 enter")\n
%1\n
\\rmdt.p1("EC _Q59 exit")\n
end;
into method label _Q5A code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q5A enter")\n
%1\n
\\rmdt.p1("EC _Q5A exit")\n
end;
into method label _Q5B code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q5B enter")\n
%1\n
\\rmdt.p1("EC _Q5B exit")\n
end;
into method label _Q5C code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q5C enter")\n
%1\n
\\rmdt.p1("EC _Q5C exit")\n
end;
into method label _Q5D code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q5D enter")\n
%1\n
\\rmdt.p1("EC _Q5D exit")\n
end;
into method label _Q5E code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q5E enter")\n
%1\n
\\rmdt.p1("EC _Q5E exit")\n
end;
into method label _Q5F code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q5F enter")\n
%1\n
\\rmdt.p1("EC _Q5F exit")\n
end;
into method label _Q60 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q60 enter")\n
%1\n
\\rmdt.p1("EC _Q60 exit")\n
end;
into method label _Q61 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q61 enter")\n
%1\n
\\rmdt.p1("EC _Q61 exit")\n
end;
into method label _Q62 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q62 enter")\n
%1\n
\\rmdt.p1("EC _Q62 exit")\n
end;
into method label _Q63 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q63 enter")\n
%1\n
\\rmdt.p1("EC _Q63 exit")\n
end;
into method label _Q64 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q64 enter")\n
%1\n
\\rmdt.p1("EC _Q64 exit")\n
end;
into method label _Q65 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q65 enter")\n
%1\n
\\rmdt.p1("EC _Q65 exit")\n
end;
into method label _Q66 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q66 enter")\n
%1\n
\\rmdt.p1("EC _Q66 exit")\n
end;
into method label _Q67 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q67 enter")\n
%1\n
\\rmdt.p1("EC _Q67 exit")\n
end;
into method label _Q68 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q68 enter")\n
%1\n
\\rmdt.p1("EC _Q68 exit")\n
end;
into method label _Q69 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q69 enter")\n
%1\n
\\rmdt.p1("EC _Q69 exit")\n
end;
into method label _Q6A code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q6A enter")\n
%1\n
\\rmdt.p1("EC _Q6A exit")\n
end;
into method label _Q6B code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q6B enter")\n
%1\n
\\rmdt.p1("EC _Q6B exit")\n
end;
into method label _Q6C code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q6C enter")\n
%1\n
\\rmdt.p1("EC _Q6C exit")\n
end;
into method label _Q6D code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q6D enter")\n
%1\n
\\rmdt.p1("EC _Q6D exit")\n
end;
into method label _Q6E code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q6E enter")\n
%1\n
\\rmdt.p1("EC _Q6E exit")\n
end;
into method label _Q6F code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q6F enter")\n
%1\n
\\rmdt.p1("EC _Q6F exit")\n
end;
into method label _Q70 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q70 enter")\n
%1\n
\\rmdt.p1("EC _Q70 exit")\n
end;
into method label _Q71 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q71 enter")\n
%1\n
\\rmdt.p1("EC _Q71 exit")\n
end;
into method label _Q72 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q72 enter")\n
%1\n
\\rmdt.p1("EC _Q72 exit")\n
end;
into method label _Q73 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q73 enter")\n
%1\n
\\rmdt.p1("EC _Q73 exit")\n
end;
into method label _Q74 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q74 enter")\n
%1\n
\\rmdt.p1("EC _Q74 exit")\n
end;
into method label _Q75 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q75 enter")\n
%1\n
\\rmdt.p1("EC _Q75 exit")\n
end;
into method label _Q76 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q76 enter")\n
%1\n
\\rmdt.p1("EC _Q76 exit")\n
end;
into method label _Q77 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q77 enter")\n
%1\n
\\rmdt.p1("EC _Q77 exit")\n
end;
into method label _Q78 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q78 enter")\n
%1\n
\\rmdt.p1("EC _Q78 exit")\n
end;
into method label _Q79 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q79 enter")\n
%1\n
\\rmdt.p1("EC _Q79 exit")\n
end;
into method label _Q7A code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q7A enter")\n
%1\n
\\rmdt.p1("EC _Q7A exit")\n
end;
into method label _Q7B code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q7B enter")\n
%1\n
\\rmdt.p1("EC _Q7B exit")\n
end;
into method label _Q7C code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q7C enter")\n
%1\n
\\rmdt.p1("EC _Q7C exit")\n
end;
into method label _Q7D code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q7D enter")\n
%1\n
\\rmdt.p1("EC _Q7D exit")\n
end;
into method label _Q7E code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q7E enter")\n
%1\n
\\rmdt.p1("EC _Q7E exit")\n
end;
into method label _Q7F code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q7F enter")\n
%1\n
\\rmdt.p1("EC _Q7F exit")\n
end;
into method label _Q80 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q80 enter")\n
%1\n
\\rmdt.p1("EC _Q80 exit")\n
end;
into method label _Q81 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q81 enter")\n
%1\n
\\rmdt.p1("EC _Q81 exit")\n
end;
into method label _Q82 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q82 enter")\n
%1\n
\\rmdt.p1("EC _Q82 exit")\n
end;
into method label _Q83 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q83 enter")\n
%1\n
\\rmdt.p1("EC _Q83 exit")\n
end;
into method label _Q84 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q84 enter")\n
%1\n
\\rmdt.p1("EC _Q84 exit")\n
end;
into method label _Q85 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q85 enter")\n
%1\n
\\rmdt.p1("EC _Q85 exit")\n
end;
into method label _Q86 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q86 enter")\n
%1\n
\\rmdt.p1("EC _Q86 exit")\n
end;
into method label _Q87 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q87 enter")\n
%1\n
\\rmdt.p1("EC _Q87 exit")\n
end;
into method label _Q88 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q88 enter")\n
%1\n
\\rmdt.p1("EC _Q88 exit")\n
end;
into method label _Q89 code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q89 enter")\n
%1\n
\\rmdt.p1("EC _Q89 exit")\n
end;
into method label _Q8A code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q8A enter")\n
%1\n
\\rmdt.p1("EC _Q8A exit")\n
end;
into method label _Q8B code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q8B enter")\n
%1\n
\\rmdt.p1("EC _Q8B exit")\n
end;
into method label _Q8C code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q8C enter")\n
%1\n
\\rmdt.p1("EC _Q8C exit")\n
end;
into method label _Q8D code_regex ([\s\S]*) replace_matched
begin
\\rmdt.p1("EC _Q8D enter")\n
%1\n
\\rmdt.p1("EC _Q8D exit")\n
end;
into method label _Q8E code_regex ([\s\S]*) replace_matched