CT-mdm-full-i-F-D-ov1.sgml
256 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
<SYSTEM title="CT-mdm-full-i-F-D-ov1" ref_fname="rt04s.040420.mdm.overlap.stm.filt" hyp_fname="rt04s.040810.mdm.overlap.ctm.filt" creation_date="" format="2.4" frag_corr="TRUE" opt_del="TRUE" weight_ali="FALSE" weight_filename="">
<CATEGORY id="0" title="" desc="">
</CATEGORY>
<CATEGORY id="1" title="" desc="Speaker Sex">
</CATEGORY>
<LABEL id="female" title="Female" desc="">
</LABEL>
<LABEL id="male" title="Male" desc="">
</LABEL>
<LABEL id="O" title="Overall" desc="Overall">
</LABEL>
<LABEL id="unk" title="Unknown" desc="">
</LABEL>
<CATEGORY id="2" title="" desc="Meeting IDs">
</CATEGORY>
<LABEL id="C1" title="CMU_20030109-1530" desc="">
</LABEL>
<LABEL id="C2" title="CMU_20030109-1600" desc="">
</LABEL>
<LABEL id="I1" title="ICSI_20000807-1000" desc="">
</LABEL>
<LABEL id="I2" title="ICSI_20011030-1030" desc="">
</LABEL>
<LABEL id="L1" title="LDC_20011121-1700" desc="">
</LABEL>
<LABEL id="L2" title="LDC_20011207-1800" desc="">
</LABEL>
<LABEL id="N1" title="NIST_20030623-1409" desc="">
</LABEL>
<LABEL id="N2" title="NIST_20030925-1517" desc="">
</LABEL>
<SPEAKER id="COU">
<PATH id="(COU-001)" word_cnt="21" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="3" R_T1="38.525" R_T2="43.025" word_aux="h_t1+t2,h_conf">
C,"and","and",38.580+38.990,1.000000:C,"they","they",39.140+39.245,0.911768:C,"were","were",39.245+39.350,0.911768:C,"doing","doing",39.350+39.530,0.985764:D,"an",,,:D,"article",,,:D,"about",,,:D,"the",,,:D,"e.",,,:D,"u.",,,:D,"flag",,,:D,"and",,,:D,"they",,,:D,"were",,,:S,"saying","i",39.530+39.750,0.971276:S,"that","thought",39.750+40.010,0.842478:S,"it","you",40.170+40.260,0.831566:S,"had","flat",40.260+40.590,0.998666:S,"been","eight",40.950+41.300,1.000000:S,"suggested","yes",42.150+42.460,0.497458:C,"and","and",42.560+42.880,0.999886
</PATH>
<PATH id="(COU-004)" word_cnt="2" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="9" R_T1="55.325" R_T2="56.025" word_aux="h_t1+t2,h_conf">
D,"bar",,,:S,"code","mark",55.440+55.670,0.994851
</PATH>
<PATH id="(COU-033)" word_cnt="16" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="114" R_T1="248.425" R_T2="252.275" word_aux="h_t1+t2,h_conf">
D,"a",,,:D,"symbol",,,:D,"of",,,:D,"anything",,,:D,"it",,,:S,"is","well",248.691+248.921,0.998722:S,"just","do",248.991+249.061,0.644954:S,"sort","you",249.061+249.181,0.664877:S,"of","think",249.181+249.451,0.987844:S,"a","said",249.671+249.861,0.471808:S,"symbolic","up",250.081+250.331,0.342526:S,"unifying","this",250.481+250.791,0.846652:C,"number","number",250.921+251.331,0.997618:D,"and",,,:D,"it",,,:D,"is",,,
</PATH>
<PATH id="(COU-034)" word_cnt="8" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="115" R_T1="252.375" R_T2="254.400" word_aux="h_t1+t2,h_conf">
D,"nice",,,:D,"because",,,:D,"it",,,:D,"is",,,:D,"the",,,:D,"number",,,:D,"twelve",,,:D,"and",,,
</PATH>
<PATH id="(COU-057)" word_cnt="20" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="225" R_T1="442.325" R_T2="446.375" word_aux="h_t1+t2,h_conf">
D,"people",,,:D,"smuggling",,,:D,"radios",,,:D,"to",,,:D,"listen",,,:D,"to",,,:D,"the",,,:D,"news",,,:D,"and",,,:D,"listen",,,:D,"to",,,:D,"what",,,:D,"was",,,:D,"going",,,:C,"on","on",442.791+442.921,0.471039:D,"in",,,:D,"a",,,:D,"world",,,:S,"war","like",442.921+443.061,0.520801:S,"two","they",443.061+443.191,0.455837
</PATH>
<PATH id="(COU-058)" word_cnt="1" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="226" R_T1="446.825" R_T2="447.625" word_aux="h_t1+t2,h_conf">
D,"front",,,
</PATH>
<PATH id="(COU-060)" word_cnt="4" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="229" R_T1="449.900" R_T2="450.925" word_aux="h_t1+t2,h_conf">
C,"that","that",450.060+450.330,0.997973:D,"was",,,:D,"not",,,:S,"official","so",450.490+450.680,0.824371
</PATH>
<PATH id="(COU-071)" word_cnt="2" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="270" R_T1="507.000" R_T2="507.450" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"know",,,
</PATH>
<PATH id="(COU-090)" word_cnt="21" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="385" R_T1="668.175" R_T2="671.825" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:C,"she","she",668.450+668.610,0.495431:D,"has",,,:D,"access",,,:D,"to",,,:D,"one",,,:D,"and",,,:C,"she","she",668.610+668.655,0.348113:D,"calls",,,:D,"up",,,:D,"the",,,:D,"f.",,,:D,"a.",,,:D,"a.",,,:D,"a",,,:D,"couple",,,:D,"days",,,:D,"before",,,:D,"it",,,:S,"and","had",668.655+668.700,0.348113:S,"says","stopped",669.730+670.100,0.300983
</PATH>
<PATH id="(COU-091)" word_cnt="15" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="386" R_T1="672.025" R_T2="673.650" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"want",,,:D,"to",,,:D,"fly",,,:D,"to",,,:D,"here",,,:D,"and",,,:D,"they",,,:D,"are",,,:D,"like",,,:D,"all",,,:D,"right",,,:S,"you","that's",672.360+672.640,0.810069:S,"are","actually",673.130+673.400,0.761896:C,"good","good",673.400+673.560,0.934534
</PATH>
<PATH id="(COU-153)" word_cnt="4" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="727" R_T1="464.733" R_T2="465.650" word_aux="h_t1+t2,h_conf">
D,"they",,,:D,"have",,,:D,"some",,,:S,"here","yeah",464.791+465.151,0.290130
</PATH>
<PATH id="(COU-177)" word_cnt="1" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="818" R_T1="602.900" R_T2="603.350" word_aux="h_t1+t2,h_conf">
D,"right",,,
</PATH>
</SPEAKER>
<SPEAKER id="TBVSTT">
<PATH id="(TBVSTT-007)" word_cnt="6" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="33" R_T1="105.387" R_T2="107.600" word_aux="h_t1+t2,h_conf">
C,"groups","groups",105.520+105.800,1.000000:C,"that","that",105.800+105.890,0.676165:D,"seem",,,:S,"to","into",106.000+106.270,0.502367:C,"sometimes","sometimes",106.270+106.730,0.765477:C,"disagree","disagree",106.860+107.410,0.954219
</PATH>
<PATH id="(TBVSTT-010)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="40" R_T1="115.275" R_T2="118.050" word_aux="h_t1+t2,h_conf">
C,"one","one",115.330+115.560,1.000000:C,"part","part",115.560+115.760,0.999996:C,"of","of",115.760+115.820,0.996930:C,"the","the",115.820+115.880,0.948012:D,"e.",,,:C,"u.","u.",115.880+116.190,0.761980:C,"was","was",116.190+116.430,0.965982:C,"producing","producing",116.520+116.880,0.999744:S,"a","the",116.880+116.940,0.525194:C,"report","report",116.940+117.440,0.982952:C,"on","on",117.440+117.760,0.935110
</PATH>
<PATH id="(TBVSTT-011)" word_cnt="6" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="41" R_T1="118.310" R_T2="119.949" word_aux="h_t1+t2,h_conf">
I,,"actually",118.600+118.830,0.526145:I,,"wants",118.830+119.070,0.526145:S,"the","to",119.070+119.130,0.999969:S,"echelon","deal",119.130+119.320,0.540625:S,"surveillance","with",119.320+119.440,0.540625:S,"system","the",119.530+119.590,0.540625
</PATH>
<PATH id="(TBVSTT-012)" word_cnt="10" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="42" R_T1="119.949" R_T2="122.594" word_aux="h_t1+t2,h_conf">
C,"and","and",120.080+120.260,1.000000:C,"(a-)","",,:C,"(%hesitation)","",,:S,"(%hesitation)","that",120.260+120.410,0.954889:C,"another","another",121.290+121.530,0.995834:C,"part","part",121.530+121.850,0.996983:S,"looked","looks",121.850+122.000,0.910131:C,"like","like",122.000+122.180,1.000000:C,"they","they",122.180+122.290,1.000000:C,"were","were",122.290+122.470,1.000000
</PATH>
<PATH id="(TBVSTT-015)" word_cnt="10" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="46" R_T1="128.048" R_T2="129.843" word_aux="h_t1+t2,h_conf">
D,"oh",,,:D,"this",,,:D,"is",,,:D,"a",,,:D,"useful",,,:D,"thing",,,:D,"for",,,:S,"us","others",128.060+128.350,0.874020:S,"to","of",128.350+128.420,0.874020:S,"have","these",128.420+128.520,0.874020
</PATH>
<PATH id="(TBVSTT-016)" word_cnt="9" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="47" R_T1="129.843" R_T2="131.400" word_aux="h_t1+t2,h_conf">
C,"so","so",130.220+130.360,1.000000:C,"you","you",130.360+130.500,1.000000:C,"know","know",130.500+130.580,1.000000:D,"they",,,:D,"are",,,:S,"they","that",130.580+130.760,1.000000:S,"are","that",130.760+130.910,0.803175:C,"kind","kind",130.910+131.100,1.000000:C,"of","of",131.100+131.180,1.000000
</PATH>
<PATH id="(TBVSTT-017)" word_cnt="3" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="48" R_T1="131.700" R_T2="133.120" word_aux="h_t1+t2,h_conf">
S,"going","at",131.930+132.020,0.252774:C,"across","across",132.020+132.350,0.660945:C,"purposes","purposes",132.350+132.870,1.000000
</PATH>
<PATH id="(TBVSTT-018)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="49" R_T1="133.276" R_T2="133.689" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(TBVSTT-023)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="69" R_T1="178.058" R_T2="178.446" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(TBVSTT-025)" word_cnt="15" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="88" R_T1="208.027" R_T2="210.586" word_aux="h_t1+t2,h_conf">
D,"well",,,:S,"the","was",208.130+208.230,0.270683:C,"the","the",208.230+208.490,0.412640:S,"the","that",208.490+208.610,0.531710:C,"(%hesitation)","",,:S,"the","that",208.780+208.990,1.000000:C,"(ha-)","have",208.990+209.160,0.990207:C,"the","the",209.160+209.250,0.999993:C,"flight","flight",209.250+209.570,0.999620:D,"that",,,:C,"you","you",209.570+209.720,0.999549:C,"mentioned","mentioned",209.720+210.060,1.000000:C,"seems","seems",210.060+210.260,1.000000:C,"like","like",210.260+210.440,1.000000:D,"a",,,
</PATH>
<PATH id="(TBVSTT-026)" word_cnt="10" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="89" R_T1="210.586" R_T2="212.528" word_aux="h_t1+t2,h_conf">
D,"like",,,:S,"just","it",210.720+210.800,0.810983:S,"a","is",210.800+210.920,0.811033:C,"(wo-)","",,:C,"a","a",210.920+210.970,1.000000:C,"wonderful","wonderful",210.970+211.490,1.000000:C,"example","example",211.490+212.040,1.000000:D,"of",,,:C,"of","of",212.040+212.190,1.000000:C,"of","of",212.190+212.330,0.999391
</PATH>
<PATH id="(TBVSTT-027)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="90" R_T1="212.528" R_T2="214.526" word_aux="h_t1+t2,h_conf">
C,"some","some",212.660+212.800,1.000000:C,"of","of",212.800+212.860,1.000000:C,"the","the",212.860+212.930,1.000000:C,"worst","worst",212.930+213.200,1.000000:C,"things","things",213.200+213.420,0.976467:D,"the",,,:D,"e.",,,:S,"u.","he",213.420+213.670,0.497620:C,"tries","tries",213.670+214.010,0.520530:C,"to","to",214.050+214.110,1.000000:C,"do","do",214.110+214.350,1.000000
</PATH>
<PATH id="(TBVSTT-028)" word_cnt="4" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="91" R_T1="214.526" R_T2="215.275" word_aux="h_t1+t2,h_conf">
S,"try","chuck",214.610+214.820,0.383187:C,"(%hesitation)","",,:C,"you","you",214.820+214.900,1.000000:C,"know","know",214.900+215.030,1.000000
</PATH>
<PATH id="(TBVSTT-029)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="92" R_T1="215.275" R_T2="217.325" word_aux="h_t1+t2,h_conf">
I,,"they",215.320+215.420,0.995183:S,"like","could",215.420+215.550,0.999998:S,"(%hesitation)","be",215.550+215.670,0.999557:C,"they","they",215.670+215.770,1.000000:C,"do","do",215.770+215.850,1.000000:C,"not","not",215.850+215.930,1.000000:C,"want","want",215.930+216.100,1.000000:C,"to","to",216.100+216.210,0.988521:I,,"do",216.210+216.290,0.988520:S,"offend","anything",216.400+216.980,1.000000:S,"anybody","but",216.980+217.170,1.000000
</PATH>
<PATH id="(TBVSTT-033)" word_cnt="12" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="98" R_T1="223.507" R_T2="225.525" word_aux="h_t1+t2,h_conf">
S,"there","this",223.570+223.730,1.000000:C,"is","is",223.730+223.810,0.999981:D,"just",,,:D,"a",,,:S,"some","this",223.810+223.960,0.842583:S,"point","is",223.960+224.050,0.844666:S,"at","simply",224.050+224.410,0.992763:S,"which","would",224.410+224.570,0.985081:C,"you","you",224.660+224.730,0.989319:C,"have","have",224.730+224.870,1.000000:C,"to","to",224.870+224.960,1.000000:C,"decide","decide",224.960+225.330,1.000000
</PATH>
<PATH id="(TBVSTT-034)" word_cnt="7" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="99" R_T1="225.567" R_T2="227.275" word_aux="h_t1+t2,h_conf">
S,"where","weird",225.660+225.940,0.730066:C,"to","to",225.940+226.010,0.460323:D,"include",,,:D,"and",,,:S,"where","including",226.010+226.490,0.661378:S,"not","right",226.490+226.670,0.974131:S,"to","now",226.670+226.880,0.974244
</PATH>
<PATH id="(TBVSTT-048)" word_cnt="9" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="142" R_T1="289.916" R_T2="292.149" word_aux="h_t1+t2,h_conf">
D,"p.",,,:S,"k.","he",290.150+290.260,0.981501:S,"k.","came",290.260+290.560,0.981504:S,"leader","these",290.560+290.720,0.981504:S,"that","are",290.720+290.870,0.981504:C,"they","they",291.170+291.360,1.000000:D,"that",,,:C,"they","they",291.450+291.670,1.000000:S,"caught","cost",291.670+292.140,0.947814
</PATH>
<PATH id="(TBVSTT-049)" word_cnt="28" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="143" R_T1="292.163" R_T2="296.650" word_aux="h_t1+t2,h_conf">
C,"(w-)","",,:C,"(%hesitation)","",,:C,"one","one",292.870+293.060,1.000000:C,"of","of",293.060+293.170,1.000000:C,"the","the",293.170+293.380,1.000000:D,"that",,,:D,"was",,,:C,"that","that",293.430+293.550,1.000000:C,"was","was",293.550+293.670,1.000000:C,"a","a",293.760+293.880,1.000000:I,,"for",293.960+294.060,0.999629:S,"fairly","the",294.060+294.160,0.984249:S,"big","the",294.160+294.250,0.999882:C,"case","case",294.250+294.540,0.999882:S,"and","in",294.540+294.650,0.984450:C,"one","one",294.650+294.810,1.000000:C,"of","of",294.810+294.880,0.999617:C,"the","the",294.940+295.280,0.999617:C,"(%hesitation)","",,:D,"you",,,:D,"know",,,:D,"he",,,:C,"would","would",295.280+295.450,1.000000:D,"have",,,:D,"faced",,,:S,"the","be",295.450+295.600,1.000000:S,"death","that",295.690+296.000,1.000000:S,"penalty","that",296.240+296.390,1.000000
</PATH>
<PATH id="(TBVSTT-050)" word_cnt="4" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="144" R_T1="296.650" R_T2="298.183" word_aux="h_t1+t2,h_conf">
C,"they","they",296.690+297.010,1.000000:C,"they","they",297.300+297.480,0.999991:C,"abolished","abolished",297.480+297.970,0.999999:C,"it","it",297.970+298.090,0.999999
</PATH>
<PATH id="(TBVSTT-051)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="145" R_T1="298.183" R_T2="300.860" word_aux="h_t1+t2,h_conf">
C,"and","and",298.430+298.800,1.000000:C,"he","he",299.200+299.320,0.999895:D,"is",,,:C,"(go-)","got",299.590+299.770,0.999933:D,"he",,,:D,"is",,,:D,"sentenced",,,:D,"to",,,:S,"life","the",299.770+299.830,0.938313:S,"in","desolate",299.830+300.280,0.488522:S,"prison","presents",300.360+300.800,0.537111
</PATH>
<PATH id="(TBVSTT-052)" word_cnt="6" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="146" R_T1="300.860" R_T2="302.875" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"that","that",301.420+301.630,1.000000:C,"was","was",301.630+301.790,1.000000:C,"pretty","pretty",302.050+302.240,1.000000:C,"much","much",302.240+302.480,1.000000:S,"a","it",302.480+302.540,0.736113
</PATH>
<PATH id="(TBVSTT-055)" word_cnt="28" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="154" R_T1="315.203" R_T2="320.350" word_aux="h_t1+t2,h_conf">
D,"they",,,:D,"they",,,:D,"they",,,:D,"passed",,,:D,"one",,,:D,"law",,,:D,"i",,,:S,"do","it",315.210+315.380,0.996818:S,"not","it",315.380+315.510,0.995273:S,"know","it",315.510+315.690,0.998453:S,"if","phonological",315.780+316.520,1.000000:C,"it","it",316.710+316.800,0.837778:C,"was","was",316.800+317.000,1.000000:C,"(w-)","",,:C,"(w-)","",,:C,"(w-)","",,:D,"if",,,:D,"it",,,:C,"was","was",317.820+317.960,1.000000:C,"repealed","repealed",317.960+318.350,0.969104:S,"or","are",318.350+318.450,0.990862:C,"(ju-)","just",318.450+318.620,1.000000:C,"or","or",318.620+318.700,0.899320:D,"not",,,:D,"being",,,:S,"enforced","nothing",318.700+318.990,1.000000:S,"that","important",318.990+319.450,1.000000:C,"required","required",319.450+319.910,1.000000
</PATH>
<PATH id="(TBVSTT-056)" word_cnt="7" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="155" R_T1="320.439" R_T2="322.520" word_aux="h_t1+t2,h_conf">
C,"anybody","anybody",320.510+320.950,1.000000:I,,"pretty",320.950+321.150,1.000000:S,"producing","much",321.290+321.570,1.000000:S,"web","that",321.570+321.800,1.000000:S,"sites","day",321.850+321.970,1.000000:S,"there","or",321.970+322.070,1.000000:S,"to","two",322.070+322.250,1.000000
</PATH>
<PATH id="(TBVSTT-057)" word_cnt="5" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="156" R_T1="322.520" R_T2="325.128" word_aux="h_t1+t2,h_conf">
I,,"that",322.600+322.780,1.000000:S,"submit","makes",322.780+323.070,1.000000:C,"two","two",323.070+323.160,0.999897:S,"written","reaching",323.840+324.150,0.766264:S,"copies","coffee",324.150+324.570,0.636617
</PATH>
<PATH id="(TBVSTT-068)" word_cnt="25" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="188" R_T1="370.570" R_T2="375.598" word_aux="h_t1+t2,h_conf">
C,"it","it",370.640+370.810,0.977341:C,"was","was",370.810+370.940,0.999843:C,"too","too",370.940+371.070,1.000000:C,"difficult","difficult",371.070+371.440,1.000000:D,"for",,,:D,"the",,,:D,"police",,,:C,"to","to",371.440+371.540,1.000000:S,"try","see",371.540+371.740,0.997591:S,"to","fried",371.740+372.250,0.980658:C,"determine","determine",372.470+372.840,1.000000:C,"whether","whether",372.840+373.140,1.000000:D,"it",,,:D,"was",,,:S,"a","you",373.600+373.820,1.000000:C,"(was)","",,:C,"(it)","",,:S,"a","have",373.820+373.950,1.000000:S,"gambling","an",373.950+374.050,1.000000:C,"operation","operation",374.050+374.570,1.000000:D,"or",,,:C,"whether","whether",374.730+375.090,0.521095:D,"it",,,:C,"was","was",375.090+375.290,1.000000:C,"just","just",375.290+375.490,1.000000
</PATH>
<PATH id="(TBVSTT-074)" word_cnt="7" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="200" R_T1="392.630" R_T2="394.851" word_aux="h_t1+t2,h_conf">
S,"(s-)","the",392.940+393.040,0.999995:S,"(s-)","problem",393.040+393.350,0.976603:S,"(surpri-)","or",393.350+393.440,0.907248:C,"(wor-)","work",393.440+393.650,0.545491:D,"worked",,,:C,"reasonably","reasonably",393.960+394.490,1.000000:C,"well","well",394.490+394.830,1.000000
</PATH>
<PATH id="(TBVSTT-075)" word_cnt="14" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="201" R_T1="394.851" R_T2="397.361" word_aux="h_t1+t2,h_conf">
S,"then","thank",394.920+395.100,0.473275:C,"(agai-)","",,:C,"(well)","",,:C,"you","you",395.100+395.160,0.446043:I,,"i",395.160+395.280,0.836337:I,,"guess",395.280+395.430,0.835168:C,"you","you",395.430+395.530,0.593111:D,"would",,,:C,"you","you",395.530+395.660,1.000000:S,"increase","would",395.660+395.800,1.000000:S,"the","uniquely",395.970+396.390,0.820329:S,"penalties","handle",396.460+396.660,0.380287:S,"enough","there's",396.660+396.800,0.920385:S,"and","nothing",396.800+397.280,1.000000
</PATH>
<PATH id="(TBVSTT-076)" word_cnt="9" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="202" R_T1="397.402" R_T2="399.177" word_aux="h_t1+t2,h_conf">
C,"you","you",397.580+397.690,1.000000:C,"can","can",397.690+397.830,1.000000:C,"do","do",397.830+397.890,1.000000:D,"a",,,:C,"pretty","pretty",398.030+398.260,1.000000:C,"good","good",398.260+398.420,1.000000:C,"job","job",398.420+398.630,1.000000:D,"of",,,:D,"banning",,,
</PATH>
<PATH id="(TBVSTT-079)" word_cnt="15" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="208" R_T1="403.738" R_T2="408.618" word_aux="h_t1+t2,h_conf">
C,"(d-)","",,:C,"(%hesitation)","",,:D,"death",,,:D,"penalty",,,:D,"%hesitation",,,:D,"%hesitation",,,:C,"(be-)","",,:D,"public",,,:S,"beheading","oh",403.830+404.080,0.308273:S,"by","probably",405.890+406.120,0.320585:S,"sword","getting",406.120+406.430,0.999909:S,"for","back",406.430+406.610,0.708539:S,"drug","over",406.720+406.960,0.294398:S,"smuggling","from",407.430+407.620,0.826197:S,"and","one",407.710+407.830,0.281044
</PATH>
<PATH id="(TBVSTT-080)" word_cnt="3" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="209" R_T1="408.770" R_T2="409.782" word_aux="h_t1+t2,h_conf">
I,,"and",408.870+409.020,0.545532:C,"they","they",409.270+409.440,0.429755:S,"still","will",409.440+409.610,0.429755
</PATH>
<PATH id="(TBVSTT-081)" word_cnt="9" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="210" R_T1="409.949" R_T2="412.569" word_aux="h_t1+t2,h_conf">
C,"catch","catch",410.070+410.500,0.994565:C,"hundred","hundred",410.500+410.820,1.000000:C,"fifty","fifty",410.820+411.190,0.976949:D,"odd",,,:C,"a","a",411.190+411.220,0.980706:C,"year","year",411.430+411.720,0.984844:D,"for",,,:D,"that",,,:D,"so",,,
</PATH>
<PATH id="(TBVSTT-082)" word_cnt="8" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="211" R_T1="413.304" R_T2="415.827" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"obviously","obviously",413.740+414.340,1.000000:D,"it",,,:C,"does","does",414.520+414.645,0.999979:C,"not","not",414.645+414.770,0.999979:C,"always","always",414.770+415.100,1.000000:C,"work","work",415.100+415.350,1.000000:C,"but","but",415.420+415.570,0.931637
</PATH>
<PATH id="(TBVSTT-083)" word_cnt="20" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="212" R_T1="416.007" R_T2="419.348" word_aux="h_t1+t2,h_conf">
C,"(r-)","",,:C,"i","i",416.150+416.240,0.614046:C,"think","think",416.240+416.380,0.614046:D,"it",,,:S,"would","we",416.380+416.450,0.288548:C,"work","work",416.450+416.680,0.371044:C,"much","much",416.680+416.870,0.812524:C,"better","better",416.870+417.060,0.997378:C,"for","for",417.060+417.150,0.997378:D,"radios",,,:D,"because",,,:D,"it",,,:S,"is","me",417.150+417.320,0.997378:C,"(harder)","",,:S,"to","get",417.320+417.520,0.386431:S,"be","the",417.520+417.620,0.436146:S,"addicted","hard",417.980+418.230,0.926803:S,"to","speaking",418.230+418.600,0.950242:S,"the","just",418.600+418.850,0.909567:S,"radio","you",419.110+419.230,0.922981
</PATH>
<PATH id="(TBVSTT-096)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="242" R_T1="463.989" R_T2="464.377" word_aux="h_t1+t2,h_conf">
D,"yeah",,,
</PATH>
<PATH id="(TBVSTT-104)" word_cnt="15" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="261" R_T1="488.571" R_T2="491.620" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"think",,,:D,"it",,,:S,"was","the",488.630+488.760,0.834195:S,"something","same",488.870+489.030,0.834195:S,"around","route",489.030+489.260,1.000000:C,"seventy","seventy",489.260+489.550,1.000000:S,"died","side",489.590+489.870,0.432343:C,"and","and",489.870+489.960,0.462908:C,"about","about",489.960+490.190,0.996964:I,,"thoughts",490.240+490.550,0.392478:S,"five","about",490.550+490.910,0.991510:S,"survived","the",490.910+491.010,0.991510:S,"i","but",491.010+491.140,0.660715:S,"believe","we",491.140+491.440,0.660715
</PATH>
<PATH id="(TBVSTT-106)" word_cnt="25" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="264" R_T1="493.846" R_T2="499.350" word_aux="h_t1+t2,h_conf">
S,"you","he",494.080+494.350,0.665903:S,"usually","he",494.350+494.590,0.693572:C,"i","i",494.590+494.640,1.000000:C,"mean","mean",494.640+494.780,1.000000:C,"i","i",494.780+494.830,1.000000:C,"guess","guess",494.830+495.100,1.000000:C,"(mo-)","most",495.250+495.470,0.977955:C,"(mo-)","most",495.470+495.680,0.980727:C,"most","most",495.680+495.960,0.999996:D,"plane",,,:S,"crashes","like",495.960+496.110,0.979913:C,"i","i",496.110+496.200,0.996601:D,"read",,,:S,"about","said",496.200+496.370,0.996842:S,"it","reluctant",496.370+496.860,0.993334:S,"seemed","expect",496.860+497.170,0.801357:S,"like","if",497.170+497.260,0.615390:S,"either","everybody",497.260+497.600,1.000000:C,"dies","dies",497.600+497.920,1.000000:S,"or","off",497.920+498.080,0.884128:C,"almost","almost",498.080+498.330,0.977677:I,,"every",498.330+498.450,0.730558:I,,"would",498.450+498.540,0.759234:S,"everybody","not",498.540+498.630,0.759234:S,"survives","surprise",498.630+499.000,0.865932
</PATH>
<PATH id="(TBVSTT-111)" word_cnt="5" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="277" R_T1="513.856" R_T2="516.426" word_aux="h_t1+t2,h_conf">
C,"modern","modern",513.890+514.300,1.000000:S,"safety","sixteen",514.660+515.010,0.703127:C,"evacuation","evacuation",515.010+515.610,1.000000:C,"procedures","procedures",515.610+516.260,1.000000:C,"and","and",516.260+516.450,0.999931
</PATH>
<PATH id="(TBVSTT-112)" word_cnt="10" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="278" R_T1="516.426" R_T2="519.204" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"and","and",516.780+516.920,0.945092:C,"such","such",516.920+517.180,1.000000:D,"have",,,:S,"have","as",517.180+517.260,0.999979:S,"reduced","to",517.260+517.380,0.959463:S,"the","reduce",517.450+517.800,0.898404:C,"the","the",518.170+518.320,1.000000:C,"likelihood","likelihood",518.320+518.750,1.000000:C,"that","that",518.750+518.910,0.999383
</PATH>
<PATH id="(TBVSTT-113)" word_cnt="8" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="279" R_T1="519.329" R_T2="520.733" word_aux="h_t1+t2,h_conf">
C,"you","you",519.410+519.560,0.769223:C,"(m-)","might",519.560+519.710,0.769216:C,"you","you",519.710+519.800,1.000000:C,"will","will",519.800+519.890,1.000000:C,"end","end",519.890+519.990,1.000000:C,"up","up",519.990+520.070,1.000000:C,"with","with",520.070+520.170,1.000000:C,"something","something",520.170+520.490,1.000000
</PATH>
<PATH id="(TBVSTT-114)" word_cnt="2" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="280" R_T1="520.775" R_T2="522.023" word_aux="h_t1+t2,h_conf">
C,"slowly","slowly",520.930+521.430,1.000000:C,"happening","happening",521.430+521.960,1.000000
</PATH>
<PATH id="(TBVSTT-118)" word_cnt="18" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="286" R_T1="528.775" R_T2="532.700" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:S,"whereas","away",529.050+529.300,0.343190:C,"in","in",529.300+529.380,0.676028:C,"the","the",529.380+529.450,0.999929:C,"past","past",529.450+529.720,0.676028:D,"they",,,:D,"might",,,:D,"not",,,:D,"have",,,:S,"had","in",529.720+529.800,0.723860:S,"as","my",529.800+529.920,0.994403:S,"good","backpack",529.920+530.320,0.989706:S,"an","goods",530.490+530.760,0.620180:C,"evacuation","evacuation",530.760+531.470,1.000000:D,"procedure",,,:D,"so",,,:D,"people",,,:S,"would","procedures",531.530+532.080,1.000000
</PATH>
<PATH id="(TBVSTT-119)" word_cnt="16" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="287" R_T1="533.050" R_T2="535.995" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"would",,,:S,"be","even",533.270+533.420,0.869260:C,"more","more",533.420+533.580,0.877479:C,"likely","likely",533.580+533.820,0.849941:C,"to","to",533.820+533.880,0.848610:C,"have","have",533.880+534.090,0.997994:C,"some","some",534.090+534.250,1.000000:C,"people","people",534.250+534.460,1.000000:D,"dying",,,:D,"in",,,:D,"a",,,:D,"fire",,,:D,"some",,,:S,"people","find",534.460+534.700,0.795785:S,"escaping","us",534.700+534.840,0.277912
</PATH>
<PATH id="(TBVSTT-120)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="289" R_T1="537.004" R_T2="537.379" word_aux="h_t1+t2,h_conf">
C,"(and)","",,
</PATH>
<PATH id="(TBVSTT-127)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="306" R_T1="553.535" R_T2="556.323" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"was",,,:C,"looking","looking",553.880+554.160,1.000000:C,"at","at",554.160+554.260,0.999960:I,,"pretty",554.260+554.420,1.000000:S,"british","sure",554.420+554.630,1.000000:S,"airways","ways",554.630+554.870,0.991839:C,"from","from",554.980+555.170,1.000000:C,"d.","d.",555.420+555.610,1.000000:C,"c.","c.",555.670+555.860,1.000000:C,"to","to",555.860+556.260,1.000000
</PATH>
<PATH id="(TBVSTT-128)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="307" R_T1="556.323" R_T2="558.975" word_aux="h_t1+t2,h_conf">
D,"to",,,:C,"london","london",556.680+557.020,0.999972:C,"(%hesitation)","",,:D,"they",,,:D,"have",,,:S,"got","that",557.620+557.750,0.897069:S,"about","does",557.750+557.870,0.802856:S,"four","not",557.870+558.000,0.939272:S,"flights","force",558.000+558.230,0.990495:S,"a","like",558.230+558.390,0.999896:S,"day","today",558.390+558.790,0.993458
</PATH>
<PATH id="(TBVSTT-129)" word_cnt="9" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="308" R_T1="559.143" R_T2="562.430" word_aux="h_t1+t2,h_conf">
C,"and","and",559.300+559.670,1.000000:C,"(%hesitation)","",,:D,"it",,,:S,"costs","cost",560.030+560.230,0.908353:C,"about","about",560.550+560.900,0.999757:C,"eleven","eleven",561.060+561.360,1.000000:C,"twelve","twelve",561.360+561.610,1.000000:C,"thousand","thousand",561.610+561.870,1.000000:C,"dollars","dollars",561.870+562.240,1.000000
</PATH>
<PATH id="(TBVSTT-143)" word_cnt="24" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="341" R_T1="601.401" R_T2="607.030" word_aux="h_t1+t2,h_conf">
C,"pretty","pretty",601.520+601.670,0.991995:C,"sure","sure",601.670+601.830,0.830217:C,"they","they",601.830+601.920,1.000000:C,"give","give",601.920+602.080,0.987290:C,"you","you",602.080+602.230,1.000000:S,"(%hesitation)","would",602.230+602.400,0.997139:C,"you","you",602.400+602.480,0.996746:C,"go","go",602.480+602.630,0.993893:I,,"to",602.630+602.700,0.997147:S,"through","a",602.700+602.730,0.612658:C,"different","different",602.730+603.100,0.997147:S,"(%hesitation)","set",603.100+603.260,0.876484:C,"(secur-)","secure",603.710+603.950,0.853656:C,"different","different",603.950+604.250,0.999864:C,"checkpoints","checkpoints",604.320+604.880,0.714230:C,"they","they",604.930+605.030,1.000000:C,"do","do",605.030+605.110,1.000000:C,"not","not",605.110+605.190,1.000000:C,"have","have",605.190+605.410,0.999851:D,"the",,,:D,"same",,,:S,"level","a",605.500+605.540,0.789520:S,"of","single",605.540+605.900,0.985996:S,"lines","line",606.180+606.650,0.998486
</PATH>
<PATH id="(TBVSTT-145)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="344" R_T1="610.744" R_T2="613.490" word_aux="h_t1+t2,h_conf">
C,"and","and",610.930+611.180,1.000000:C,"i","i",611.380+611.435,1.000000:C,"am","am",611.435+611.490,1.000000:C,"sure","sure",611.490+611.660,1.000000:C,"they","they",611.660+611.760,1.000000:C,"work","work",611.760+611.970,0.999452:C,"very","very",611.970+612.180,1.000000:C,"hard","hard",612.180+612.490,1.000000:C,"to","to",612.490+612.660,1.000000:C,"ensure","ensure",612.660+613.040,1.000000:C,"that","that",613.040+613.220,1.000000
</PATH>
<PATH id="(TBVSTT-171)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="428" R_T1="37.075" R_T2="39.500" word_aux="h_t1+t2,h_conf">
D,"there",,,:D,"is",,,:S,"there","this",37.330+37.460,1.000000:C,"is","is",37.510+37.640,1.000000:C,"very","very",37.640+37.810,1.000000:C,"little","little",37.810+38.010,1.000000:C,"you","you",38.010+38.140,1.000000:C,"can","can",38.140+38.330,1.000000:S,"you","do",38.410+38.520,1.000000:C,"you","you",38.660+38.760,1.000000:C,"can","can",38.760+38.890,1.000000:C,"do","do",38.890+39.070,1.000000:C,"about","about",39.070+39.350,1.000000
</PATH>
<PATH id="(TBVSTT-172)" word_cnt="21" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="429" R_T1="39.650" R_T2="43.650" word_aux="h_t1+t2,h_conf">
C,"about","about",39.840+40.100,1.000000:C,"that","that",40.100+40.250,1.000000:C,"directly","directly",40.250+40.730,1.000000:I,,"that",40.730+40.910,1.000000:S,"but","that",41.030+41.140,1.000000:S,"(thi-)","to",41.140+41.240,0.649019:S,"so","do",41.240+41.340,0.649019:C,"this","this",41.340+41.490,1.000000:C,"guy","guy",41.490+41.700,1.000000:D,"is",,,:C,"driving","driving",41.700+42.070,1.000000:D,"and",,,:C,"the","the",42.070+42.150,1.000000:C,"road","road",42.150+42.390,1.000000:D,"is",,,:C,"(k-)","kind",42.620+42.740,1.000000:S,"is","of",42.740+42.800,1.000000:C,"getting","getting",42.800+42.950,1.000000:C,"kind","kind",42.950+43.150,1.000000:C,"of","of",43.210+43.270,1.000000:S,"narrow","eric",43.270+43.610,1.000000
</PATH>
<PATH id="(TBVSTT-173)" word_cnt="36" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="430" R_T1="43.650" R_T2="48.525" word_aux="h_t1+t2,h_conf">
D,"and",,,:D,"as",,,:D,"i",,,:C,"and","and",43.740+43.930,1.000000:D,"as",,,:S,"we","they",43.930+44.040,0.999924:C,"are","are",44.160+44.220,0.999924:C,"getting","getting",44.220+44.430,1.000000:D,"coming",,,:D,"towards",,,:D,"this",,,:D,"bridge",,,:S,"he","from",44.520+44.670,1.000000:S,"has","frustration",44.670+45.350,1.000000:C,"got","got",45.350+45.510,1.000000:S,"his","it",45.510+45.640,1.000000:C,"left","left",45.760+45.980,0.991205:C,"turn","turn",45.980+46.220,0.991205:C,"signal","signal",46.220+46.430,0.991205:D,"on",,,:C,"and","and",46.430+46.520,0.991205:C,"he","he",46.520+46.580,0.990465:C,"is","is",46.580+46.640,0.990465:C,"in","in",46.640+46.700,0.999259:C,"the","the",46.700+46.760,1.000000:C,"right","right",46.760+46.970,1.000000:C,"lane","lane",46.970+47.200,0.999259:D,"with",,,:C,"two","two",47.280+47.400,0.999917:C,"lanes","lanes",47.400+47.710,0.999917:D,"there",,,:D,"are",,,:C,"a","a",47.710+47.760,1.000000:C,"lot","lot",47.760+47.970,1.000000:C,"of","of",47.970+48.030,1.000000:S,"cars","card",48.030+48.330,1.000000
</PATH>
<PATH id="(TBVSTT-174)" word_cnt="18" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="431" R_T1="48.525" R_T2="51.425" word_aux="h_t1+t2,h_conf">
C,"and","and",48.640+48.810,1.000000:C,"and","and",48.810+49.060,1.000000:D,"i",,,:D,"am",,,:D,"trying",,,:D,"to",,,:S,"figure","track",49.060+49.290,0.504098:S,"out","of",49.290+49.390,0.504098:C,"(wh-)","what",49.390+49.520,0.771969:D,"why",,,:D,"he",,,:S,"has","white",49.520+49.890,0.620278:C,"got","got",49.890+50.060,1.000000:D,"his",,,:S,"his","it",50.060+50.150,0.771963:C,"turn","turn",50.520+50.770,1.000000:C,"signal","signal",50.810+51.120,1.000000:D,"on",,,
</PATH>
<PATH id="(TBVSTT-175)" word_cnt="9" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="432" R_T1="51.425" R_T2="53.700" word_aux="h_t1+t2,h_conf">
C,"and","and",51.590+51.720,1.000000:D,"then",,,:S,"as","that",51.720+51.960,0.980310:C,"and","and",51.960+52.100,0.401237:D,"he",,,:C,"he","he",52.100+52.370,0.423803:C,"goes","goes",52.450+52.720,0.734432:C,"very","very",52.760+53.100,1.000000:C,"close","close",53.100+53.440,1.000000
</PATH>
<PATH id="(TBVSTT-187)" word_cnt="8" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="460" R_T1="91.425" R_T2="92.875" word_aux="h_t1+t2,h_conf">
D,"one",,,:S,"of","when",91.530+91.720,0.947176:C,"the","the",91.720+91.800,0.909556:D,"points",,,:S,"they","when",91.850+92.010,0.858079:S,"raised","there",92.060+92.390,0.959346:C,"is","is",92.440+92.580,0.959346:C,"that","that",92.630+92.790,0.999211
</PATH>
<PATH id="(TBVSTT-188)" word_cnt="11" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="461" R_T1="92.875" R_T2="95.275" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"with",,,:D,"the",,,:D,"four",,,:S,"wheel","will",93.580+93.720,0.952827:C,"drive","drive",93.850+94.140,0.998630:C,"you","you",94.140+94.250,0.702083:C,"have","have",94.250+94.410,0.543856:C,"(f-)","",,:C,"four","four",94.580+94.730,0.768694:S,"wheels","wheel",94.730+95.030,0.713715
</PATH>
<PATH id="(TBVSTT-189)" word_cnt="3" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="462" R_T1="95.275" R_T2="96.950" word_aux="h_t1+t2,h_conf">
D,"moving",,,:S,"you","be",95.520+95.830,1.000000:C,"faster","faster",95.920+96.370,0.999964
</PATH>
<PATH id="(TBVSTT-190)" word_cnt="8" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="463" R_T1="97.050" R_T2="98.925" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:D,"%hesitation",,,:C,"to","to",97.500+97.580,0.999843:C,"get","get",97.580+97.730,0.999875:C,"you","you",97.730+97.850,1.000000:C,"into","into",97.850+98.000,1.000000:C,"more","more",98.000+98.190,1.000000:C,"trouble","trouble",98.190+98.540,1.000000
</PATH>
<PATH id="(TBVSTT-192)" word_cnt="18" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="467" R_T1="101.200" R_T2="105.800" word_aux="h_t1+t2,h_conf">
C,"(y-)","",,:C,"(y-)","",,:C,"(y-)","",,:D,"you",,,:S,"know","uses",101.530+101.870,0.754501:S,"so","those",101.870+102.050,0.605124:S,"so","the",102.050+102.130,0.999460:C,"people","people",102.130+102.520,1.000000:D,"when",,,:S,"they","need",102.730+103.010,0.673447:S,"feel","you",103.230+103.360,0.741419:C,"more","more",103.360+103.540,0.999998:C,"traction","traction",103.540+104.070,0.891712:C,"from","from",104.160+104.380,1.000000:C,"from","from",104.490+104.680,1.000000:C,"going","going",104.680+104.860,0.664554:D,"from",,,:C,"accelerating","accelerating",105.010+105.680,0.915687
</PATH>
<PATH id="(TBVSTT-193)" word_cnt="11" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="468" R_T1="105.800" R_T2="108.250" word_aux="h_t1+t2,h_conf">
C,"(s-)","",,:C,"tend","tend",106.180+106.480,1.000000:C,"to","to",106.480+106.570,1.000000:C,"feel","feel",106.570+106.890,1.000000:C,"that","that",106.890+106.990,0.855123:C,"they","they",106.990+107.060,1.000000:C,"have","have",107.060+107.220,1.000000:C,"a","a",107.220+107.250,1.000000:C,"lot","lot",107.250+107.430,1.000000:C,"more","more",107.430+107.580,1.000000:C,"control","control",107.580+108.170,1.000000
</PATH>
<PATH id="(TBVSTT-194)" word_cnt="4" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="469" R_T1="108.250" R_T2="109.600" word_aux="h_t1+t2,h_conf">
S,"then","than",108.390+108.490,0.960974:S,"they","the",108.490+108.600,1.000000:S,"actually","actual",108.600+108.950,0.999138:C,"do","do",109.060+109.290,1.000000
</PATH>
<PATH id="(TBVSTT-196)" word_cnt="10" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="472" R_T1="112.975" R_T2="115.750" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:C,"better","better",113.260+113.460,0.989118:C,"four","four",113.460+113.620,1.000000:C,"wheel","wheel",113.620+113.870,1.000000:C,"drive","drive",113.870+114.220,1.000000:S,"like","it",114.470+114.590,0.671510:S,"the","was",114.590+114.690,0.659865:C,"the","the",114.690+114.820,0.991894:C,"early","early",114.820+115.080,0.992562:S,"ones","one",115.080+115.340,1.000000
</PATH>
<PATH id="(TBVSTT-197)" word_cnt="9" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="473" R_T1="115.750" R_T2="117.550" word_aux="h_t1+t2,h_conf">
D,"when",,,:D,"you",,,:D,"switched",,,:S,"them","system",116.070+116.440,0.904820:S,"into","to",116.440+116.500,0.896577:C,"four","four",116.500+116.660,1.000000:C,"wheel","wheel",116.660+116.840,1.000000:C,"drive","drive",116.840+117.130,1.000000:S,"mode","modes",117.130+117.450,0.592860
</PATH>
<PATH id="(TBVSTT-198)" word_cnt="8" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="474" R_T1="117.550" R_T2="120.425" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:S,"really","maybe",118.370+118.620,0.787290:C,"would","would",118.620+118.725,0.998457:C,"not","not",118.725+118.830,0.998457:C,"work","work",118.900+119.070,1.000000:C,"properly","properly",119.130+119.550,1.000000:C,"on","on",119.550+119.710,0.916909:S,"roads","bro",119.710+119.980,0.791711
</PATH>
<PATH id="(TBVSTT-199)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="475" R_T1="120.425" R_T2="122.614" word_aux="h_t1+t2,h_conf">
C,"because","because",120.550+120.860,1.000000:D,"the",,,:C,"the","the",120.990+121.310,0.998611:D,"way",,,:C,"the","the",121.410+121.490,1.000000:S,"differential","quintessential",121.490+122.190,1.000000:C,"worked","worked",122.190+122.550,0.971398
</PATH>
<PATH id="(TBVSTT-200)" word_cnt="11" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="476" R_T1="122.614" R_T2="124.925" word_aux="h_t1+t2,h_conf">
C,"if","if",122.750+122.840,0.999988:C,"you","you",122.840+122.960,0.972828:C,"were","were",122.960+123.080,0.972828:C,"on","on",123.080+123.200,0.999117:C,"a","a",123.200+123.270,1.000000:C,"hard","hard",123.270+123.570,1.000000:C,"surface","surface",123.570+123.970,1.000000:D,"and",,,:D,"you",,,:D,"were",,,:S,"turning","returning",124.210+124.780,0.989347
</PATH>
<PATH id="(TBVSTT-201)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="477" R_T1="124.925" R_T2="128.000" word_aux="h_t1+t2,h_conf">
D,"the",,,:D,"wheels",,,:S,"would","meals",125.161+125.491,0.631202:S,"want","and",125.491+125.581,0.689236:S,"to","once",125.581+125.881,0.642018:S,"turn","in",125.881+125.941,0.642018:S,"at","a",125.941+125.981,0.642018:C,"different","different",125.981+126.271,0.999818:S,"rates","rate",126.271+126.541,0.830955:C,"and","and",126.691+127.031,1.000000:S,"asphalt","half",127.191+127.441,0.493139:S,"does","of",127.441+127.561,0.408695:S,"not","them",127.561+127.701,0.391903
</PATH>
<PATH id="(TBVSTT-202)" word_cnt="3" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="478" R_T1="128.075" R_T2="129.200" word_aux="h_t1+t2,h_conf">
D,"deal",,,:S,"with","q",128.280+128.460,0.862163:S,"that","what",128.460+128.640,0.862656
</PATH>
<PATH id="(TBVSTT-203)" word_cnt="16" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="479" R_T1="129.200" R_T2="132.425" word_aux="h_t1+t2,h_conf">
C,"the","the",129.380+129.470,0.999774:C,"newer","newer",129.470+129.770,1.000000:C,"ones","ones",129.770+130.020,1.000000:S,"are","i",130.020+130.150,0.999793:S,"(a-)","i",130.150+130.270,0.999793:C,"actually","actually",130.270+130.530,1.000000:C,"have","have",130.530+130.760,1.000000:D,"like",,,:C,"a","a",131.280+131.370,0.753716:I,,"whole",131.470+131.680,0.753716:C,"lot","lot",131.900+132.090,0.753626:C,"of","of",132.090+132.170,0.753626:D,"the",,,:D,"all",,,:D,"wheel",,,:D,"drive",,,
</PATH>
<PATH id="(TBVSTT-204)" word_cnt="17" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="480" R_T1="132.425" R_T2="136.575" word_aux="h_t1+t2,h_conf">
C,"stuff","stuff",132.560+132.900,1.000000:D,"where",,,:S,"they","with",132.900+133.020,0.411458:C,"actually","actually",133.020+133.390,0.995033:C,"can","can",133.390+133.530,0.998406:I,,"do",133.530+133.740,0.665865:S,"dynamically","damage",133.740+134.020,0.832254:C,"control","control",134.130+134.500,1.000000:C,"that","that",134.500+134.630,0.702799:D,"so",,,:S,"they","is",134.630+134.760,0.702799:C,"actually","actually",134.760+135.160,0.999999:C,"can","can",135.160+135.510,0.990781:D,"get",,,:C,"you","you",135.510+135.600,0.701336:I,,"can",135.600+135.720,0.992152:S,"benefits","benefit",135.720+136.100,0.999832
</PATH>
<PATH id="(TBVSTT-205)" word_cnt="1" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="481" R_T1="136.900" R_T2="137.650" word_aux="h_t1+t2,h_conf">
S,"normally","normal",137.020+137.420,0.640535
</PATH>
<PATH id="(TBVSTT-207)" word_cnt="2" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="484" R_T1="141.350" R_T2="142.125" word_aux="h_t1+t2,h_conf">
S,"they","he",141.490+141.660,0.873789:S,"exist","could",141.660+141.830,0.985066
</PATH>
<PATH id="(TBVSTT-211)" word_cnt="9" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="491" R_T1="152.550" R_T2="154.725" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"one","one",152.870+153.090,0.932199:C,"of","of",153.090+153.180,0.931665:S,"them","the",153.180+153.300,0.934781:S,"has","methods",153.300+153.530,0.920310:S,"a","used",153.530+153.740,0.920980:S,"continuously","to",153.740+153.800,0.806763:C,"variable","variable",153.800+154.090,0.814759:S,"transmissions","transition",154.090+154.580,0.567779
</PATH>
<PATH id="(TBVSTT-214)" word_cnt="1" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="497" R_T1="160.825" R_T2="161.625" word_aux="h_t1+t2,h_conf">
S,"yes","yeah",161.000+161.250,0.630560
</PATH>
<PATH id="(TBVSTT-218)" word_cnt="10" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="503" R_T1="172.625" R_T2="175.016" word_aux="h_t1+t2,h_conf">
C,"so","so",172.830+173.040,1.000000:C,"you","you",173.040+173.150,1.000000:C,"get","get",173.150+173.340,1.000000:S,"a","all",173.450+173.560,0.701359:C,"(l-)","",,:C,"you","you",173.750+173.850,0.979229:C,"get","get",173.850+174.010,1.000000:C,"better","better",174.010+174.210,0.635300:S,"fuel","you",174.270+174.370,0.487825:S,"(eff-)","look",174.370+174.510,0.482682
</PATH>
<PATH id="(TBVSTT-219)" word_cnt="20" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="504" R_T1="175.033" R_T2="179.550" word_aux="h_t1+t2,h_conf">
S,"you","get",175.160+175.310,0.821127:C,"get","get",175.310+175.450,0.822478:I,,"rid",175.450+175.550,0.822478:I,,"of",175.550+175.620,0.822478:S,"theoretically","the",175.620+175.690,0.999998:S,"better","difficult",175.690+176.130,0.984474:S,"fuel","to",176.130+176.200,0.999722:S,"efficiency","see",176.200+176.490,1.000000:C,"the","the",176.490+176.580,0.999892:C,"problem","problem",176.580+176.850,1.000000:C,"is","is",176.850+177.000,1.000000:D,"that",,,:C,"that","that",177.210+177.350,1.000000:C,"the","the",177.470+177.540,0.954405:C,"transmission","transmission",177.540+178.270,0.903649:D,"is",,,:D,"not",,,:C,"as","as",178.480+178.630,0.985940:C,"efficient","efficient",178.630+179.030,0.908377:C,"so","so",179.030+179.320,0.903086
</PATH>
<PATH id="(TBVSTT-220)" word_cnt="10" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="505" R_T1="179.550" R_T2="182.850" word_aux="h_t1+t2,h_conf">
C,"it","it",179.670+179.770,0.995121:C,"works","works",179.770+179.990,0.999393:C,"out","out",179.990+180.110,0.995649:C,"to","to",180.110+180.190,0.999881:C,"be","be",180.190+180.410,0.999908:C,"around","around",180.570+181.280,0.529672:S,"equal","people",181.580+181.830,0.999970:S,"to","just",181.830+181.980,0.611209:S,"slight","like",182.050+182.260,0.872105:C,"benefit","benefit",182.260+182.690,0.998455
</PATH>
<PATH id="(TBVSTT-227)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="521" R_T1="200.125" R_T2="204.475" word_aux="h_t1+t2,h_conf">
D,"poor",,,:S,"at","kept",200.670+200.980,0.738753:C,"working","working",200.980+201.420,0.998157:D,"at",,,:C,"(%hesitation)","",,:S,"some","that",201.500+201.700,0.648818:S,"speeds","so",201.820+202.110,0.949924:S,"i","something",202.461+202.861,0.974661:S,"mean","and",203.111+203.211,0.418596:S,"they","the",203.211+203.291,0.409260:C,"basically","basically",203.291+203.671,1.000000:S,"their","this",203.671+203.861,0.602894:S,"efficiency","is",203.861+204.081,0.602894
</PATH>
<PATH id="(TBVSTT-228)" word_cnt="10" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="522" R_T1="204.475" R_T2="207.575" word_aux="h_t1+t2,h_conf">
S,"varies","very",204.661+204.931,1.000000:S,"drastically","practical",205.131+205.631,0.707395:S,"so","for",205.891+205.991,0.485673:C,"this","this",205.991+206.391,0.392540:D,"keeps",,,:D,"it",,,:D,"running",,,:D,"at",,,:S,"optimal","morning",206.391+206.671,0.221610:S,"efficiency","is",207.131+207.301,0.474166
</PATH>
<PATH id="(TBVSTT-229)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="523" R_T1="207.900" R_T2="210.775" word_aux="h_t1+t2,h_conf">
D,"kind",,,:D,"of",,,:D,"the",,,:D,"same",,,:S,"way","something",208.021+208.351,0.995801:S,"a","weird",208.351+208.491,0.409446:C,"hybrid","hybrid",208.491+208.781,0.999864:C,"car","car",208.781+209.051,1.000000:C,"with","with",209.281+209.401,0.997103:C,"gas","gas",209.681+209.971,0.999047:C,"and","and",209.971+210.221,0.937266:C,"(y-)","",,:C,"gas","gas",210.281+210.671,0.998440
</PATH>
<PATH id="(TBVSTT-241)" word_cnt="5" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="563" R_T1="265.950" R_T2="267.483" word_aux="h_t1+t2,h_conf">
C,"are","are",266.110+266.250,0.966418:C,"consumed","consumed",266.250+266.630,0.999500:C,"by","by",266.630+266.810,0.997641:D,"eating",,,:S,"meat","me",266.970+267.140,0.695281
</PATH>
<PATH id="(TBVSTT-256)" word_cnt="18" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="625" R_T1="326.950" R_T2="330.100" word_aux="h_t1+t2,h_conf">
D,"it",,,:D,"is",,,:S,"it","you",327.060+327.350,1.000000:C,"can","can",327.350+327.490,1.000000:S,"it","you",327.490+327.600,1.000000:C,"can","can",327.600+327.730,1.000000:C,"be","be",327.730+327.880,1.000000:S,"bad","back",327.880+328.160,0.518019:C,"to","to",328.160+328.220,0.514081:I,,"how",328.220+328.410,1.000000:S,"highlight","that",328.410+328.580,1.000000:C,"one","one",328.650+328.870,1.000000:C,"particular","particular",328.870+329.210,1.000000:S,"one","when",329.210+329.390,0.953610:C,"you","you",329.390+329.470,0.999272:C,"really","really",329.470+329.630,0.985305:C,"want","want",329.630+329.830,0.894128:S,"to","him",329.830+329.970,0.862701
</PATH>
<PATH id="(TBVSTT-259)" word_cnt="6" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="630" R_T1="335.900" R_T2="337.725" word_aux="h_t1+t2,h_conf">
S,"s.","they",336.050+336.150,0.953955:S,"u.","keep",336.150+336.350,0.954653:S,"v.s","these",336.350+336.560,0.999405:C,"are","are",336.560+336.710,1.000000:C,"very","very",336.710+337.040,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(TBVSTT-271)" word_cnt="5" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="670" R_T1="385.075" R_T2="386.975" word_aux="h_t1+t2,h_conf">
C,"another","another",385.180+385.480,1.000000:C,"friend","friend",385.480+385.740,1.000000:C,"of","of",385.740+385.800,1.000000:C,"mine","mine",385.800+386.110,1.000000:S,"(%hesitation)","and",386.110+386.270,0.996978
</PATH>
<PATH id="(TBVSTT-288)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="734" R_T1="474.975" R_T2="477.350" word_aux="h_t1+t2,h_conf">
C,"so","so",475.150+475.340,1.000000:D,"near",,,:D,"one",,,:D,"of",,,:S,"my","you",475.590+475.700,1.000000:S,"friends","wonder",475.700+475.920,1.000000:S,"houses","if",475.920+475.990,1.000000:S,"in","i",475.990+476.080,1.000000:S,"the","tell",476.080+476.320,1.000000:S,"u.","you",476.560+476.650,1.000000:C,"k.","k.",476.650+476.880,0.999434:C,"they","they",476.880+476.980,1.000000:C,"have","have",476.980+477.230,1.000000
</PATH>
<PATH id="(TBVSTT-303)" word_cnt="5" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="766" R_T1="523.425" R_T2="525.300" word_aux="h_t1+t2,h_conf">
S,"alternated","alternating",523.520+524.040,0.583415:S,"who","two",524.040+524.230,0.670518:S,"had","packs",524.230+524.530,0.645388:S,"to","you",524.770+524.860,0.976338:S,"yield","know",524.860+524.930,0.558314
</PATH>
<PATH id="(TBVSTT-307)" word_cnt="8" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="774" R_T1="537.775" R_T2="539.700" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:C,"(b-)","",,:C,"coming","coming",538.100+538.400,1.000000:C,"on","on",538.400+538.610,0.992721:C,"should","should",538.610+538.800,0.685108:I,,"you",538.800+538.990,0.930802:S,"yield","will",538.990+539.120,0.930802:C,"generally","generally",539.120+539.570,1.000000
</PATH>
<PATH id="(TBVSTT-308)" word_cnt="21" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="775" R_T1="539.850" R_T2="544.975" word_aux="h_t1+t2,h_conf">
C,"i","i",539.950+540.030,0.999996:C,"think","think",540.030+540.160,0.999997:C,"people","people",540.160+540.400,1.000000:I,,"how",540.400+540.530,0.999895:S,"on","to",540.530+540.600,0.999995:S,"the","run",540.600+540.780,0.974148:S,"roundabout","about",540.780+541.010,1.000000:C,"stopping","stopping",541.010+541.390,1.000000:S,"is","it",541.390+541.480,0.992898:C,"does","does",541.810+541.935,1.000000:C,"not","not",541.935+542.060,1.000000:S,"really","actually",542.130+542.450,0.757841:C,"work","work",542.700+542.960,0.999616:C,"because","because",542.960+543.140,0.729909:C,"then","then",543.210+543.340,1.000000:C,"you","you",543.340+543.430,1.000000:C,"can","can",543.430+543.560,0.999998:C,"get","get",543.560+543.720,0.989928:C,"grid","grid",543.810+544.020,0.510700:C,"lock","lock",544.020+544.230,0.510700:C,"but","but",544.290+544.470,0.999999
</PATH>
<PATH id="(TBVSTT-312)" word_cnt="16" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="784" R_T1="557.925" R_T2="561.200" word_aux="h_t1+t2,h_conf">
D,"and",,,:C,"the","the",558.201+558.281,1.000000:D,"police",,,:C,"(wai-)","",,:C,"(wai-)","",,:C,"(wai-)","",,:D,"was",,,:S,"there","priest",558.281+558.581,1.000000:S,"was","room",558.651+559.021,0.992291:S,"a","those",559.111+559.311,0.996549:S,"pedestrian","are",559.311+559.371,0.954108:S,"cross","just",559.771+560.051,0.891029:S,"walk","you",560.051+560.201,0.356780:S,"and","crosswalk",560.201+560.721,1.000000:S,"there","i",560.721+560.761,0.559626:S,"were","mean",560.761+561.091,0.559626
</PATH>
<PATH id="(TBVSTT-327)" word_cnt="12" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="834" R_T1="627.025" R_T2="629.500" word_aux="h_t1+t2,h_conf">
S,"paying","in",627.210+627.350,0.422882:S,"attention","a",627.350+627.380,0.473591:S,"to","sense",627.380+627.580,0.688619:S,"whether","was",627.580+627.820,0.951599:S,"there","it",627.820+627.950,0.951044:S,"is","in",627.950+628.010,0.945004:S,"another","the",628.010+628.190,0.972600:C,"car","car",628.190+628.540,1.000000:D,"in",,,:S,"the","and",628.540+628.880,0.994321:S,"adjoining","so",628.880+628.990,0.548354:S,"lane","anyway",628.990+629.320,0.787971
</PATH>
<PATH id="(TBVSTT-332)" word_cnt="12" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="843" R_T1="646.350" R_T2="648.625" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"a",,,:C,"hundred","hundred",646.960+647.230,0.911582:C,"feet","feet",647.230+647.470,0.541938:D,"in",,,:D,"front",,,:D,"of",,,:D,"us",,,:S,"and","different",647.470+647.780,0.997376:S,"there","but",647.780+647.940,0.999933:S,"was","with",648.120+648.250,0.999522:S,"an","the",648.250+648.350,0.794073
</PATH>
<PATH id="(TBVSTT-333)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="844" R_T1="648.625" R_T2="651.750" word_aux="h_t1+t2,h_conf">
D,"a",,,:S,"stop","off",648.780+648.910,0.395761:S,"guy","talk",648.970+649.210,0.993513:C,"on","on",649.210+649.430,0.979108:D,"a",,,:C,"(s-)","",,:D,"had",,,:S,"a","that",649.580+649.800,0.957390:C,"stop","stop",649.800+650.050,0.383472:C,"sign","sign",650.050+650.250,0.384165:C,"coming","coming",650.250+650.580,1.000000:D,"towards",,,:S,"us","forth",650.690+651.030,0.998951
</PATH>
<PATH id="(TBVSTT-334)" word_cnt="17" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="845" R_T1="651.800" R_T2="655.375" word_aux="h_t1+t2,h_conf">
D,"on",,,:D,"an",,,:C,"(%hesitation)","",,:C,"you","you",652.410+652.510,1.000000:C,"know","know",652.510+652.570,1.000000:D,"he",,,:S,"he","you",652.870+652.930,1.000000:C,"came","came",652.930+653.310,1.000000:D,"he",,,:D,"ran",,,:D,"straight",,,:D,"through",,,:S,"the","ranchers",653.600+654.020,0.755110:C,"stop","stop",654.150+654.390,1.000000:C,"sign","sign",654.390+654.610,1.000000:S,"turned","turn",654.610+654.820,1.000000:C,"right","right",654.820+655.170,1.000000
</PATH>
<PATH id="(TBVSTT-335)" word_cnt="14" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="846" R_T1="655.475" R_T2="658.800" word_aux="h_t1+t2,h_conf">
D,"and",,,:C,"we","we",655.760+655.890,1.000000:D,"slammed",,,:S,"on","find",655.890+656.210,1.000000:C,"our","our",656.210+656.400,0.999671:I,,"break",656.400+656.680,0.964021:S,"brakes","it",656.930+657.050,0.999251:S,"skidded","it",657.050+657.260,0.999251:S,"and","will",657.380+657.530,0.999351:S,"only","not",657.530+657.680,0.999351:C,"just","just",657.680+657.980,1.000000:S,"missed","meant",657.980+658.180,1.000000:S,"hitting","c.",658.180+658.330,1.000000:S,"him","d.",658.330+658.460,1.000000
</PATH>
<PATH id="(TBVSTT-336)" word_cnt="18" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="847" R_T1="658.800" R_T2="662.500" word_aux="h_t1+t2,h_conf">
C,"and","and",658.910+659.040,1.000000:C,"then","then",659.040+659.210,1.000000:C,"there","there",659.330+659.420,1.000000:C,"was","was",659.420+659.530,1.000000:C,"of","of",659.530+659.630,1.000000:C,"course","course",659.770+659.960,1.000000:D,"obviously",,,:D,"a",,,:D,"red",,,:S,"light","up",660.070+660.210,0.617936:S,"ahead","replied",660.390+660.850,0.967554:C,"and","and",661.170+661.260,0.999758:S,"at","if",661.260+661.370,0.977893:C,"the","the",661.370+661.440,0.999999:C,"red","red",661.440+661.600,0.999999:S,"light","like",661.600+661.860,1.000000:C,"the","the",661.860+661.960,1.000000:C,"guy","guy",661.960+662.260,1.000000
</PATH>
<PATH id="(TBVSTT-337)" word_cnt="27" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="848" R_T1="662.500" R_T2="666.950" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"in",,,:D,"our",,,:D,"car",,,:C,"(a-)","and",662.680+663.000,1.000000:S,"(a-)","i",663.000+663.460,1.000000:S,"asked","i",663.460+663.710,1.000000:S,"the","i",663.710+663.860,1.000000:S,"guy","have",663.860+663.980,1.000000:S,"(b-)","to",664.100+664.170,1.000000:S,"(%hesitation)","that",664.170+664.340,1.000000:C,"you","you",664.530+664.620,1.000000:C,"know","know",664.620+664.700,1.000000:S,"in","there",664.860+665.050,0.968161:S,"arabic","but",665.050+665.140,0.968161:C,"i","i",665.140+665.190,1.000000:C,"do","do",665.190+665.265,1.000000:C,"not","not",665.265+665.340,1.000000:C,"know","know",665.590+665.650,0.997872:C,"what","what",665.650+665.880,1.000000:S,"word","what",665.880+666.120,1.000000:C,"for","for",666.120+666.360,0.984174:D,"word",,,:S,"what","but",666.360+666.470,0.984124:C,"he","he",666.470+666.530,0.984174:C,"said","said",666.530+666.770,1.000000:S,"but","that",666.770+666.870,1.000000
</PATH>
<PATH id="(TBVSTT-338)" word_cnt="22" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="849" R_T1="666.950" R_T2="670.675" word_aux="h_t1+t2,h_conf">
D,"probably",,,:S,"something","promising",667.100+667.490,1.000000:C,"like","like",667.490+667.730,1.000000:C,"you","you",667.940+668.040,0.775865:D,"know",,,:C,"like","like",668.040+668.230,1.000000:C,"you","you",668.230+668.400,1.000000:D,"idiot",,,:S,"what","get",668.400+668.580,0.803958:C,"what","what",668.580+668.690,0.532121:C,"what","what",668.690+668.920,0.999962:C,"are","are",668.920+668.950,0.728125:C,"you","you",668.950+669.060,1.000000:C,"doing","doing",669.060+669.350,1.000000:S,"and","it",669.350+669.420,1.000000:C,"and","and",669.420+669.580,0.986960:C,"and","and",669.580+669.710,0.974604:C,"the","the",669.710+669.770,1.000000:S,"guy","guys",669.770+670.020,0.798152:C,"(s-)","",,:S,"guy","that",670.210+670.410,1.000000:S,"said","that",670.410+670.550,1.000000
</PATH>
</SPEAKER>
<SPEAKER id="YWTKTM">
<PATH id="(YWTKTM-015)" word_cnt="16" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="61" R_T1="154.275" R_T2="157.925" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"know",,,:S,"we","yeah",154.530+154.660,0.380448:C,"we","we",154.660+154.800,0.848500:S,"had","could",154.800+154.970,0.848353:S,"spent","spend",154.970+155.200,0.786826:C,"like","like",155.200+155.390,0.986769:S,"days","eight",155.680+155.950,0.992984:C,"talking","talking",155.950+156.380,0.998702:D,"in",,,:C,"class","class",156.380+156.720,1.000000:C,"about","about",156.720+156.890,1.000000:C,"how","how",156.890+157.110,0.999999:C,"it","it",157.110+157.240,1.000000:D,"was",,,:C,"(%hesitation)","",,
</PATH>
<PATH id="(YWTKTM-016)" word_cnt="9" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="62" R_T1="157.925" R_T2="160.925" word_aux="h_t1+t2,h_conf">
C,"virtually","virtually",157.980+158.420,1.000000:C,"impossible","impossible",158.420+158.860,0.999561:D,"for",,,:D,"them",,,:S,"to","been",158.860+159.070,0.694672:S,"incorporate","incorporated",159.070+159.740,0.699258:S,"any","mean",159.740+159.890,0.699258:S,"new","you",159.890+160.030,0.699258:C,"languages","languages",160.030+160.630,1.000000
</PATH>
<PATH id="(YWTKTM-017)" word_cnt="14" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="63" R_T1="160.925" R_T2="164.550" word_aux="h_t1+t2,h_conf">
D,"into",,,:C,"(%hesitation)","",,:D,"all",,,:D,"of",,,:S,"the","if",161.070+161.280,1.000000:S,"publications","you",161.280+161.530,1.000000:S,"and","multiplication",161.830+162.770,1.000000:C,"translations","translations",162.840+163.350,0.962946:C,"that","that",163.350+163.440,0.865456:C,"they","they",163.440+163.510,0.795178:C,"have","have",163.510+163.660,0.999700:C,"to","to",163.690+163.750,1.000000:C,"do","do",163.810+164.080,1.000000:C,"like","like",164.080+164.290,1.000000
</PATH>
<PATH id="(YWTKTM-018)" word_cnt="13" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="64" R_T1="164.725" R_T2="168.750" word_aux="h_t1+t2,h_conf">
D,"because",,,:S,"you","if",164.960+165.290,0.813243:S,"know","if",165.290+165.420,0.816503:C,"there","there",165.420+165.605,1.000000:C,"is","is",165.605+165.790,1.000000:I,,"the",166.060+166.300,0.651335:I,,"act",166.520+166.970,0.642748:S,"estonia","yeah",166.970+167.270,0.767777:C,"and","and",167.270+167.520,1.000000:S,"latvia","we",167.520+167.570,0.767777:S,"and","are",167.570+167.620,0.767777:S,"lithuania","doing",167.620+168.060,1.000000:S,"joined","something",168.120+168.440,0.999028
</PATH>
<PATH id="(YWTKTM-019)" word_cnt="10" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="65" R_T1="168.750" R_T2="171.075" word_aux="h_t1+t2,h_conf">
D,"there",,,:C,"is","is",168.860+169.000,0.990798:C,"a","a",169.000+169.030,0.991769:C,"million","million",169.030+169.390,0.991769:C,"speakers","speakers",169.390+169.810,0.999484:D,"of",,,:D,"each",,,:S,"language","at",169.810+169.870,0.502960:S,"which","least",169.870+170.050,0.502960:S,"is","mine",170.050+170.260,0.447636
</PATH>
<PATH id="(YWTKTM-021)" word_cnt="16" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="68" R_T1="173.850" R_T2="177.875" word_aux="h_t1+t2,h_conf">
C,"they","they",174.300+174.390,0.990975:C,"have","have",174.390+174.550,0.994915:C,"to","to",174.580+174.640,0.999655:C,"incorporate","incorporate",174.640+175.040,0.985896:C,"the","the",175.040+175.130,0.994475:C,"language","language",175.130+175.570,0.989018:D,"as",,,:C,"part","part",175.690+175.890,0.904763:D,"of",,,:D,"the",,,:D,"deal",,,:C,"of","of",175.890+175.970,0.904402:D,"joining",,,:S,"the","you",176.330+176.650,0.642639:S,"e.","doing",176.780+177.100,0.590001:S,"u.","you",177.300+177.550,0.999445
</PATH>
<PATH id="(YWTKTM-022)" word_cnt="15" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="70" R_T1="178.550" R_T2="182.025" word_aux="h_t1+t2,h_conf">
D,"but",,,:C,"at","at",178.790+178.900,0.654036:C,"the","the",178.900+178.960,0.999452:C,"same","same",178.960+179.220,0.999998:C,"time","time",179.220+179.550,0.999998:C,"like","like",179.550+179.790,0.873380:C,"they","they",180.090+180.200,0.997450:C,"do","do",180.200+180.325,1.000000:C,"not","not",180.325+180.450,1.000000:C,"have","have",180.450+180.610,1.000000:C,"the","the",180.610+180.670,0.999202:C,"resources","resources",180.670+181.140,0.947125:C,"to","to",181.140+181.240,0.999285:C,"do","do",181.290+181.490,1.000000:C,"it","it",181.490+181.630,0.997539
</PATH>
<PATH id="(YWTKTM-023)" word_cnt="6" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="71" R_T1="182.025" R_T2="183.950" word_aux="h_t1+t2,h_conf">
C,"but","but",182.270+182.390,0.950823:C,"the","the",182.390+182.470,0.976446:C,"people","people",182.470+182.830,1.000000:S,"at","of",182.830+182.890,0.559954:C,"the","the",182.890+182.950,0.549790:C,"translation","translation",182.950+183.700,0.991367
</PATH>
<PATH id="(YWTKTM-024)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="72" R_T1="184.025" R_T2="186.775" word_aux="h_t1+t2,h_conf">
I,,"service",184.290+184.620,0.605228:S,"services","this",184.620+184.950,0.341101:C,"claim","claim",184.950+185.210,0.942423:C,"that","that",185.210+185.300,0.919847:C,"they","they",185.300+185.350,0.945303:C,"are","are",185.350+185.400,0.945303:C,"going","going",185.400+185.520,0.998731:C,"to","to",185.520+185.590,0.998731:C,"do","do",185.680+185.860,0.999987:C,"it","it",185.860+185.920,0.997266:C,"anyway","anyway",185.920+186.390,0.979730
</PATH>
<PATH id="(YWTKTM-034)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="104" R_T1="234.150" R_T2="237.575" word_aux="h_t1+t2,h_conf">
S,"is","if",234.340+234.510,0.856940:S,"there","it",234.510+234.670,0.308356:C,"was","was",234.670+234.810,0.504666:D,"there",,,:D,"originally",,,:D,"a",,,:S,"significance","seriously",234.810+235.510,0.875334:S,"to","so",236.100+236.190,0.680085:S,"the","that",236.190+236.300,0.708262:C,"twelve","twelve",236.300+236.580,0.991649:S,"stars","seconds",236.580+237.040,0.975611
</PATH>
<PATH id="(YWTKTM-059)" word_cnt="7" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="243" R_T1="464.850" R_T2="466.932" word_aux="h_t1+t2,h_conf">
D,"well",,,:C,"speaking","speaking",465.220+465.550,0.975431:C,"of","of",465.550+465.630,0.976875:S,"turkey","thirteen",465.700+466.050,0.920938:C,"that","that",466.050+466.150,0.964181:C,"is","is",466.150+466.250,0.964181:S,"where","true",466.250+466.500,0.492073
</PATH>
<PATH id="(YWTKTM-063)" word_cnt="3" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="255" R_T1="478.875" R_T2="480.475" word_aux="h_t1+t2,h_conf">
D,"attributed",,,:S,"it","should",479.140+479.230,0.362049:S,"to","attribute",479.230+479.730,0.386706
</PATH>
<PATH id="(YWTKTM-066)" word_cnt="14" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="265" R_T1="499.387" R_T2="502.325" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",499.650+499.820,0.938186:D,"it",,,:D,"is",,,:C,"it","it",499.820+499.880,0.414082:C,"is","is",499.880+499.940,0.414082:D,"just",,,:D,"a",,,:D,"matter",,,:S,"of","each",499.940+500.130,0.845616:S,"whether","letter",500.170+500.410,0.813226:S,"the","what",500.410+500.610,0.999957:C,"plane","plane",500.840+501.090,0.940632:C,"explodes","explodes",501.090+501.820,0.782778:S,"or","were",501.910+502.250,0.548574
</PATH>
<PATH id="(YWTKTM-072)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="288" R_T1="536.156" R_T2="536.921" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",536.370+536.630,0.572696
</PATH>
<PATH id="(YWTKTM-112)" word_cnt="22" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="448" R_T1="73.925" R_T2="77.450" word_aux="h_t1+t2,h_conf">
C,"they","they",74.071+74.166,0.987839:C,"are","are",74.166+74.261,0.987839:C,"they","they",74.261+74.316,0.991550:C,"are","are",74.316+74.371,0.991550:C,"really","really",74.371+74.561,1.000000:C,"good","good",74.561+74.781,1.000000:C,"for","for",74.911+75.071,1.000000:C,"people","people",75.111+75.371,1.000000:S,"who","to",75.371+75.431,0.582861:C,"know","know",75.431+75.541,0.999796:C,"how","how",75.541+75.621,0.999796:C,"to","to",75.621+75.691,0.999961:C,"drive","drive",75.691+76.001,1.000000:D,"them",,,:D,"and",,,:D,"have",,,:D,"an",,,:D,"actual",,,:S,"use","the",76.001+76.141,1.000000:S,"for","next",76.391+76.651,0.998680:S,"them","peacefully",76.651+77.101,0.689828:C,"but","but",77.101+77.311,0.732948
</PATH>
<PATH id="(YWTKTM-113)" word_cnt="5" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="449" R_T1="77.600" R_T2="79.075" word_aux="h_t1+t2,h_conf">
D,"they",,,:D,"have",,,:S,"too","it's",77.751+77.961,0.489237:S,"much","which",77.961+78.161,0.923926:S,"appeal","appeals",78.161+78.621,0.923439
</PATH>
<PATH id="(YWTKTM-131)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="533" R_T1="220.225" R_T2="223.250" word_aux="h_t1+t2,h_conf">
C,"i","i",220.370+220.460,0.677893:C,"do","do",220.460+220.520,0.271744:C,"not","not",220.520+220.580,0.271744:C,"like","like",220.580+220.750,0.889887:D,"them",,,:D,"because",,,:C,"the","the",220.750+220.860,0.699684:C,"(%hesitation)","",,:S,"i","it",221.620+221.800,0.278769:S,"associate","ate",221.860+222.090,0.275828:C,"them","them",222.090+222.380,0.701984:D,"with",,,:C,"(%hesitation)","",,
</PATH>
<PATH id="(YWTKTM-132)" word_cnt="3" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="534" R_T1="223.425" R_T2="224.200" word_aux="h_t1+t2,h_conf">
S,"kind","and",223.660+223.760,0.574623:S,"of","the",223.760+223.820,0.452319:S,"like","way",223.820+224.000,0.437030
</PATH>
<PATH id="(YWTKTM-133)" word_cnt="10" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="535" R_T1="224.500" R_T2="227.600" word_aux="h_t1+t2,h_conf">
I,,"you",224.630+224.800,0.534867:I,,"may",224.800+225.120,0.999972:I,,"you",225.160+225.250,0.835235:I,,"need",225.250+225.430,0.999987:S,"the","to",225.430+225.490,0.987862:S,"american","be",225.550+225.690,0.917731:S,"individual","to",225.690+226.020,0.757823:C,"crush","crush",226.060+226.410,0.987517:C,"everybody","everybody",226.410+226.970,0.997388:C,"ideal","ideal",226.970+227.450,0.951134
</PATH>
<PATH id="(YWTKTM-134)" word_cnt="2" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="536" R_T1="228.175" R_T2="229.575" word_aux="h_t1+t2,h_conf">
C,"like","like",228.740+229.020,0.308818:D,"i",,,
</PATH>
<PATH id="(YWTKTM-135)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="537" R_T1="229.725" R_T2="232.700" word_aux="h_t1+t2,h_conf">
C,"where","where",229.940+230.120,0.996085:C,"you","you",230.120+230.260,0.999952:C,"need","need",230.260+230.440,0.999999:C,"to","to",230.440+230.500,1.000000:C,"have","have",230.500+230.670,1.000000:D,"the",,,:D,"biggest",,,:D,"car",,,:S,"on","babies",230.820+231.100,0.975346:S,"the","caron",231.100+231.520,0.557992:S,"road","right",231.640+231.980,0.965047:S,"so","that",232.070+232.240,0.854112:C,"that","that",232.240+232.420,0.496943
</PATH>
<PATH id="(YWTKTM-136)" word_cnt="9" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="538" R_T1="233.300" R_T2="235.425" word_aux="h_t1+t2,h_conf">
C,"you","you",233.490+233.550,0.944855:C,"do","do",233.550+233.655,1.000000:C,"not","not",233.655+233.760,1.000000:C,"have","have",233.760+233.910,1.000000:S,"to","feeling",233.910+234.340,0.533007:S,"feel","you",234.520+234.640,0.582452:S,"insecure","were",234.640+234.830,0.419718:S,"about","on",234.830+234.970,0.544447:C,"it","it",234.970+235.050,0.463198
</PATH>
<PATH id="(YWTKTM-138)" word_cnt="10" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="541" R_T1="239.125" R_T2="241.075" word_aux="h_t1+t2,h_conf">
C,"i","i",239.430+239.460,0.974012:C,"am","am",239.460+239.490,0.974012:C,"not","not",239.490+239.600,0.999732:C,"sure","sure",239.600+239.800,0.999988:S,"i","if",239.800+239.870,0.850269:S,"can","it",239.870+240.000,0.783436:S,"really","was",240.000+240.130,0.828699:C,"back","back",240.130+240.400,0.925913:D,"that",,,:S,"up","to",240.400+240.460,0.632899
</PATH>
<PATH id="(YWTKTM-223)" word_cnt="1" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="783" R_T1="556.675" R_T2="557.350" word_aux="h_t1+t2,h_conf">
D,"yeah",,,
</PATH>
<PATH id="(YWTKTM-236)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="825" R_T1="610.725" R_T2="612.450" word_aux="h_t1+t2,h_conf">
C,"there","there",610.870+610.980,1.000000:C,"is","is",610.980+611.090,1.000000:S,"horn","no",611.090+611.290,0.997531:S,"honking","will",611.350+611.440,0.951137:S,"to","not",611.440+611.530,0.951137:C,"be","be",611.530+611.650,0.949501:S,"heard","here",611.910+612.210,0.995516
</PATH>
<PATH id="(YWTKTM-241)" word_cnt="12" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="837" R_T1="632.950" R_T2="636.450" word_aux="h_t1+t2,h_conf">
I,,"the",633.120+633.310,0.999969:S,"acquire","wires",633.390+633.820,0.501494:C,"that","that",633.820+634.130,1.000000:S,"sense","it",634.320+634.460,0.595627:S,"though","it's",634.630+634.940,0.628604:S,"to","a",634.940+635.000,0.645721:S,"like","big",635.000+635.140,0.632242:C,"look","look",635.330+635.620,1.000000:S,"in","at",635.620+635.680,1.000000:S,"the","it",635.820+635.950,1.000000:S,"other","that",635.950+636.060,0.973442:S,"lane","way",636.060+636.270,1.000000
</PATH>
</SPEAKER>
<SPEAKER id="NWXRPL">
<PATH id="(NWXRPL-084)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="817" R_T1="601.400" R_T2="602.600" word_aux="h_t1+t2,h_conf">
D,"it",,,:S,"is","so",601.510+601.620,0.878694:S,"illegal","they",601.620+601.740,0.901334:S,"if","will",601.740+601.880,0.407679:S,"you","be",601.880+601.990,0.636297:C,"get","get",601.990+602.130,0.563747:C,"caught","caught",602.130+602.340,0.603098
</PATH>
</SPEAKER>
<SPEAKER id="FE041">
<PATH id="(FE041-001)" word_cnt="1" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="868" R_T1="1151.950" R_T2="1153.075" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(FE041-002)" word_cnt="14" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="869" R_T1="1153.100" R_T2="1157.058" word_aux="h_t1+t2,h_conf">
C,"and","and",1153.140+1154.020,1.000000:C,"you","you",1154.020+1154.150,1.000000:C,"know","know",1154.150+1154.220,1.000000:I,,"and",1154.220+1154.310,0.976070:C,"then","then",1154.310+1154.430,0.976070:C,"our","our",1154.430+1154.540,1.000000:C,"group","group",1154.540+1154.740,1.000000:C,"meetings","meetings",1154.740+1155.220,0.996551:C,"and","and",1155.600+1155.910,1.000000:C,"maybe","maybe",1155.910+1156.140,0.990628:C,"some","some",1156.140+1156.390,0.997982:C,"c.","c.",1156.390+1156.560,0.710356:C,"s.","s.",1156.560+1156.660,0.672605:S,"e.","c.",1156.660+1156.900,0.613104
</PATH>
<PATH id="(FE041-003)" word_cnt="13" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="870" R_T1="1157.493" R_T2="1160.438" word_aux="h_t1+t2,h_conf">
S,"(meeti-)","me",1157.560+1157.810,0.320565:C,"so","so",1157.810+1157.960,1.000000:C,"i","i",1157.960+1158.050,1.000000:C,"think","think",1158.050+1158.250,1.000000:C,"i","i",1158.250+1158.320,1.000000:C,"can","can",1158.320+1158.490,0.996441:C,"tie","tie",1158.490+1158.840,0.998680:C,"in","in",1158.840+1158.970,0.999070:C,"with","with",1158.970+1159.190,1.000000:C,"a","a",1159.190+1159.230,0.995479:C,"few","few",1159.230+1159.490,0.999598:C,"other","other",1159.490+1159.670,0.999901:C,"groups","groups",1159.670+1160.240,0.596580
</PATH>
<PATH id="(FE041-006)" word_cnt="19" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="875" R_T1="1168.263" R_T2="1172.797" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"it","it",1168.530+1168.610,0.997830:C,"is","is",1168.610+1168.690,0.997830:C,"going","going",1168.690+1168.820,1.000000:C,"to","to",1168.820+1168.880,1.000000:C,"have","have",1168.880+1169.000,1.000000:C,"to","to",1169.000+1169.090,1.000000:C,"be","be",1169.090+1169.220,1.000000:C,"one","one",1169.220+1169.460,0.999799:C,"room","room",1169.460+1170.070,0.999957:C,"in","in",1170.410+1170.720,0.991272:D,"double",,,:S,"e.","w",1170.720+1171.280,0.737875:C,"which","which",1171.280+1171.460,1.000000:C,"will","will",1171.460+1171.560,0.999999:C,"be","be",1171.560+1171.660,0.999996:D,"double",,,:S,"e.","doubly",1171.660+1172.060,0.730503:S,"meetings","needing",1172.060+1172.480,0.705185
</PATH>
<PATH id="(FE041-008)" word_cnt="2" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="879" R_T1="1175.263" R_T2="1176.911" word_aux="h_t1+t2,h_conf">
C,"research","research",1175.380+1175.800,1.000000:C,"groups","groups",1175.800+1176.140,0.742816
</PATH>
<PATH id="(FE041-009)" word_cnt="7" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="880" R_T1="1177.419" R_T2="1179.373" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"and","and",1177.780+1178.030,0.999896:C,"so","so",1178.030+1178.190,0.991974:C,"maybe","maybe",1178.190+1178.430,1.000000:C,"that","that",1178.430+1178.565,0.985055:C,"is","is",1178.565+1178.700,0.985055:C,"fine","fine",1178.700+1179.050,0.991797
</PATH>
<PATH id="(FE041-010)" word_cnt="10" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="881" R_T1="1179.955" R_T2="1182.077" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"but","but",1180.170+1180.320,0.999508:C,"that","that",1180.320+1180.425,0.952077:C,"is","is",1180.425+1180.530,0.952077:C,"sort","sort",1180.530+1180.740,0.999839:C,"of","of",1180.740+1180.820,1.000000:C,"the","the",1180.820+1180.940,0.980883:C,"trade","trade",1180.940+1181.250,0.724596:C,"off","off",1181.250+1181.430,0.697814:C,"that","that",1181.660+1181.890,0.347446
</PATH>
<PATH id="(FE041-021)" word_cnt="4" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="917" R_T1="1241.298" R_T2="1242.955" word_aux="h_t1+t2,h_conf">
C,"to","to",1241.270+1241.430,0.964364:I,,"and",1241.430+1241.650,0.918377:C,"maintain","maintain",1241.650+1242.050,0.999851:C,"compatibility","compatibility",1242.050+1242.840,1.000000
</PATH>
<PATH id="(FE041-022)" word_cnt="13" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="918" R_T1="1243.188" R_T2="1247.238" word_aux="h_t1+t2,h_conf">
C,"and","and",1243.190+1243.330,1.000000:C,"the","the",1243.330+1243.410,0.533714:C,"other","other",1243.410+1243.600,0.533714:C,"is","is",1243.600+1243.700,0.963215:C,"just","just",1243.700+1243.930,1.000000:C,"taking","taking",1243.930+1244.300,1.000000:C,"the","the",1244.300+1244.400,0.938850:C,"completely","completely",1244.400+1244.880,1.000000:S,"(d-)","the",1244.880+1244.980,0.966204:C,"opposite","opposite",1245.020+1245.510,1.000000:C,"philosophy","philosophy",1245.510+1246.210,1.000000:C,"to","to",1246.510+1246.630,0.999216:C,"say","say",1246.630+1247.150,1.000000
</PATH>
<PATH id="(FE041-023)" word_cnt="27" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="919" R_T1="1247.850" R_T2="1256.132" word_aux="h_t1+t2,h_conf">
C,"we","we",1247.940+1248.100,0.999997:C,"(w-)","",,:C,"we","we",1248.100+1248.250,0.967659:S,"are","were",1248.250+1248.400,0.572124:C,"not","not",1248.400+1248.650,1.000000:C,"going","going",1248.650+1248.810,1.000000:C,"to","to",1248.810+1249.000,1.000000:C,"worry","worry",1249.530+1249.770,1.000000:C,"about","about",1249.770+1250.190,1.000000:C,"compatibility","compatibility",1250.190+1251.080,1.000000:C,"so","so",1251.080+1251.240,0.985270:C,"much","much",1251.240+1251.540,1.000000:C,"in","in",1251.540+1251.640,1.000000:C,"terms","terms",1251.640+1251.960,1.000000:C,"of","of",1251.960+1252.050,1.000000:C,"the","the",1252.050+1252.130,0.999654:C,"hardware","hardware",1252.130+1252.800,1.000000:C,"that","that",1253.070+1253.190,0.838340:C,"what","what",1253.190+1253.330,0.997383:C,"we","we",1253.330+1253.380,0.999996:C,"are","are",1253.380+1253.430,0.999996:C,"going","going",1253.430+1253.550,1.000000:C,"to","to",1253.550+1253.610,1.000000:C,"worry","worry",1253.610+1253.900,1.000000:C,"about","about",1253.900+1254.280,1.000000:C,"is","is",1254.280+1254.720,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(FE041-024)" word_cnt="6" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="920" R_T1="1256.958" R_T2="1260.280" word_aux="h_t1+t2,h_conf">
C,"getting","getting",1256.930+1257.610,1.000000:C,"a","a",1257.640+1257.720,0.563179:C,"wider","wider",1257.720+1258.040,1.000000:C,"range","range",1258.040+1258.670,1.000000:C,"of","of",1258.850+1259.200,1.000000:C,"people","people",1259.370+1259.710,1.000000
</PATH>
<PATH id="(FE041-025)" word_cnt="5" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="921" R_T1="1260.822" R_T2="1262.487" word_aux="h_t1+t2,h_conf">
C,"people","people",1260.780+1261.150,0.989683:C,"slash","slash",1261.150+1261.470,0.942381:C,"topics","topics",1261.470+1261.900,0.994311:C,"what","what",1261.900+1262.100,1.000000:C,"ever","ever",1262.100+1262.300,1.000000
</PATH>
<PATH id="(FE041-031)" word_cnt="21" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="931" R_T1="1282.668" R_T2="1286.927" word_aux="h_t1+t2,h_conf">
C,"i","i",1282.740+1282.865,1.000000:C,"am","am",1282.865+1282.990,1.000000:C,"sort","sort",1282.990+1283.200,1.000000:C,"of","of",1283.200+1283.280,1.000000:C,"pushing","pushing",1283.280+1283.710,1.000000:C,"that","that",1283.710+1283.870,0.999963:C,"but","but",1283.870+1283.970,0.999487:C,"i","i",1283.970+1284.035,0.994555:C,"am","am",1284.035+1284.100,0.994555:C,"willing","willing",1284.100+1284.450,1.000000:C,"to","to",1284.450+1284.580,1.000000:C,"go","go",1284.580+1284.810,1.000000:C,"with","with",1284.810+1284.990,1.000000:C,"what","what",1284.990+1285.340,0.999967:C,"you","you",1285.380+1285.510,1.000000:C,"know","know",1285.510+1285.600,1.000000:C,"if","if",1285.600+1285.740,0.999924:C,"(w-)","we",1285.740+1285.830,0.999879:C,"if","if",1285.830+1285.950,1.000000:C,"we","we",1285.950+1286.080,1.000000:C,"decide","decide",1286.080+1286.880,1.000000
</PATH>
<PATH id="(FE041-032)" word_cnt="14" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="932" R_T1="1287.191" R_T2="1290.372" word_aux="h_t1+t2,h_conf">
C,"that","that",1287.180+1287.300,1.000000:C,"we","we",1287.300+1287.410,1.000000:C,"want","want",1287.410+1287.610,1.000000:C,"to","to",1287.610+1287.670,1.000000:C,"have","have",1287.670+1287.910,1.000000:C,"just","just",1287.910+1288.130,1.000000:S,"two","to",1288.130+1288.300,0.563412:C,"stationary","stationary",1288.300+1288.840,0.967820:C,"things","things",1288.840+1289.090,0.992231:C,"that","that",1289.090+1289.220,0.973965:C,"is","is",1289.220+1289.350,0.973965:C,"that","that",1289.490+1289.630,0.999996:C,"is","is",1289.630+1289.770,0.999996:C,"fine","fine",1289.770+1290.200,0.999999
</PATH>
<PATH id="(FE041-033)" word_cnt="22" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="933" R_T1="1290.829" R_T2="1296.163" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"and","and",1291.390+1291.550,0.996944:C,"i","i",1291.550+1291.645,0.995552:C,"am","am",1291.645+1291.740,0.995552:C,"and","and",1291.820+1292.010,0.983389:C,"i","i",1292.010+1292.060,1.000000:C,"am","am",1292.060+1292.110,1.000000:C,"willing","willing",1292.110+1292.340,1.000000:C,"to","to",1292.340+1292.500,1.000000:C,"do","do",1292.500+1292.670,1.000000:C,"that","that",1292.670+1292.860,1.000000:C,"because","because",1292.860+1293.030,1.000000:C,"i","i",1293.030+1293.080,0.999728:C,"think","think",1293.080+1293.290,1.000000:C,"i","i",1293.290+1293.360,0.999046:C,"could","could",1293.360+1293.500,0.920731:C,"get","get",1293.500+1293.720,1.000000:C,"a","a",1293.810+1293.930,0.999999:C,"reasonable","reasonable",1293.930+1294.780,1.000000:C,"amount","amount",1294.780+1295.170,1.000000:C,"of","of",1295.170+1295.420,1.000000:C,"variety","variety",1295.420+1296.030,1.000000
</PATH>
<PATH id="(FE041-035)" word_cnt="4" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="937" R_T1="1299.821" R_T2="1300.774" word_aux="h_t1+t2,h_conf">
C,"to","to",1299.850+1299.990,1.000000:C,"make","make",1299.990+1300.200,1.000000:S,"it","a",1300.200+1300.250,0.690661:C,"portable","portable",1300.250+1300.700,0.996602
</PATH>
<PATH id="(FE041-036)" word_cnt="1" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="938" R_T1="1300.774" R_T2="1302.286" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(FE041-037)" word_cnt="14" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="939" R_T1="1302.949" R_T2="1306.371" word_aux="h_t1+t2,h_conf">
C,"it","it",1303.210+1303.355,0.999969:C,"is","is",1303.355+1303.500,0.999969:C,"well","well",1303.760+1303.990,1.000000:C,"the","the",1303.990+1304.070,0.999914:C,"issue","issue",1304.070+1304.480,1.000000:C,"is","is",1304.480+1304.660,1.000000:C,"that","that",1304.660+1304.810,1.000000:C,"it","it",1304.810+1304.980,1.000000:C,"would","would",1304.980+1305.170,1.000000:C,"be","be",1305.170+1305.420,1.000000:C,"not","not",1305.420+1305.630,1.000000:C,"exactly","exactly",1305.630+1306.050,1.000000:S,"the","this",1306.050+1306.300,1.000000:C,"(s-)","",,
</PATH>
<PATH id="(FE041-038)" word_cnt="12" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="940" R_T1="1306.371" R_T2="1308.750" word_aux="h_t1+t2,h_conf">
S,"it","there",1306.460+1306.550,0.521822:C,"would","would",1306.550+1306.640,0.521822:C,"be","be",1306.640+1306.870,1.000000:C,"a","a",1306.870+1306.910,1.000000:C,"little","little",1306.910+1307.190,1.000000:S,"(di-)","to",1307.240+1307.410,1.000000:C,"departing","departing",1307.470+1307.870,1.000000:D,"a",,,:C,"little","little",1307.950+1308.120,0.950277:C,"more","more",1308.120+1308.340,1.000000:C,"from","from",1308.340+1308.500,1.000000:C,"what","what",1308.500+1308.670,1.000000
</PATH>
<PATH id="(FE041-039)" word_cnt="14" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="941" R_T1="1309.101" R_T2="1311.951" word_aux="h_t1+t2,h_conf">
C,"you","you",1309.140+1309.225,0.861772:C,"are","are",1309.225+1309.310,0.861772:C,"doing","doing",1309.310+1309.600,1.000000:D,"i",,,:S,"would","it",1309.600+1309.680,0.997821:C,"have","have",1309.680+1309.840,0.999999:C,"to","to",1309.840+1309.940,1.000000:C,"try","try",1309.940+1310.110,1.000000:C,"to","to",1310.110+1310.180,1.000000:C,"get","get",1310.180+1310.470,1.000000:C,"stuff","stuff",1310.470+1310.780,1.000000:C,"on","on",1310.780+1310.880,1.000000:C,"a","a",1310.880+1310.930,0.996491:C,"laptop","laptop",1310.930+1311.450,1.000000
</PATH>
<PATH id="(FE041-056)" word_cnt="1" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="992" R_T1="1393.880" R_T2="1395.807" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(FE041-058)" word_cnt="1" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="995" R_T1="1400.490" R_T2="1400.913" word_aux="h_t1+t2,h_conf">
C,"right","right",1400.460+1400.930,0.999961
</PATH>
<PATH id="(FE041-068)" word_cnt="3" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1033" R_T1="1461.710" R_T2="1463.996" word_aux="h_t1+t2,h_conf">
C,"there","there",1461.730+1462.230,0.731345:C,"is","is",1462.230+1462.520,0.731345:C,"like","like",1463.130+1463.520,0.991955
</PATH>
<PATH id="(FE041-069)" word_cnt="0" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1034" R_T1="1465.412" R_T2="1466.657" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(FE041-070)" word_cnt="4" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1035" R_T1="1467.450" R_T2="1469.241" word_aux="h_t1+t2,h_conf">
I,,"to",1467.560+1467.660,1.000000:I,,"read",1467.660+1468.060,1.000000:S,"three","or",1468.190+1468.500,0.999332:S,"four","or",1468.500+1468.890,1.000000
</PATH>
<PATH id="(FE041-071)" word_cnt="3" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1036" R_T1="1470.375" R_T2="1472.338" word_aux="h_t1+t2,h_conf">
S,"four","for",1470.490+1470.760,0.679381:C,"conference","conference",1470.760+1471.320,1.000000:C,"rooms","rooms",1471.320+1471.890,0.507337
</PATH>
<PATH id="(FE041-072)" word_cnt="3" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1037" R_T1="1472.958" R_T2="1474.284" word_aux="h_t1+t2,h_conf">
C,"that","that",1472.990+1473.210,0.991814:S,"are","our",1473.210+1473.370,1.000000:S,"booked","book",1473.370+1473.670,0.886808
</PATH>
<PATH id="(FE041-073)" word_cnt="3" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1038" R_T1="1475.660" R_T2="1477.377" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"pretty","pretty",1476.310+1476.620,1.000000:C,"solid","solid",1476.620+1477.220,0.999665
</PATH>
<PATH id="(FE041-074)" word_cnt="15" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1039" R_T1="1477.911" R_T2="1483.050" word_aux="h_t1+t2,h_conf">
C,"so","so",1478.020+1478.560,1.000000:S,"(du-)","do",1479.050+1479.170,0.402749:C,"especially","especially",1479.170+1479.620,1.000000:C,"during","during",1479.620+1479.820,0.999937:C,"the","the",1479.820+1479.880,0.999937:C,"academic","academic",1479.880+1480.370,1.000000:C,"year","year",1480.370+1480.660,0.999998:C,"so","so",1480.660+1480.810,1.000000:C,"that","that",1480.810+1480.940,0.992868:C,"is","is",1480.940+1481.070,0.992868:C,"you","you",1481.330+1481.470,1.000000:C,"know","know",1481.470+1481.600,1.000000:C,"so","so",1481.600+1482.020,1.000000:C,"getting","getting",1482.200+1482.540,1.000000:C,"that","that",1482.540+1482.960,0.992208
</PATH>
<PATH id="(FE041-075)" word_cnt="1" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1040" R_T1="1483.600" R_T2="1484.515" word_aux="h_t1+t2,h_conf">
C,"capability","capability",1483.550+1484.390,0.999072
</PATH>
<PATH id="(FE041-077)" word_cnt="1" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1043" R_T1="1487.466" R_T2="1487.978" word_aux="h_t1+t2,h_conf">
S,"%hesitation","%bcack",1487.530+1487.890,0.999183
</PATH>
<PATH id="(FE041-089)" word_cnt="5" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1100" R_T1="1598.456" R_T2="1600.216" word_aux="h_t1+t2,h_conf">
C,"so","so",1598.550+1599.080,1.000000:I,,"it",1599.080+1599.150,0.540136:C,"so","so",1599.150+1599.450,1.000000:I,,"it",1599.450+1599.530,0.999678:C,"is","is",1599.530+1599.940,1.000000
</PATH>
</SPEAKER>
<SPEAKER id="ME011">
<PATH id="(ME011-010)" word_cnt="13" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="957" R_T1="1330.022" R_T2="1332.631" word_aux="h_t1+t2,h_conf">
S,"how","a",1330.100+1330.140,0.420022:C,"big","big",1330.140+1330.300,0.862878:D,"is",,,:D,"it",,,:D,"what",,,:D,"what",,,:D,"sort",,,:D,"of",,,:S,"size","difference",1330.300+1330.680,0.922699:C,"of","of",1331.130+1331.640,0.952318:D,"it",,,:D,"it",,,:S,"is","classes",1331.640+1332.030,0.969949
</PATH>
<PATH id="(ME011-026)" word_cnt="18" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1052" R_T1="1508.414" R_T2="1512.199" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",1508.550+1508.720,1.000000:C,"i","i",1508.720+1508.750,0.999988:C,"mean","mean",1508.750+1508.900,0.999988:C,"i","i",1508.900+1509.050,1.000000:C,"think","think",1509.050+1509.350,0.999648:S,"for","from",1509.350+1509.660,0.870218:S,"our","about",1509.660+1509.830,0.646108:S,"purposes","this",1509.830+1509.960,0.745677:S,"it","is",1509.960+1510.080,0.744145:S,"(w-)","that",1510.080+1510.230,0.740208:C,"like","like",1510.530+1510.700,1.000000:D,"morgan",,,:S,"said","movements",1510.700+1511.070,0.365085:S,"it","that",1511.070+1511.230,0.962943:C,"would","would",1511.230+1511.340,0.846808:C,"be","be",1511.340+1511.450,0.965805:C,"much","much",1511.450+1511.700,1.000000:D,"more",,,
</PATH>
<PATH id="(ME011-052)" word_cnt="16" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1164" R_T1="1715.748" R_T2="1718.420" word_aux="h_t1+t2,h_conf">
C,"you","you",1715.770+1715.860,0.995795:C,"can","can",1715.860+1715.960,1.000000:C,"probably","probably",1715.960+1716.170,1.000000:C,"guess","guess",1716.170+1716.420,1.000000:D,"who",,,:C,"is","is",1716.420+1716.490,0.538855:C,"going","going",1716.490+1716.610,0.999939:C,"to","to",1716.610+1716.670,0.999939:C,"be","be",1716.670+1716.730,0.999999:C,"doing","doing",1716.730+1716.930,0.999999:C,"a","a",1716.930+1716.960,0.999999:C,"lot","lot",1716.960+1717.080,0.999999:C,"of","of",1717.080+1717.160,0.999999:D,"the",,,:D,"speaking",,,:D,"so",,,
</PATH>
<PATH id="(ME011-053)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1167" R_T1="1719.842" R_T2="1720.387" word_aux="h_t1+t2,h_conf">
D,"yeah",,,
</PATH>
<PATH id="(ME011-059)" word_cnt="26" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1202" R_T1="1784.973" R_T2="1790.034" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"the","the",1785.490+1785.590,0.988953:C,"p.","p.",1785.590+1785.730,1.000000:C,"d.","d.",1785.730+1785.840,0.996197:C,"a.","a.",1785.840+1785.950,1.000000:I,,"my",1785.950+1786.100,0.695613:S,"microphones","friends",1786.100+1786.430,0.577479:C,"which","which",1786.430+1786.670,0.990862:C,"you","you",1786.670+1786.740,1.000000:C,"know","know",1786.740+1786.930,1.000000:D,"cost",,,:D,"under",,,:C,"a","a",1787.050+1787.120,0.863819:I,,"hundred",1787.120+1787.500,0.999812:S,"dollar","dollars",1787.500+1787.840,0.975577:C,"and","and",1787.840+1788.120,0.992009:D,"the",,,:D,"p.",,,:S,"z.","you",1788.120+1788.280,0.999040:S,"m.","can",1788.280+1788.470,0.998998:S,"microphones","make",1788.470+1788.610,0.998998:S,"which","sense",1788.610+1788.970,0.999451:S,"cost","to",1788.970+1789.080,0.999448:C,"three","three",1789.080+1789.300,1.000000:C,"hundred","hundred",1789.300+1789.550,1.000000:C,"dollars","dollars",1789.550+1789.860,1.000000
</PATH>
<PATH id="(ME011-063)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1210" R_T1="1809.638" R_T2="1810.189" word_aux="h_t1+t2,h_conf">
D,"right",,,
</PATH>
<PATH id="(ME011-067)" word_cnt="2" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1247" R_T1="133.240" R_T2="133.659" word_aux="h_t1+t2,h_conf">
C,"o.","o.",133.230+133.375,0.996179:C,"k.","k.",133.375+133.520,0.996179
</PATH>
<PATH id="(ME011-068)" word_cnt="0" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1248" R_T1="134.025" R_T2="134.361" word_aux="h_t1+t2,h_conf">
</PATH>
</SPEAKER>
<SPEAKER id="ME013">
<PATH id="(ME013-012)" word_cnt="24" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="991" R_T1="1389.636" R_T2="1393.594" word_aux="h_t1+t2,h_conf">
C,"i","i",1389.630+1389.800,0.999958:C,"i","i",1389.800+1389.940,0.999803:C,"have","have",1389.940+1390.055,0.973857:C,"not","not",1390.055+1390.170,0.973857:C,"seen","seen",1390.170+1390.370,1.000000:D,"this",,,:S,"right","so",1390.430+1390.550,0.519861:C,"so","so",1390.690+1390.780,0.861279:C,"what","what",1390.780+1390.950,0.982967:D,"it",,,:D,"is",,,:C,"it","it",1391.080+1391.125,0.948004:C,"is","is",1391.125+1391.170,0.948004:C,"like","like",1391.430+1391.560,0.978178:C,"this","this",1391.560+1391.730,0.998307:S,"big","thing",1391.730+1392.080,0.999328:C,"or","or",1392.230+1392.410,0.745495:C,"it","it",1392.520+1392.585,0.974698:C,"is","is",1392.585+1392.650,0.974698:C,"(r-)","",,:C,"it","it",1392.810+1392.915,1.000000:C,"is","is",1392.915+1393.020,1.000000:C,"it","it",1393.240+1393.385,1.000000:C,"is","is",1393.385+1393.530,1.000000
</PATH>
<PATH id="(ME013-019)" word_cnt="21" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1089" R_T1="1573.780" R_T2="1578.595" word_aux="h_t1+t2,h_conf">
C,"right","right",1574.050+1574.270,0.999910:C,"so","so",1574.270+1574.440,1.000000:C,"i","i",1574.440+1574.520,1.000000:C,"would","would",1574.520+1574.640,1.000000:C,"say","say",1574.640+1574.870,1.000000:C,"that","that",1574.870+1575.040,1.000000:C,"even","even",1575.130+1575.470,1.000000:C,"even","even",1575.520+1575.740,1.000000:C,"though","though",1575.740+1575.910,1.000000:C,"sure","sure",1575.910+1576.250,0.999254:C,"having","having",1576.340+1576.590,0.999908:S,"the","it",1576.590+1576.660,0.458891:C,"two","two",1576.660+1576.840,0.538508:C,"is","is",1576.840+1576.970,0.965468:C,"nice","nice",1576.970+1577.270,1.000000:C,"having","having",1577.270+1577.570,0.992403:D,"it",,,:C,"like","like",1577.570+1577.780,1.000000:C,"this","this",1577.780+1577.900,1.000000:C,"is","is",1578.010+1578.160,0.992695:C,"nice","nice",1578.160+1578.580,0.999992
</PATH>
<PATH id="(ME013-020)" word_cnt="7" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1090" R_T1="1578.836" R_T2="1580.844" word_aux="h_t1+t2,h_conf">
D,"if",,,:C,"you","you",1578.910+1579.060,0.999969:I,,"want",1579.060+1579.270,0.999800:S,"wanted","it",1579.270+1579.360,0.999172:C,"to","to",1579.360+1579.710,1.000000:C,"go","go",1579.950+1580.130,1.000000:C,"halfway","halfway",1580.130+1580.810,0.845452
</PATH>
<PATH id="(ME013-021)" word_cnt="11" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1091" R_T1="1581.086" R_T2="1584.339" word_aux="h_t1+t2,h_conf">
C,"really","really",1581.170+1581.430,0.999992:C,"i","i",1581.430+1581.480,0.998491:C,"would","would",1581.480+1581.610,1.000000:C,"much","much",1581.610+1581.850,1.000000:C,"rather","rather",1581.850+1582.110,1.000000:C,"have","have",1582.110+1582.300,1.000000:C,"one","one",1582.360+1582.660,0.995128:C,"microphone","microphone",1582.660+1583.270,1.000000:S,"that","it",1583.570+1583.660,0.832108:C,"was","was",1583.660+1583.850,0.998535:S,"distant","just",1583.850+1584.090,0.994834
</PATH>
<PATH id="(ME013-022)" word_cnt="15" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1092" R_T1="1584.774" R_T2="1587.910" word_aux="h_t1+t2,h_conf">
C,"and","and",1584.780+1585.060,1.000000:C,"if","if",1585.060+1585.230,1.000000:C,"you","you",1585.230+1585.360,1.000000:C,"were","were",1585.360+1585.500,0.767384:C,"wanted","wanted",1585.500+1585.800,0.999996:C,"to","to",1585.800+1585.870,1.000000:C,"have","have",1585.870+1586.120,0.999997:C,"be","be",1586.170+1586.270,1.000000:C,"able","able",1586.270+1586.420,1.000000:C,"to","to",1586.420+1586.480,1.000000:C,"have","have",1586.480+1586.640,0.999977:S,"seven","some",1586.640+1586.960,0.513559:C,"close","close",1586.960+1587.190,1.000000:C,"talking","talking",1587.190+1587.520,1.000000:C,"mikes","mikes",1587.520+1587.920,1.000000
</PATH>
<PATH id="(ME013-026)" word_cnt="34" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1106" R_T1="1606.733" R_T2="1613.737" word_aux="h_t1+t2,h_conf">
C,"so","so",1606.710+1607.080,1.000000:C,"for","for",1607.080+1607.200,1.000000:C,"instance","instance",1607.200+1607.540,1.000000:C,"we","we",1607.540+1607.640,1.000000:C,"will","will",1607.640+1607.735,1.000000:C,"not","not",1607.735+1607.830,1.000000:C,"be","be",1607.830+1607.950,1.000000:C,"able","able",1607.950+1608.140,1.000000:C,"to","to",1608.140+1608.230,1.000000:C,"do","do",1608.230+1608.480,1.000000:C,"the","the",1608.480+1608.560,0.720416:C,"stuff","stuff",1608.560+1608.950,1.000000:C,"that","that",1608.950+1609.080,0.721392:C,"dan","dan",1609.080+1609.350,0.420409:C,"was","was",1609.350+1609.490,0.882342:C,"doing","doing",1609.490+1609.770,1.000000:C,"with","with",1609.770+1609.890,0.998495:I,,"that's",1609.890+1610.150,0.839374:S,"azimuth","about",1610.150+1610.410,0.606864:C,"and","and",1610.520+1610.630,0.999995:C,"so","so",1610.630+1610.850,1.000000:C,"forth","forth",1610.850+1611.250,1.000000:C,"with","with",1611.250+1611.370,0.996156:C,"the","the",1611.370+1611.440,0.944024:C,"two","two",1611.440+1611.630,0.999926:C,"mikes","mikes",1611.780+1612.070,0.999774:C,"(%hesitation)","",,:C,"if","if",1612.380+1612.510,1.000000:C,"you","you",1612.510+1612.710,1.000000:C,"if","if",1612.760+1612.910,0.955013:C,"you","you",1612.910+1613.000,0.955013:C,"just","just",1613.000+1613.200,1.000000:C,"have","have",1613.200+1613.340,1.000000:C,"one","one",1613.340+1613.600,1.000000
</PATH>
<PATH id="(ME013-028)" word_cnt="24" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1109" R_T1="1617.742" R_T2="1621.275" word_aux="h_t1+t2,h_conf">
C,"and","and",1617.800+1618.100,1.000000:C,"we","we",1618.100+1618.145,0.993474:C,"are","are",1618.145+1618.190,0.993474:C,"going","going",1618.190+1618.310,1.000000:C,"to","to",1618.310+1618.370,1.000000:C,"collect","collect",1618.370+1618.640,0.905983:C,"a","a",1618.640+1618.670,0.926197:C,"fair","fair",1618.670+1618.840,0.937735:C,"amount","amount",1618.840+1619.040,1.000000:C,"of","of",1619.040+1619.100,1.000000:C,"data","data",1619.100+1619.340,1.000000:C,"here","here",1619.340+1619.640,0.999550:C,"and","and",1619.640+1619.730,0.975161:C,"we","we",1619.730+1619.775,0.495175:C,"will","will",1619.775+1619.820,0.495175:C,"have","have",1619.820+1619.940,0.987393:C,"a","a",1619.940+1619.970,1.000000:C,"lot","lot",1619.970+1620.160,1.000000:C,"of","of",1620.160+1620.220,1.000000:C,"stuff","stuff",1620.220+1620.480,1.000000:C,"to","to",1620.480+1620.560,1.000000:C,"do","do",1620.560+1620.720,1.000000:C,"that","that",1620.720+1620.910,0.999939:S,"with","way",1620.910+1621.080,0.884525
</PATH>
<PATH id="(ME013-045)" word_cnt="11" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1180" R_T1="1730.630" R_T2="1733.553" word_aux="h_t1+t2,h_conf">
S,"now","not",1730.610+1730.880,0.930778:C,"the","the",1730.880+1730.970,0.992994:C,"other","other",1730.970+1731.160,0.999822:C,"question","question",1731.160+1731.440,0.997161:C,"is","is",1731.490+1731.570,0.997161:C,"what","what",1731.570+1731.730,0.999949:C,"they","they",1731.730+1731.790,0.921965:C,"are","are",1731.890+1732.030,1.000000:C,"right","right",1732.250+1732.560,0.995706:C,"so","so",1732.560+1732.960,1.000000:C,"here","here",1733.010+1733.470,1.000000
</PATH>
<PATH id="(ME013-054)" word_cnt="6" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1216" R_T1="1816.494" R_T2="1817.894" word_aux="h_t1+t2,h_conf">
C,"if","if",1816.530+1816.590,0.739110:C,"we","we",1816.590+1816.660,0.975658:C,"put","put",1816.660+1816.830,0.999994:C,"on","on",1816.830+1816.960,1.000000:C,"different","different",1816.960+1817.320,1.000000:S,"mikes","my",1817.320+1817.590,0.709348
</PATH>
<PATH id="(ME013-062)" word_cnt="0" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1389" R_T1="300.038" R_T2="300.632" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(ME013-068)" word_cnt="0" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1409" R_T1="323.695" R_T2="323.923" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(ME013-074)" word_cnt="5" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1433" R_T1="346.518" R_T2="347.404" word_aux="h_t1+t2,h_conf">
C,"when","when",346.540+346.650,0.996652:D,"are",,,:C,"you","you",346.650+346.710,0.588086:S,"going","are",346.710+346.770,0.588086:S,"again","running",346.770+347.080,0.863455
</PATH>
<PATH id="(ME013-078)" word_cnt="1" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1446" R_T1="352.974" R_T2="353.358" word_aux="h_t1+t2,h_conf">
D,"yeah",,,
</PATH>
<PATH id="(ME013-089)" word_cnt="0" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1493" R_T1="399.062" R_T2="399.748" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(ME013-130)" word_cnt="1" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1670" R_T1="557.370" R_T2="557.768" word_aux="h_t1+t2,h_conf">
C,"yes","yes",557.290+557.680,0.999984
</PATH>
</SPEAKER>
<SPEAKER id="FN054">
<PATH id="(FN054-014)" word_cnt="4" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1044" R_T1="1488.013" R_T2="1489.799" word_aux="h_t1+t2,h_conf">
S,"what","want",1488.060+1488.310,0.299296:S,"kind","enough",1488.580+1488.860,0.805696:S,"of","for",1488.860+1488.950,0.795510:S,"meetings","me",1488.950+1489.160,0.797173
</PATH>
</SPEAKER>
<SPEAKER id="ME031">
<PATH id="(ME031-044)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1050" R_T1="1502.447" R_T2="1503.417" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(ME031-045)" word_cnt="17" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1051" R_T1="1503.853" R_T2="1508.307" word_aux="h_t1+t2,h_conf">
D,"i",,,:C,"i","i",1503.990+1504.410,1.000000:C,"think","think",1504.470+1504.620,0.999939:C,"getting","getting",1504.620+1504.930,0.994980:C,"a","a",1504.930+1505.010,0.738385:C,"variety","variety",1505.100+1505.580,1.000000:C,"of","of",1505.580+1505.640,0.999940:C,"material","material",1505.640+1506.280,0.999832:C,"at","at",1506.280+1506.340,0.997983:C,"this","this",1506.390+1506.630,1.000000:C,"point","point",1506.630+1506.880,1.000000:C,"in","in",1506.880+1506.990,0.915865:C,"time","time",1506.990+1507.300,0.994779:C,"is","is",1507.300+1507.410,0.987453:C,"a","a",1507.410+1507.480,0.999421:C,"good","good",1507.480+1507.660,0.999662:C,"idea","idea",1507.660+1508.130,1.000000
</PATH>
<PATH id="(ME031-050)" word_cnt="16" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1063" R_T1="1537.625" R_T2="1541.750" word_aux="h_t1+t2,h_conf">
D,"the",,,:S,"darn","done",1537.710+1538.010,0.889737:S,"thing","and",1538.060+1538.290,0.483383:C,"portable","portable",1538.290+1538.770,1.000000:C,"but","but",1538.830+1538.920,0.534841:C,"this","this",1538.970+1539.140,1.000000:C,"is","is",1539.140+1539.250,1.000000:C,"what","what",1539.250+1539.390,1.000000:C,"i","i",1539.390+1539.520,1.000000:C,"think","think",1539.520+1539.750,1.000000:C,"you","you",1539.870+1539.980,0.999979:C,"might","might",1539.980+1540.210,0.999999:I,,"people",1540.870+1541.150,0.770676:I,,"but",1541.150+1541.240,0.383935:S,"conceivably","we",1541.240+1541.340,0.824959:C,"need","need",1541.340+1541.740,0.976556
</PATH>
<PATH id="(ME031-063)" word_cnt="11" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1115" R_T1="1630.051" R_T2="1633.004" word_aux="h_t1+t2,h_conf">
C,"i","i",1630.070+1630.205,0.796635:C,"am","am",1630.205+1630.340,0.796635:C,"just","just",1630.340+1630.570,1.000000:C,"debating","debating",1630.570+1631.080,1.000000:C,"whether","whether",1631.080+1631.290,1.000000:C,"we","we",1631.290+1631.450,0.998874:C,"want","want",1631.450+1631.650,1.000000:C,"to","to",1631.650+1631.710,1.000000:C,"go","go",1631.710+1631.860,1.000000:S,"for","from",1631.860+1632.090,0.853154:C,"one","one",1632.090+1632.410,0.999988
</PATH>
<PATH id="(ME031-071)" word_cnt="16" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1134" R_T1="1658.388" R_T2="1663.907" word_aux="h_t1+t2,h_conf">
C,"when","when",1658.430+1658.620,0.896853:C,"(%hesitation)","",,:C,"you","you",1659.160+1659.270,1.000000:C,"know","know",1659.270+1659.430,1.000000:C,"on","on",1659.430+1659.710,1.000000:C,"a","a",1659.840+1659.900,1.000000:C,"microphone","microphone",1659.900+1660.590,1.000000:C,"down","down",1660.590+1660.920,1.000000:C,"there","there",1660.920+1661.240,1.000000:C,"versus","versus",1661.240+1661.670,0.922985:C,"you","you",1661.830+1661.940,1.000000:C,"know","know",1661.940+1662.090,1.000000:C,"one","one",1662.090+1662.390,1.000000:C,"that","that",1662.610+1662.715,1.000000:C,"is","is",1662.715+1662.820,1.000000:C,"relatively","relatively",1663.120+1663.780,1.000000
</PATH>
<PATH id="(ME031-084)" word_cnt="10" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1189" R_T1="1749.244" R_T2="1752.371" word_aux="h_t1+t2,h_conf">
D,"is",,,:C,"is","is",1749.420+1749.620,0.992237:C,"that","that",1749.620+1750.020,0.990716:C,"that","that",1750.020+1750.185,0.888394:C,"is","is",1750.185+1750.350,0.888394:S,"a","the",1750.350+1750.410,0.917677:C,"configuration","configuration",1750.410+1751.260,0.998126:C,"that","that",1751.260+1751.410,0.974531:C,"can","can",1751.410+1751.590,0.531253:C,"change","change",1751.590+1752.290,1.000000
</PATH>
<PATH id="(ME031-087)" word_cnt="11" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1194" R_T1="1763.766" R_T2="1767.516" word_aux="h_t1+t2,h_conf">
C,"i","i",1763.770+1763.920,0.999884:C,"suspect","suspect",1763.920+1764.390,0.999268:C,"we","we",1764.390+1764.480,0.848676:C,"can","can",1764.560+1764.800,1.000000:C,"collect","collect",1765.030+1765.450,0.999251:C,"a","a",1765.450+1765.490,0.997196:C,"lot","lot",1765.490+1765.750,1.000000:C,"of","of",1765.750+1765.850,1.000000:C,"data","data",1765.850+1766.300,1.000000:C,"in","in",1766.600+1766.830,0.999695:C,"common","common",1766.830+1767.390,0.999213
</PATH>
</SPEAKER>
<SPEAKER id="MN014">
<PATH id="(MN014-004)" word_cnt="1" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1313" R_T1="208.089" R_T2="208.511" word_aux="h_t1+t2,h_conf">
S,"yeah","a",208.200+208.330,0.494368
</PATH>
</SPEAKER>
<SPEAKER id="FN061">
<PATH id="(FN061-051)" word_cnt="0" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1382" R_T1="292.075" R_T2="292.575" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(FN061-137)" word_cnt="0" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1747" R_T1="646.275" R_T2="647.000" word_aux="h_t1+t2,h_conf">
</PATH>
</SPEAKER>
<SPEAKER id="MN017">
<PATH id="(MN017-030)" word_cnt="11" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1671" R_T1="557.950" R_T2="559.558" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"mean",,,:C,"we","we",557.920+558.120,0.999640:S,"are","were",558.120+558.310,0.999634:S,"not","out",558.310+558.460,0.970827:S,"on","of",558.460+558.600,0.999989:C,"it","it",558.600+558.750,0.999998:D,"which",,,:S,"might","before",558.750+559.010,0.995080:S,"be","it",559.010+559.090,0.935648:S,"good","because",559.090+559.450,0.686192
</PATH>
</SPEAKER>
<SPEAKER id="FE008">
<PATH id="(FE008-027)" word_cnt="8" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1750" R_T1="654.077" R_T2="656.484" word_aux="h_t1+t2,h_conf">
C,"the","the",654.180+654.440,1.000000:S,"forced","force",654.440+654.730,1.000000:C,"alignments","alignments",654.730+655.140,1.000000:C,"incorporated","incorporated",655.140+655.610,1.000000:C,"back","back",655.610+655.840,1.000000:C,"into","into",655.840+655.990,0.999835:C,"the","the",655.990+656.090,1.000000:C,"data","data",656.090+656.340,1.000000
</PATH>
<PATH id="(FE008-030)" word_cnt="4" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1758" R_T1="674.108" R_T2="675.406" word_aux="h_t1+t2,h_conf">
S,"(e-)","in",674.340+674.540,0.994090:C,"and","and",674.540+674.720,0.937499:D,"am",,,:C,"concerned","concerned",674.720+675.090,0.701911
</PATH>
</SPEAKER>
<SPEAKER id="FE016">
<PATH id="(FE016-030)" word_cnt="3" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1798" R_T1="729.800" R_T2="730.832" word_aux="h_t1+t2,h_conf">
I,,"kind",729.940+730.250,0.678569:I,,"of",730.250+730.310,0.678513:S,"timing","thing",730.310+730.430,0.679453
</PATH>
<PATH id="(FE016-042)" word_cnt="7" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1852" R_T1="790.708" R_T2="793.525" word_aux="h_t1+t2,h_conf">
C,"and","and",791.070+791.200,1.000000:C,"that","that",791.200+791.580,0.999112:C,"we","we",792.000+792.200,0.999711:S,"always","least",792.200+792.440,0.466234:S,"know","now",792.440+792.730,0.810834:C,"that","that",792.730+792.960,0.999068:D,"the",,,
</PATH>
</SPEAKER>
<SPEAKER id="002">
<PATH id="(002-005)" word_cnt="6" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1872" R_T1="1348.775" R_T2="1350.250" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"then","then",1349.220+1349.380,0.917342:D,"when",,,:C,"we","we",1349.380+1349.580,0.986504:C,"got","got",1349.580+1349.870,0.999993:C,"out","out",1349.870+1350.180,0.999911
</PATH>
<PATH id="(002-006)" word_cnt="17" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1873" R_T1="1350.500" R_T2="1354.625" word_aux="h_t1+t2,h_conf">
C,"(f-)","",,:S,"(through)","%bcack",1350.850+1351.340,0.683157:S,"(%hesitation)","west",1351.340+1351.660,0.967749:S,"western","in",1351.660+1351.730,0.968075:C,"texas","texas",1351.730+1352.190,1.000000:I,,"used",1352.190+1352.350,1.000000:S,"we","to",1352.350+1352.510,1.000000:S,"started","work",1352.510+1352.800,1.000000:S,"working","in",1352.800+1352.880,1.000000:S,"our","a",1352.880+1352.940,1.000000:C,"way","way",1352.940+1353.190,1.000000:D,"up",,,:D,"because",,,:D,"it",,,:S,"was","of",1353.190+1353.290,1.000000:S,"starting","storing",1353.340+1354.080,1.000000:S,"to","the",1354.330+1354.470,1.000000
</PATH>
<PATH id="(002-012)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1886" R_T1="1379.150" R_T2="1379.875" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(002-013)" word_cnt="13" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1887" R_T1="1380.150" R_T2="1382.950" word_aux="h_t1+t2,h_conf">
D,"we",,,:S,"lived","if",1380.300+1380.390,0.493915:S,"in","it's",1380.390+1380.610,0.407061:S,"l.","an",1380.610+1380.730,0.407707:S,"we","help",1380.730+1381.000,0.241146:S,"stayed","state",1381.000+1381.290,0.496788:C,"in","in",1381.290+1381.430,0.983659:C,"l.","l.",1381.430+1381.640,1.000000:C,"a.","a.",1381.640+1381.760,1.000000:C,"for","for",1381.760+1381.960,1.000000:C,"about","about",1381.960+1382.170,1.000000:C,"six","six",1382.170+1382.540,1.000000:C,"weeks","weeks",1382.540+1382.950,1.000000
</PATH>
<PATH id="(002-014)" word_cnt="15" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1888" R_T1="1383.000" R_T2="1387.075" word_aux="h_t1+t2,h_conf">
S,"because","she",1383.200+1383.420,0.894522:C,"(%hesitation)","",,:C,"she","she",1383.660+1383.910,0.999987:S,"had","and",1383.910+1384.010,0.348223:C,"family","family",1384.010+1384.480,0.873577:C,"out","out",1384.480+1384.690,0.988718:C,"there","there",1384.690+1385.080,0.999769:C,"(%hesitation)","",,:C,"so","so",1386.160+1386.390,0.898212:C,"you","you",1386.390+1386.460,0.727918:D,"know",,,:D,"we",,,:C,"did","did",1386.460+1386.620,0.562431:C,"the","the",1386.620+1386.710,0.648506:C,"whole","whole",1386.710+1387.050,0.649802
</PATH>
<PATH id="(002-015)" word_cnt="5" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1889" R_T1="1388.100" R_T2="1390.575" word_aux="h_t1+t2,h_conf">
S,"west","let",1388.170+1388.290,0.862332:S,"coast","us",1388.290+1388.410,0.862332:S,"(%hesitation)","close",1388.410+1388.810,0.773597:S,"thing","to",1388.890+1389.070,0.999936:S,"(%hesitation)","saying",1389.760+1390.150,0.440074
</PATH>
<PATH id="(002-016)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1890" R_T1="1390.950" R_T2="1394.100" word_aux="h_t1+t2,h_conf">
D,"well",,,:D,"i",,,:D,"was",,,:S,"standing","love",1391.190+1391.420,0.734497:S,"with","still",1391.420+1391.790,0.572096:C,"my","my",1391.790+1392.000,0.838278:C,"jane","jane",1392.330+1392.610,1.000000:C,"fonda","fonda",1392.610+1393.030,1.000000:D,"knocked",,,:S,"on","not",1393.030+1393.280,0.927549:C,"the","the",1393.280+1393.410,0.456770:C,"one","one",1393.410+1393.670,0.786351:I,,"do",1393.670+1393.790,0.919810:S,"door","it",1393.790+1393.950,0.916754
</PATH>
<PATH id="(002-027)" word_cnt="21" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1913" R_T1="1427.225" R_T2="1431.450" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:D,"%hesitation",,,:C,"in","in",1427.600+1427.690,0.794249:C,"fact","fact",1427.690+1428.010,0.952890:C,"up","up",1428.010+1428.120,0.998350:C,"until","until",1428.120+1428.420,0.999514:D,"a",,,:C,"couple","couple",1428.420+1428.630,0.999986:D,"of",,,:C,"years","years",1428.630+1428.840,1.000000:C,"ago","ago",1428.840+1429.080,1.000000:C,"when","when",1429.080+1429.270,0.988509:S,"he","we",1429.270+1429.330,0.432681:S,"killed","kill",1429.330+1429.610,0.762321:C,"himself","himself",1429.610+1429.940,0.978214:C,"my","my",1429.940+1430.060,0.999899:C,"best","best",1430.060+1430.260,1.000000:C,"friend","friend",1430.260+1430.550,1.000000:C,"was","was",1430.550+1430.730,0.921804:S,"in","from",1430.730+1430.850,0.479568:S,"toronto","tour",1430.850+1431.070,0.501392
</PATH>
<PATH id="(002-032)" word_cnt="6" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1922" R_T1="1444.700" R_T2="1445.925" word_aux="h_t1+t2,h_conf">
D,"on",,,:C,"the","the",1444.830+1444.940,1.000000:C,"beginning","beginning",1444.940+1445.370,1.000000:C,"of","of",1445.370+1445.440,1.000000:C,"the","the",1445.440+1445.550,1.000000:C,"trip","trip",1445.550+1445.900,0.999981
</PATH>
<PATH id="(002-036)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1929" R_T1="1456.700" R_T2="1457.250" word_aux="h_t1+t2,h_conf">
D,"yeah",,,
</PATH>
<PATH id="(002-041)" word_cnt="13" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1943" R_T1="1482.725" R_T2="1485.425" word_aux="h_t1+t2,h_conf">
C,"(b-)","",,:C,"we","we",1483.040+1483.180,1.000000:C,"came","came",1483.180+1483.410,0.996645:I,,"in",1483.410+1483.480,0.993653:S,"into","the",1483.480+1483.570,0.579218:C,"yellowstone","yellowstone",1483.570+1484.090,0.997974:C,"it","it",1484.090+1484.160,0.993309:C,"was","was",1484.160+1484.360,0.996164:S,"(d-)","to",1484.360+1484.470,0.531595:C,"it","it",1484.470+1484.590,0.554810:C,"was","was",1484.590+1484.710,0.563709:C,"getting","getting",1484.710+1484.960,0.665289:C,"dark","dark",1484.960+1485.410,0.999988
</PATH>
<PATH id="(002-042)" word_cnt="2" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1944" R_T1="1486.075" R_T2="1486.625" word_aux="h_t1+t2,h_conf">
D,"and",,,:C,"(%hesitation)","",,
</PATH>
<PATH id="(002-043)" word_cnt="18" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1945" R_T1="1487.800" R_T2="1491.375" word_aux="h_t1+t2,h_conf">
C,"we","we",1488.000+1488.130,0.999862:C,"decided","decided",1488.130+1488.620,0.558393:S,"to","did",1488.620+1488.780,0.793362:C,"not","not",1488.780+1489.020,1.000000:D,"set",,,:D,"up",,,:D,"our",,,:D,"tent",,,:D,"or",,,:S,"anything","support",1489.020+1489.480,0.983637:S,"we","right",1489.680+1489.920,0.329251:S,"were","to",1489.920+1490.000,0.998951:S,"going","move",1490.000+1490.300,0.989454:S,"to","this",1490.300+1490.560,0.989454:S,"sleep","week",1490.560+1490.710,0.954331:C,"in","in",1490.710+1490.800,0.954332:C,"the","the",1490.800+1490.870,0.990055:C,"car","car",1490.870+1491.370,0.957250
</PATH>
<PATH id="(002-044)" word_cnt="13" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1946" R_T1="1491.975" R_T2="1495.300" word_aux="h_t1+t2,h_conf">
C,"so","so",1492.180+1492.410,1.000000:C,"we","we",1492.410+1492.600,1.000000:C,"were","were",1492.600+1492.810,0.976593:C,"in","in",1492.950+1493.080,0.981582:C,"the","the",1493.080+1493.170,0.999757:C,"car","car",1493.170+1493.550,0.807838:D,"but",,,:C,"when","when",1493.550+1493.860,0.999891:C,"we","we",1493.860+1494.010,1.000000:C,"pulled","pulled",1494.010+1494.300,1.000000:C,"into","into",1494.300+1494.500,1.000000:C,"this","this",1494.500+1494.800,0.999920:S,"spot","but",1494.800+1495.230,0.999920
</PATH>
<PATH id="(002-045)" word_cnt="22" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1947" R_T1="1495.500" R_T2="1499.175" word_aux="h_t1+t2,h_conf">
S,"when","and",1495.630+1495.720,0.536323:C,"we","we",1495.720+1495.840,0.984937:C,"came","came",1495.840+1496.040,0.836334:D,"in",,,:S,"there","and",1496.040+1496.210,0.535457:S,"was","it",1496.210+1496.290,0.576850:S,"not","range",1496.290+1496.490,0.400115:C,"a","a",1496.490+1496.600,0.576897:C,"ranger","ranger",1496.600+1497.010,0.578931:S,"there","they",1497.010+1497.120,0.790364:S,"or","are",1497.120+1497.230,0.790364:S,"nothing","not",1497.230+1497.400,1.000000:C,"but","but",1497.400+1497.490,0.751639:C,"they","they",1497.490+1497.580,1.000000:C,"had","had",1497.580+1497.730,0.956960:S,"this","to",1497.730+1497.830,0.889654:S,"tape","take",1497.880+1498.210,0.986205:S,"thing","things",1498.210+1498.530,0.758462:C,"that","that",1498.530+1498.660,0.883493:D,"said",,,:C,"you","you",1498.660+1498.750,1.000000:C,"know","know",1498.750+1498.990,1.000000
</PATH>
<PATH id="(002-046)" word_cnt="25" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1948" R_T1="1499.225" R_T2="1504.125" word_aux="h_t1+t2,h_conf">
D,"be",,,:C,"careful","careful",1499.440+1499.920,0.999999:S,"of","a",1499.920+1499.960,0.632589:C,"certain","certain",1499.960+1500.280,0.986234:I,,"mark",1500.280+1500.590,0.815673:S,"marked","there",1500.590+1500.810,0.978237:S,"areas","is",1500.810+1501.000,0.978237:C,"and","and",1501.000+1501.090,0.819741:C,"all","all",1501.090+1501.240,0.953579:S,"but","that",1501.240+1501.340,0.709364:C,"we","we",1501.340+1501.500,0.999474:C,"could","could",1501.500+1501.660,0.999474:S,"barely","fairly",1501.760+1502.040,0.654227:C,"see","see",1502.040+1502.350,0.424356:D,"and",,,:D,"we",,,:D,"were",,,:S,"dead","with",1502.350+1502.620,0.912946:S,"tired","that",1502.620+1502.870,0.652420:S,"and","i",1502.870+1503.100,0.652420:S,"we","would",1503.100+1503.270,0.652497:S,"pulled","pull",1503.270+1503.470,0.744678:C,"in","in",1503.470+1503.680,0.887650:D,"and",,,:D,"we",,,
</PATH>
<PATH id="(002-049)" word_cnt="5" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1953" R_T1="1512.075" R_T2="1513.425" word_aux="h_t1+t2,h_conf">
C,"he","he",1512.130+1512.280,0.977701:C,"went","went",1512.280+1512.440,1.000000:C,"away","away",1512.440+1512.840,0.998732:C,"but","but",1512.840+1512.960,0.951442:C,"like","like",1512.960+1513.190,1.000000
</PATH>
<PATH id="(002-050)" word_cnt="20" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1954" R_T1="1513.575" R_T2="1517.300" word_aux="h_t1+t2,h_conf">
S,"he","q",1513.620+1513.820,0.836219:C,"must","must",1513.820+1514.060,0.853522:C,"have","have",1514.060+1514.160,0.853522:C,"been","been",1514.160+1514.310,1.000000:C,"there","there",1514.310+1514.530,0.949081:D,"even",,,:C,"before","before",1514.530+1514.870,0.989660:D,"we",,,:D,"heard",,,:S,"him","the",1514.870+1514.930,0.912509:S,"because","articles",1514.930+1515.340,0.999105:C,"in","in",1515.340+1515.480,0.937708:C,"in","in",1515.480+1515.600,1.000000:C,"the","the",1515.600+1515.670,1.000000:C,"morning","morning",1515.670+1516.200,1.000000:S,"(w-)","you",1516.500+1516.590,0.707369:S,"we","know",1516.590+1516.740,0.712270:S,"opened","with",1516.740+1516.910,0.843815:S,"up","out",1516.910+1517.080,0.843815:C,"the","the",1517.080+1517.200,0.941039
</PATH>
<PATH id="(002-055)" word_cnt="0" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1964" R_T1="1530.200" R_T2="1530.750" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(002-057)" word_cnt="24" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1967" R_T1="1533.125" R_T2="1536.975" word_aux="h_t1+t2,h_conf">
C,"and","and",1533.240+1533.330,0.997508:C,"we","we",1533.330+1533.390,0.956435:C,"left","left",1533.390+1533.890,0.999373:D,"the",,,:C,"(j-)","",,:C,"the","the",1533.930+1534.070,0.999994:C,"tent","tent",1534.070+1534.480,0.999397:D,"unzippered",,,:D,"and",,,:S,"when","different",1534.480+1534.780,0.761529:C,"we","we",1534.780+1534.940,1.000000:C,"came","came",1534.940+1535.170,1.000000:C,"back","back",1535.170+1535.400,1.000000:D,"and",,,:D,"we",,,:S,"got","with",1535.400+1535.540,0.999959:S,"near","a",1535.540+1535.600,0.627763:S,"the","new",1535.600+1535.790,0.452222:S,"tent","ten",1535.790+1536.030,0.596032:S,"we","with",1536.030+1536.140,0.389360:S,"heard","her",1536.140+1536.310,0.433415:S,"all","listen",1536.310+1536.590,0.774921:S,"this","to",1536.590+1536.660,0.774921:S,"noise","ways",1536.660+1536.960,0.822302
</PATH>
<PATH id="(002-060)" word_cnt="36" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1972" R_T1="1543.850" R_T2="1549.325" word_aux="h_t1+t2,h_conf">
C,"i","i",1543.980+1544.100,0.998699:D,"thought",,,:D,"well",,,:C,"(%hesitation)","",,:D,"something",,,:D,"is",,,:D,"in",,,:D,"there",,,:S,"i","so",1544.160+1544.280,0.536074:S,"figured","long",1544.280+1544.520,0.507122:S,"a","some",1544.780+1545.110,0.941675:S,"raccoon","did",1545.110+1545.280,0.952022:S,"or","not",1545.280+1545.450,0.990284:S,"something","for",1545.450+1545.550,0.985305:S,"i","the",1545.550+1545.630,0.993784:S,"will","record",1545.630+1546.100,0.997928:S,"throw","this",1546.100+1546.300,0.999281:S,"a","before",1546.360+1546.730,0.800306:C,"rock","rock",1546.730+1547.150,0.999440:D,"in",,,:C,"or","or",1547.150+1547.200,0.747921:D,"something",,,:D,"and",,,:D,"so",,,:D,"i",,,:D,"opened",,,:S,"it","some",1547.320+1547.460,0.982402:S,"up","sort",1547.570+1547.730,0.985877:S,"and","of",1547.790+1547.860,0.985878:S,"threw","not",1547.940+1548.130,0.994320:S,"a","to",1548.130+1548.220,0.992019:C,"rock","rock",1548.220+1548.500,0.994594:D,"and",,,:D,"it",,,:D,"was",,,:C,"skunks","skunks",1548.650+1549.280,0.774610
</PATH>
<PATH id="(002-088)" word_cnt="35" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2079" R_T1="1740.375" R_T2="1746.950" word_aux="h_t1+t2,h_conf">
C,"one","one",1740.520+1740.650,0.999969:C,"of","of",1740.650+1740.720,0.999865:C,"the","the",1740.720+1740.780,0.999631:C,"jobs","jobs",1740.780+1741.100,0.981426:C,"i","i",1741.100+1741.130,0.999896:C,"had","had",1741.130+1741.340,0.974387:D,"when",,,:S,"i","my",1741.340+1741.480,1.000000:C,"(%hesitation)","",,:C,"first","first",1741.530+1741.740,1.000000:C,"got","got",1741.740+1741.890,0.993778:C,"to","to",1741.890+1741.970,0.548959:I,,"for",1742.040+1742.300,0.943454:S,"florida","it",1742.300+1742.360,0.975764:C,"was","was",1742.360+1742.540,0.999711:S,"reading","three",1742.540+1742.660,0.968026:S,"meters","years",1742.860+1743.230,0.973660:S,"in","of",1743.230+1743.340,0.981440:S,"broward","grammar",1743.340+1743.680,0.968397:S,"county","kevin",1743.680+1744.070,0.516022:C,"and","and",1744.070+1744.160,0.640114:C,"i","i",1744.160+1744.260,0.999999:C,"used","used",1744.260+1744.420,0.999518:C,"to","to",1744.420+1744.480,0.998310:C,"have","have",1744.480+1744.590,0.998261:C,"to","to",1744.590+1744.670,1.000000:C,"go","go",1744.670+1744.810,1.000000:C,"back","back",1744.810+1745.040,1.000000:D,"into",,,:D,"these",,,:S,"easements","and",1745.040+1745.260,1.000000:S,"that","he",1745.360+1745.570,0.989471:S,"were","says",1745.570+1745.710,0.928927:S,"all","over",1746.170+1746.390,0.901621:S,"overgrown","run",1746.390+1746.860,0.939818
</PATH>
<PATH id="(002-092)" word_cnt="38" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2090" R_T1="1760.750" R_T2="1766.075" word_aux="h_t1+t2,h_conf">
C,"down","down",1760.820+1761.080,0.999990:D,"there",,,:D,"there",,,:C,"is","is",1761.080+1761.410,0.985610:S,"a","that",1761.410+1761.530,0.962278:C,"they","they",1761.530+1761.630,0.906491:C,"are","are",1761.630+1761.730,0.906491:C,"really","really",1761.730+1761.990,0.999998:C,"into","into",1761.990+1762.160,1.000000:D,"the",,,:D,"pit",,,:D,"bulls",,,:S,"you","these",1762.160+1762.360,1.000000:S,"know","tables",1762.360+1762.990,0.995777:C,"and","and",1763.100+1763.400,0.999999:D,"they",,,:D,"put",,,:D,"them",,,:D,"in",,,:D,"the",,,:D,"yard",,,:S,"and","ignored",1763.810+1764.150,1.000000:S,"they","it",1764.150+1764.250,1.000000:S,"throw","for",1764.250+1764.370,0.848772:C,"a","a",1764.370+1764.400,0.848772:C,"piece","piece",1764.400+1764.630,0.848772:C,"of","of",1764.630+1764.690,0.848772:D,"meat",,,:D,"at",,,:D,"them",,,:S,"one","me",1764.690+1764.820,0.848772:S,"a","down",1764.820+1765.050,0.848772:S,"week","what",1765.050+1765.180,0.454301:S,"you","do",1765.180+1765.260,0.447721:S,"know","we",1765.260+1765.380,0.864824:S,"and","get",1765.380+1765.580,0.780805:S,"they","in",1765.580+1765.670,0.474116:S,"are","there",1765.670+1765.830,0.734965
</PATH>
<PATH id="(002-094)" word_cnt="19" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2093" R_T1="1770.425" R_T2="1774.250" word_aux="h_t1+t2,h_conf">
C,"and","and",1770.450+1770.560,0.924058:C,"just","just",1770.560+1770.780,1.000000:I,,"walk",1770.780+1771.020,0.775183:S,"luckily","when",1771.020+1771.150,1.000000:C,"they","they",1771.150+1771.250,1.000000:C,"were","were",1771.250+1771.390,1.000000:C,"young","young",1771.390+1771.760,1.000000:C,"and","and",1771.760+1771.880,1.000000:C,"they","they",1771.880+1772.010,1.000000:C,"both","both",1772.010+1772.270,1.000000:C,"came","came",1772.270+1772.520,1.000000:C,"out","out",1772.520+1772.660,1.000000:C,"and","and",1772.660+1772.750,1.000000:C,"grabbed","grabbed",1772.750+1773.240,0.764248:D,"me",,,:C,"one","one",1773.300+1773.750,1.000000:D,"on",,,:D,"each",,,:S,"foot","slide",1773.750+1774.150,0.617281
</PATH>
<PATH id="(002-107)" word_cnt="17" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2125" R_T1="1811.125" R_T2="1814.375" word_aux="h_t1+t2,h_conf">
D,"he",,,:D,"was",,,:D,"bending",,,:D,"over",,,:S,"reading","i",1811.600+1811.740,0.569610:S,"one","do",1811.740+1811.800,0.494942:S,"and","not",1811.800+1811.860,0.494942:S,"there","know",1811.860+1812.110,0.983142:S,"was","if",1812.110+1812.170,0.821040:S,"one","we",1812.170+1812.380,0.992518:S,"on","want",1812.730+1812.900,0.936542:S,"the","to",1812.900+1812.960,0.936549:S,"other","know",1812.960+1813.140,0.952725:S,"side","some",1813.140+1813.360,0.953114:C,"of","of",1813.360+1813.420,0.966680:C,"the","the",1813.420+1813.520,0.966546:S,"fence","fans",1813.520+1813.980,0.829017
</PATH>
<PATH id="(002-108)" word_cnt="16" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2126" R_T1="1814.450" R_T2="1817.300" word_aux="h_t1+t2,h_conf">
S,"that","it",1814.570+1814.680,0.437867:C,"always","always",1814.680+1814.960,0.991740:D,"barked",,,:D,"and",,,:S,"we","parking",1814.960+1815.370,0.882835:S,"all","will",1815.370+1815.650,0.943264:S,"knew","know",1815.650+1815.860,0.955778:C,"about","about",1815.860+1816.180,0.955778:D,"him",,,:D,"we",,,:D,"knew",,,:D,"where",,,:S,"it","were",1816.300+1816.590,0.796965:S,"was","less",1816.590+1816.960,0.983620:C,"but","but",1816.960+1817.080,0.993040:C,"that","that",1817.080+1817.340,1.000000
</PATH>
<PATH id="(002-109)" word_cnt="13" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2127" R_T1="1817.300" R_T2="1820.175" word_aux="h_t1+t2,h_conf">
D,"day",,,:D,"i",,,:D,"do",,,:S,"not","they",1817.340+1817.680,1.000000:S,"know","had",1817.680+1817.810,0.948601:S,"the","another",1817.810+1818.250,1.000000:C,"thing","thing",1818.250+1818.440,1.000000:C,"jumped","jumped",1818.440+1818.760,1.000000:S,"over","up",1818.760+1818.930,1.000000:C,"and","and",1818.990+1819.100,1.000000:C,"grabbed","grabbed",1819.100+1819.550,1.000000:C,"him","him",1819.550+1819.620,0.998484:C,"by","by",1819.620+1819.910,0.998920
</PATH>
<PATH id="(002-118)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2150" R_T1="1851.050" R_T2="1853.125" word_aux="h_t1+t2,h_conf">
C,"i","i",1851.100+1851.230,0.999685:C,"do","do",1851.230+1851.295,0.999571:C,"not","not",1851.295+1851.360,0.999571:C,"know","know",1851.360+1851.440,0.999712:C,"what","what",1851.440+1851.700,0.999423:S,"would","i",1851.700+1851.730,0.966124:C,"have","have",1851.730+1851.900,0.996333:D,"happened",,,:D,"in",,,:C,"another","another",1851.900+1852.180,0.997451:D,"couple",,,:D,"of",,,:D,"minutes",,,:S,"but","comment",1852.180+1852.680,0.910596
</PATH>
<PATH id="(002-119)" word_cnt="10" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2152" R_T1="1854.200" R_T2="1856.625" word_aux="h_t1+t2,h_conf">
C,"i","i",1854.240+1854.420,0.970049:C,"i","i",1854.420+1854.520,0.999998:C,"could","could",1854.520+1854.720,0.993289:D,"have",,,:C,"never","never",1854.720+1854.990,0.999988:D,"fought",,,:S,"them","for",1854.990+1855.270,0.542415:C,"both","both",1855.270+1855.510,0.952635:D,"off",,,:S,"and","both",1855.510+1855.820,0.947783
</PATH>
<PATH id="(002-120)" word_cnt="5" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2154" R_T1="1858.775" R_T2="1860.250" word_aux="h_t1+t2,h_conf">
C,"(and)","",,:C,"(%hesitation)","",,:S,"they","it",1858.980+1859.200,0.533485:S,"are","think",1859.200+1859.330,0.230193:C,"fearless","fearless",1859.330+1859.900,0.965091
</PATH>
<PATH id="(002-126)" word_cnt="10" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2170" R_T1="1882.850" R_T2="1885.325" word_aux="h_t1+t2,h_conf">
D,"in",,,:S,"in","time",1883.420+1883.510,0.354133:C,"the","the",1883.510+1883.590,0.442723:C,"day","day",1883.590+1883.910,0.462163:C,"time","time",1883.910+1884.230,0.462163:D,"the",,,:S,"reason","degrees",1884.430+1884.820,0.420586:C,"i","i",1884.820+1884.940,0.946340:C,"did","did",1884.940+1885.140,0.973718:C,"this","this",1885.140+1885.320,0.906699
</PATH>
<PATH id="(002-127)" word_cnt="13" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2171" R_T1="1885.325" R_T2="1888.100" word_aux="h_t1+t2,h_conf">
C,"job","job",1885.320+1885.660,0.999994:C,"was","was",1885.660+1885.790,0.981821:C,"because","because",1885.790+1886.130,1.000000:D,"it",,,:S,"allowed","allow",1886.130+1886.410,0.636135:C,"me","me",1886.410+1886.610,0.995008:C,"to","to",1886.610+1886.710,1.000000:C,"do","do",1886.710+1886.950,1.000000:C,"all","all",1886.950+1887.020,0.980330:C,"my","my",1887.020+1887.120,0.999480:C,"work","work",1887.120+1887.390,1.000000:C,"by","by",1887.390+1887.510,1.000000:C,"noon","noon",1887.510+1887.980,0.999992
</PATH>
<PATH id="(002-128)" word_cnt="11" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2172" R_T1="1888.500" R_T2="1891.550" word_aux="h_t1+t2,h_conf">
C,"and","and",1888.620+1888.790,0.931402:S,"then","and",1888.790+1889.110,0.658819:S,"do","to",1889.350+1889.730,0.794792:C,"(m-)","",,:C,"get","get",1889.910+1890.120,0.873142:C,"prepare","prepare",1890.120+1890.450,0.841015:C,"for","for",1890.450+1890.550,0.997124:C,"my","my",1890.550+1890.690,1.000000:C,"classes","classes",1890.690+1891.210,0.695297:D,"at",,,:S,"night","site",1891.210+1891.610,0.561208
</PATH>
<PATH id="(002-130)" word_cnt="24" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2175" R_T1="1893.975" R_T2="1897.925" word_aux="h_t1+t2,h_conf">
S,"because","he",1894.230+1894.390,0.952411:S,"you","is",1894.490+1894.550,0.517253:S,"you","going",1894.550+1894.670,0.521380:S,"got","to",1894.670+1894.730,0.521380:S,"paid","pay",1894.730+1894.900,0.858115:C,"for","for",1894.900+1895.020,0.984414:D,"an",,,:S,"eight","the",1895.020+1895.250,1.000000:S,"hour","other",1895.250+1895.440,1.000000:C,"day","day",1895.440+1895.750,1.000000:D,"but",,,:S,"if","that",1895.750+1895.890,1.000000:C,"you","you",1895.890+1895.970,1.000000:C,"could","could",1895.970+1896.090,1.000000:C,"do","do",1896.090+1896.290,1.000000:D,"the",,,:C,"work","work",1896.290+1896.500,1.000000:D,"in",,,:C,"four","four",1896.600+1896.870,0.972856:C,"hours","hours",1896.870+1897.140,1.000000:C,"because","because",1897.140+1897.510,0.999964:D,"of",,,:C,"the","the",1897.510+1897.620,0.418131:S,"heat","he",1897.620+1897.920,0.901145
</PATH>
<PATH id="(002-142)" word_cnt="17" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2205" R_T1="1954.025" R_T2="1956.900" word_aux="h_t1+t2,h_conf">
D,"and",,,:C,"that","that",1954.140+1954.275,0.986386:C,"is","is",1954.275+1954.410,0.986386:C,"what","what",1954.410+1954.500,0.881282:C,"i","i",1954.500+1954.550,0.994498:C,"think","think",1954.550+1954.790,0.999568:S,"after","it's",1954.790+1954.940,0.999564:C,"about","about",1954.940+1955.210,1.000000:C,"five","five",1955.210+1955.490,1.000000:S,"(y-)","and",1955.490+1955.580,0.466604:S,"i","it",1955.580+1955.660,0.360505:C,"was","was",1955.660+1955.760,0.859118:D,"down",,,:S,"there","that",1955.760+1955.900,0.588991:C,"for","for",1955.900+1956.050,0.994553:C,"five","five",1956.050+1956.390,1.000000:C,"years","years",1956.390+1956.750,1.000000
</PATH>
</SPEAKER>
<SPEAKER id="003">
<PATH id="(003-009)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1912" R_T1="1425.725" R_T2="1426.525" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(003-058)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2067" R_T1="1722.750" R_T2="1723.675" word_aux="h_t1+t2,h_conf">
S,"%hesitation","%bcack",1722.870+1723.320,0.999413
</PATH>
<PATH id="(003-088)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2151" R_T1="1853.325" R_T2="1854.200" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(003-089)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2153" R_T1="1856.850" R_T2="1857.550" word_aux="h_t1+t2,h_conf">
D,"whew",,,
</PATH>
<PATH id="(003-099)" word_cnt="8" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2191" R_T1="1918.775" R_T2="1921.000" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"have",,,:S,"stayed","our",1918.940+1919.050,0.881978:S,"i","students",1919.050+1919.560,0.496460:S,"probably","our",1919.780+1919.920,0.570495:S,"told","product",1919.920+1920.290,0.765372:S,"you","over",1920.290+1920.490,0.877010:S,"i","here",1920.490+1920.760,0.991047
</PATH>
<PATH id="(003-100)" word_cnt="15" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2192" R_T1="1921.150" R_T2="1924.100" word_aux="h_t1+t2,h_conf">
D,"we",,,:D,"were",,,:D,"just",,,:S,"me","worse",1921.310+1921.630,0.563551:S,"and","main",1921.740+1922.040,0.720772:C,"two","two",1922.040+1922.190,0.826004:C,"friends","friends",1922.190+1922.560,0.967545:C,"after","after",1922.560+1923.000,0.999744:D,"i",,,:D,"got",,,:D,"out",,,:D,"of",,,:C,"the","the",1923.000+1923.090,0.448108:C,"service","service",1923.150+1923.760,0.950171:D,"were",,,
</PATH>
<PATH id="(003-103)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2196" R_T1="1930.575" R_T2="1933.950" word_aux="h_t1+t2,h_conf">
D,"because",,,:D,"i",,,:S,"was","start",1930.630+1930.900,0.932338:C,"collecting","collecting",1930.900+1931.320,1.000000:C,"unemployment","unemployment",1931.320+1931.900,1.000000:D,"from",,,:D,"being",,,:S,"in","for",1931.900+1932.030,0.966895:S,"the","meetings",1932.080+1932.540,0.738576:C,"service","service",1932.540+1933.020,0.988221:S,"and","some",1933.020+1933.210,1.000000:S,"at","kind",1933.210+1933.370,1.000000:S,"that","of",1933.370+1933.430,1.000000:C,"time","time",1933.430+1933.740,1.000000
</PATH>
<PATH id="(003-104)" word_cnt="12" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2197" R_T1="1934.050" R_T2="1936.975" word_aux="h_t1+t2,h_conf">
C,"you","you",1934.120+1934.330,1.000000:D,"only",,,:D,"had",,,:S,"to","have",1934.330+1934.570,1.000000:S,"go","your",1934.570+1934.730,0.999888:C,"back","back",1934.730+1934.990,0.999706:C,"to","to",1934.990+1935.160,0.787605:D,"jersey",,,:S,"once","really",1935.160+1935.470,0.821152:S,"a","wants",1935.470+1935.740,0.479525:S,"month","two",1935.740+1935.800,0.279652:S,"so","months",1935.850+1936.150,0.805212
</PATH>
<PATH id="(003-105)" word_cnt="19" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2198" R_T1="1937.125" R_T2="1941.550" word_aux="h_t1+t2,h_conf">
C,"it","it",1937.300+1937.360,0.381295:S,"was","strikes",1937.360+1937.820,0.383872:S,"nice","a",1938.150+1938.210,0.390257:C,"(i-)","",,:S,"hitchhike","check",1938.210+1938.550,0.761757:C,"up","up",1938.550+1938.700,0.752496:C,"and","and",1938.700+1938.800,0.771245:C,"back","back",1938.800+1939.150,1.000000:C,"you","you",1939.150+1939.230,0.999973:C,"know","know",1939.230+1939.520,0.999973:D,"and",,,:S,"pick","back",1939.560+1939.790,0.770337:S,"up","of",1939.790+1939.860,0.817694:C,"my","my",1939.860+1940.010,0.980350:D,"check",,,:S,"and","checking",1940.010+1940.450,0.970259:C,"work","work",1940.450+1940.760,0.547592:D,"down",,,:D,"there",,,
</PATH>
<PATH id="(003-106)" word_cnt="4" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2199" R_T1="1941.850" R_T2="1943.025" word_aux="h_t1+t2,h_conf">
D,"could",,,:D,"not",,,:D,"beat",,,:D,"it",,,
</PATH>
<PATH id="(003-110)" word_cnt="4" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2212" R_T1="1968.000" R_T2="1969.425" word_aux="h_t1+t2,h_conf">
D,"it",,,:C,"was","was",1968.290+1968.520,0.729018:C,"weird","weird",1968.520+1968.820,0.745118:C,"one","one",1968.820+1969.130,0.565527
</PATH>
<PATH id="(003-111)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2213" R_T1="1969.525" R_T2="1972.650" word_aux="h_t1+t2,h_conf">
D,"the",,,:D,"year",,,:D,"i",,,:D,"was",,,:D,"down",,,:D,"there",,,:S,"i","arise",1969.880+1970.230,0.452587:S,"was","center",1970.230+1970.950,0.993373:S,"there","center",1971.150+1971.340,0.924603:C,"for","for",1971.340+1971.480,0.925453:C,"new","new",1971.530+1971.700,0.987955:S,"years","year's",1971.700+1971.990,0.987955:C,"eve","eve",1971.990+1972.250,0.987955:D,"and",,,
</PATH>
<PATH id="(003-112)" word_cnt="10" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2214" R_T1="1972.750" R_T2="1975.750" word_aux="h_t1+t2,h_conf">
D,"we",,,:D,"were",,,:C,"running","running",1972.960+1973.220,0.729147:C,"around","around",1973.220+1973.500,0.999958:C,"crazy","crazy",1973.500+1974.100,1.000000:D,"in",,,:S,"shorts","insurance",1974.100+1974.700,0.990374:C,"and","and",1974.700+1974.800,0.999423:S,"t.","t",1974.800+1975.200,0.990593:C,"shirts","shirts",1975.200+1975.600,0.990593
</PATH>
<PATH id="(003-113)" word_cnt="22" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2215" R_T1="1975.850" R_T2="1981.300" word_aux="h_t1+t2,h_conf">
S,"and","having",1976.150+1976.410,0.884241:C,"(%hesitation)","",,:C,"a","a",1976.410+1976.440,0.884227:C,"week","week",1976.440+1976.730,0.884227:C,"and","and",1976.730+1976.820,0.887600:C,"a","a",1976.820+1976.850,0.884227:C,"half","half",1976.850+1977.080,0.884227:D,"later",,,:S,"i","way",1977.080+1977.320,0.884227:S,"had","around",1977.320+1977.630,0.999986:C,"to","to",1977.630+1977.700,0.967920:C,"come","come",1977.700+1977.860,0.999915:C,"back","back",1977.860+1978.140,0.999916:D,"to",,,:D,"jersey",,,:C,"to","to",1978.140+1978.200,0.797139:D,"go",,,:S,"to","jurors",1978.200+1978.680,0.844664:S,"my","sure",1979.240+1979.420,0.984728:S,"unemployment","it",1979.420+1979.480,0.974943:S,"you","more",1979.480+1979.750,1.000000:S,"know","important",1979.750+1980.390,1.000000
</PATH>
<PATH id="(003-114)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2216" R_T1="1981.400" R_T2="1982.025" word_aux="h_t1+t2,h_conf">
S,"appointment","point",1981.500+1981.740,1.000000
</PATH>
</SPEAKER>
<SPEAKER id="001">
<PATH id="(001-024)" word_cnt="27" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1940" R_T1="1471.726" R_T2="1476.266" word_aux="h_t1+t2,h_conf">
D,"how",,,:S,"about","i",1471.850+1471.880,0.461610:S,"when","hope",1471.880+1472.090,0.485675:C,"you","you",1472.090+1472.215,0.431701:C,"were","were",1472.215+1472.340,0.431701:C,"actually","actually",1472.340+1472.700,0.972173:C,"when","when",1472.700+1472.830,0.972255:C,"you","you",1472.830+1472.890,0.999116:I,,"are",1472.890+1472.950,0.999116:C,"actually","actually",1472.950+1473.140,0.995655:D,"sleeping",,,:D,"in",,,:D,"your",,,:D,"tents",,,:S,"and","speaking",1473.140+1473.520,0.904820:S,"all","intention",1473.520+1473.990,0.642328:S,"that","of",1473.990+1474.140,0.885937:C,"anything","anything",1474.140+1474.500,0.999999:C,"interesting","interesting",1474.500+1474.850,1.000000:C,"happen","happen",1474.850+1475.250,1.000000:D,"did",,,:D,"you",,,:S,"ever","to",1475.250+1475.410,1.000000:C,"have","have",1475.410+1475.630,1.000000:C,"(%hesitation)","",,:C,"you","you",1475.860+1475.970,1.000000:C,"know","know",1475.970+1476.220,1.000000
</PATH>
<PATH id="(001-037)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2008" R_T1="1598.193" R_T2="1601.675" word_aux="h_t1+t2,h_conf">
S,"i","to",1598.340+1598.440,0.651901:C,"take","take",1598.440+1598.680,0.858978:D,"a",,,:S,"trolley","petralli",1598.680+1599.250,0.545822:C,"that","that",1599.250+1599.380,0.410084:C,"does","does",1599.380+1599.550,1.000000:C,"not","not",1599.550+1599.720,1.000000:C,"quite","quite",1599.790+1600.030,1.000000:D,"stop",,,:S,"very","stubborn",1600.030+1600.500,0.928352:C,"close","close",1600.540+1600.820,0.852932:D,"to",,,:C,"my","my",1600.820+1601.000,0.999961:C,"house","house",1601.000+1601.470,1.000000
</PATH>
<PATH id="(001-038)" word_cnt="23" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2009" R_T1="1601.798" R_T2="1607.409" word_aux="h_t1+t2,h_conf">
C,"and","and",1601.980+1602.070,0.999918:C,"then","then",1602.070+1602.180,0.997936:I,,"it",1602.180+1602.280,0.503125:S,"i","will",1602.280+1602.440,0.506422:S,"walk","not",1602.440+1602.600,0.506422:S,"the","be",1602.600+1602.690,0.506422:C,"extra","extra",1602.690+1603.030,1.000000:C,"half","half",1603.030+1603.250,0.995166:C,"mile","mile",1603.290+1603.770,0.910509:S,"and","times",1603.770+1604.210,0.470291:C,"i","i",1604.210+1604.380,0.535966:D,"have",,,:S,"to","walk",1604.380+1604.700,0.579074:C,"i","i",1605.500+1605.600,0.964955:S,"walk","will",1605.600+1605.750,0.969521:S,"%hesitation","not",1605.750+1605.900,0.969521:C,"(%hesitation)","",,:S,"along","for",1605.900+1606.010,0.875944:C,"(tr-)","",,:S,"along","the",1606.010+1606.090,0.842379:S,"trolley","long",1606.090+1606.260,0.851201:S,"tracks","contracts",1606.260+1606.880,0.552969:C,"actually","actually",1606.880+1607.240,1.000000
</PATH>
<PATH id="(001-039)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2010" R_T1="1607.681" R_T2="1611.218" word_aux="h_t1+t2,h_conf">
C,"and","and",1607.990+1608.340,1.000000:C,"(%hesitation)","",,:C,"i","i",1608.880+1609.020,0.980237:C,"do","do",1609.020+1609.120,0.980300:C,"this","this",1609.120+1609.240,0.998900:C,"all","all",1609.240+1609.350,0.999942:C,"the","the",1609.350+1609.410,0.999545:C,"time","time",1609.410+1609.690,0.999974:D,"i",,,:C,"actually","actually",1609.690+1609.970,0.996802:S,"walk","woke",1609.970+1610.210,0.850608:S,"on","all",1610.210+1610.380,0.852898:C,"the","the",1610.380+1610.450,0.860024:C,"tracks","tracks",1610.450+1611.120,1.000000
</PATH>
<PATH id="(001-042)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2014" R_T1="1616.864" R_T2="1620.503" word_aux="h_t1+t2,h_conf">
C,"and","and",1617.280+1617.560,1.000000:C,"(%hesitation)","",,:C,"about","about",1617.990+1618.270,0.761906:D,"actually",,,:D,"it",,,:S,"was","since",1618.660+1618.900,0.458172:C,"last","last",1618.900+1619.120,0.888282:C,"summer","summer",1619.120+1619.450,1.000000:S,"last","the",1619.450+1619.600,0.601913:C,"summer","summer",1619.600+1619.910,0.601913:D,"i",,,:S,"was","of",1619.910+1619.970,0.601913:C,"doing","doing",1619.970+1620.300,0.999567:C,"it","it",1620.300+1620.430,0.999567
</PATH>
<PATH id="(001-044)" word_cnt="24" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2019" R_T1="1627.675" R_T2="1632.825" word_aux="h_t1+t2,h_conf">
D,"but",,,:D,"he",,,:S,"had","we",1627.810+1627.890,0.624172:S,"a","have",1627.890+1628.130,0.682699:S,"funny","twenty",1628.130+1628.410,0.602185:C,"something","something",1628.620+1628.930,1.000000:C,"about","about",1628.930+1629.100,0.987151:D,"his",,,:S,"bark","as",1629.100+1629.230,0.979939:S,"that","part",1629.230+1629.540,0.992614:S,"made","of",1629.540+1629.650,0.999999:C,"me","me",1629.650+1629.900,0.818219:C,"stop","stop",1629.980+1630.330,0.642596:D,"and",,,:D,"freeze",,,:D,"and",,,:D,"i",,,:D,"looked",,,:D,"and",,,:D,"he",,,:S,"came","reasonable",1630.550+1631.380,0.990820:S,"after","have",1631.720+1631.970,0.415390:S,"me","to",1632.350+1632.530,0.415390:S,"right","like",1632.530+1632.730,0.607895
</PATH>
<PATH id="(001-045)" word_cnt="4" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2020" R_T1="1633.002" R_T2="1634.150" word_aux="h_t1+t2,h_conf">
C,"and","and",1633.130+1633.270,0.963967:C,"i","i",1633.270+1633.340,0.995476:C,"was","was",1633.340+1633.550,1.000000:C,"back","back",1633.550+1633.920,1.000000
</PATH>
<PATH id="(001-046)" word_cnt="12" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2021" R_T1="1634.396" R_T2="1637.743" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"i","i",1635.090+1635.180,1.000000:C,"was","was",1635.180+1635.350,1.000000:C,"back","back",1635.350+1635.590,1.000000:C,"behind","behind",1635.590+1635.940,1.000000:D,"somebody's",,,:S,"house","somebody",1635.940+1636.210,0.973635:S,"walking","possible",1636.210+1636.620,0.936819:S,"along","to",1636.620+1636.680,0.447809:S,"the","cologne",1636.680+1636.890,0.341942:C,"trolley","trolley",1636.890+1637.160,0.999966:C,"tracks","tracks",1637.160+1637.660,0.999993
</PATH>
<PATH id="(001-047)" word_cnt="9" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2022" R_T1="1637.865" R_T2="1640.500" word_aux="h_t1+t2,h_conf">
C,"so","so",1637.970+1638.310,1.000000:C,"he","he",1638.440+1638.600,0.973851:S,"was","is",1638.600+1638.760,0.973851:C,"(s-)","sort",1639.170+1639.410,0.891927:C,"(threa-)","",,:D,"kind",,,:C,"of","of",1639.410+1639.470,0.891927:I,,"scum",1639.470+1639.790,0.536847:C,"threatening","threatening",1639.790+1640.280,0.985147
</PATH>
<PATH id="(001-048)" word_cnt="15" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2023" R_T1="1640.654" R_T2="1644.701" word_aux="h_t1+t2,h_conf">
C,"so","so",1640.750+1640.910,1.000000:C,"i","i",1640.910+1641.150,1.000000:C,"instead","instead",1641.300+1641.770,1.000000:I,,"of",1641.770+1641.830,0.999992:S,"i","one",1641.830+1642.060,0.581739:S,"went","of",1642.060+1642.120,0.581730:S,"around","rounds",1642.120+1642.730,0.997944:S,"the","to",1642.810+1642.910,1.000000:S,"trolley","try",1642.910+1643.230,0.999820:S,"tracks","traps",1643.230+1643.590,0.899697:C,"and","and",1643.590+1643.680,0.900808:C,"walked","walked",1643.680+1643.920,0.596493:C,"down","down",1643.920+1644.110,1.000000:C,"the","the",1644.110+1644.170,1.000000:C,"street","street",1644.170+1644.700,0.999718
</PATH>
<PATH id="(001-049)" word_cnt="7" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2024" R_T1="1644.871" R_T2="1646.827" word_aux="h_t1+t2,h_conf">
S,"the","to",1644.990+1645.100,0.999716:C,"street","street",1645.100+1645.450,0.999999:C,"and","and",1645.450+1645.610,0.999716:S,"trolley","try",1645.610+1645.840,1.000000:S,"tracks","structure",1645.840+1646.160,1.000000:S,"run","in",1646.160+1646.260,0.999968:C,"parallel","parallel",1646.260+1646.730,1.000000
</PATH>
<PATH id="(001-050)" word_cnt="29" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2025" R_T1="1647.031" R_T2="1652.898" word_aux="h_t1+t2,h_conf">
I,,"as",1647.230+1647.350,0.999982:S,"and","long",1647.350+1647.550,0.999982:S,"was","as",1647.550+1647.680,0.999982:S,"walking","they",1647.680+1647.910,1.000000:S,"there","are",1647.910+1648.070,1.000000:S,"and","in",1648.070+1648.190,1.000000:C,"the","the",1648.190+1648.270,1.000000:C,"same","same",1648.330+1648.530,1.000000:D,"dog",,,:S,"who","boat",1648.530+1648.860,1.000000:C,"was","was",1648.860+1649.010,1.000000:C,"kind","kind",1649.010+1649.180,1.000000:C,"of","of",1649.180+1649.240,1.000000:S,"threatening","threading",1649.240+1649.610,1.000000:C,"ran","ran",1649.670+1649.940,1.000000:C,"between","between",1649.940+1650.350,1.000000:C,"the","the",1650.350+1650.440,1.000000:I,,"how",1650.440+1650.770,0.999999:S,"houses","much",1650.860+1651.090,0.999999:S,"like","of",1651.090+1651.250,0.999999:S,"jumped","that",1651.250+1651.370,0.999999:S,"over","was",1651.370+1651.470,0.999999:C,"the","the",1651.470+1651.570,1.000000:D,"fences",,,:D,"and",,,:S,"came","best",1651.570+1651.830,0.999999:S,"right","they",1651.830+1651.940,1.000000:S,"at","can",1652.080+1652.250,1.000000:S,"me","break",1652.250+1652.480,0.999961
</PATH>
<PATH id="(001-056)" word_cnt="2" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2037" R_T1="1673.077" R_T2="1674.018" word_aux="h_t1+t2,h_conf">
C,"and","and",1673.130+1673.480,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(001-057)" word_cnt="23" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2038" R_T1="1674.103" R_T2="1678.524" word_aux="h_t1+t2,h_conf">
D,"finally",,,:S,"the","funded",1674.260+1674.690,1.000000:S,"somebody","something",1674.750+1674.980,0.999893:C,"came","came",1674.980+1675.190,1.000000:C,"out","out",1675.190+1675.290,1.000000:C,"of","of",1675.290+1675.350,1.000000:C,"the","the",1675.350+1675.410,1.000000:C,"house","house",1675.410+1675.820,1.000000:D,"it",,,:S,"was","is",1675.820+1675.980,1.000000:S,"his","so",1675.980+1676.160,0.793918:S,"owner","it",1676.160+1676.320,1.000000:C,"turns","turns",1676.320+1676.640,1.000000:C,"out","out",1676.720+1676.930,1.000000:D,"and",,,:D,"he",,,:D,"yells",,,:S,"at","that",1676.930+1677.060,1.000000:S,"him","you",1677.060+1677.160,1.000000:S,"come","do",1677.160+1677.260,1.000000:S,"here","not",1677.260+1677.360,1.000000:S,"come","near",1677.610+1677.950,1.000000:S,"here","near",1678.210+1678.450,1.000000
</PATH>
<PATH id="(001-107)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2266" R_T1="1454.925" R_T2="1455.425" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(001-117)" word_cnt="9" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2296" R_T1="1510.125" R_T2="1512.250" word_aux="h_t1+t2,h_conf">
D,"what",,,:D,"would",,,:D,"you",,,:D,"what",,,:D,"would",,,:D,"you",,,:S,"say","to",1510.880+1510.970,0.969916:S,"is","reduce",1511.400+1511.800,0.968854:C,"the","the",1511.800+1511.920,0.968855
</PATH>
<PATH id="(001-118)" word_cnt="9" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2297" R_T1="1513.125" R_T2="1516.025" word_aux="h_t1+t2,h_conf">
C,"best","best",1513.280+1513.640,0.744921:C,"way","way",1513.640+1513.820,0.445845:C,"to","to",1513.820+1513.900,0.627784:I,,"do",1513.900+1514.010,0.470965:S,"become","come",1514.010+1514.400,0.896775:S,"roundly","round",1514.400+1514.700,0.896775:S,"informed","form",1514.940+1515.370,0.267887:S,"and","to",1515.370+1515.470,0.675018:S,"not","mmm",1515.470+1515.590,0.528030
</PATH>
<PATH id="(001-126)" word_cnt="10" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2322" R_T1="1556.700" R_T2="1559.775" word_aux="h_t1+t2,h_conf">
S,"which","this",1556.790+1556.950,0.415640:C,"one","one",1556.950+1557.110,0.873768:C,"which","which",1557.110+1557.460,0.999403:C,"newspapers","newspapers",1557.460+1558.020,0.999896:S,"radio","word",1558.400+1558.510,0.844288:C,"programs","programs",1558.510+1559.140,0.988502:D,"do",,,:D,"you",,,:D,"listen",,,:D,"to",,,
</PATH>
</SPEAKER>
<SPEAKER id="004">
<PATH id="(004-000)" word_cnt="19" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2219" R_T1="1360.675" R_T2="1364.800" word_aux="h_t1+t2,h_conf">
C,"there","there",1360.860+1360.980,0.701635:C,"is","is",1360.980+1361.070,0.736611:C,"a","a",1361.070+1361.130,0.999928:C,"lot","lot",1361.130+1361.430,0.999946:C,"more","more",1361.430+1361.680,1.000000:C,"interesting","interesting",1361.680+1362.090,1.000000:S,"that","than",1362.090+1362.220,0.965311:C,"americans","americans",1362.290+1362.730,0.863348:D,"do",,,:D,"not",,,:D,"even",,,:D,"know",,,:D,"anything",,,:S,"about","i",1363.000+1363.100,0.840136:S,"like","think",1363.250+1363.400,0.839616:S,"there","that",1363.400+1363.630,0.995220:S,"is","do",1364.060+1364.150,0.347521:C,"something","something",1364.150+1364.480,1.000000:S,"called","cool",1364.480+1364.820,1.000000
</PATH>
<PATH id="(004-001)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2220" R_T1="1365.025" R_T2="1366.500" word_aux="h_t1+t2,h_conf">
S,"everybody","air",1365.110+1365.260,0.959411:S,"has","pressure",1365.260+1365.620,0.969985:S,"heard","down",1365.620+1365.920,0.924812:S,"now","you",1365.920+1366.050,0.965076:S,"of","can",1366.050+1366.140,0.861221:S,"unocal","tell",1366.140+1366.480,0.964694
</PATH>
<PATH id="(004-004)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2226" R_T1="1377.050" R_T2="1380.000" word_aux="h_t1+t2,h_conf">
C,"and","and",1377.270+1377.370,0.958880:C,"it","it",1377.370+1377.480,0.753711:C,"was","was",1377.480+1377.620,0.555025:S,"their","there",1377.620+1377.810,0.488349:C,"pipeline","pipeline",1377.810+1378.410,0.932242:C,"supposedly","supposedly",1378.410+1379.160,1.000000:D,"well",,,:D,"they",,,:S,"had","have",1379.160+1379.260,0.504467:C,"a","a",1379.260+1379.310,0.790602:C,"partner","partner",1379.310+1379.840,0.855304
</PATH>
<PATH id="(004-005)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2227" R_T1="1380.575" R_T2="1382.750" word_aux="h_t1+t2,h_conf">
S,"partner","part",1380.720+1381.010,0.481587:S,"was","of",1381.060+1381.140,0.205844:C,"something","something",1381.140+1381.480,0.999982:I,,"cold",1381.480+1381.800,0.999517:I,,"held",1381.800+1382.080,0.781839:S,"called","up",1382.080+1382.270,0.896888:S,"delta","a",1382.270+1382.320,0.917198:S,"oil","while",1382.320+1382.640,0.935480
</PATH>
<PATH id="(004-007)" word_cnt="9" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2230" R_T1="1385.400" R_T2="1387.950" word_aux="h_t1+t2,h_conf">
D,"delta",,,:S,"oil","build",1385.470+1385.790,0.998668:S,"is","up",1385.790+1385.900,0.680597:C,"a","a",1385.900+1385.980,0.497610:I,,"about",1385.980+1386.380,0.421562:I,,"the",1386.600+1386.700,0.999907:I,,"following",1386.700+1387.090,1.000000:S,"saudi","week",1387.090+1387.280,0.726507:S,"firm","for",1387.280+1387.660,0.906409
</PATH>
<PATH id="(004-008)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2231" R_T1="1388.625" R_T2="1389.125" word_aux="h_t1+t2,h_conf">
C,"o.","o.",1388.740+1388.915,0.812259:C,"k.","k.",1388.915+1389.090,0.812259
</PATH>
<PATH id="(004-009)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2232" R_T1="1389.575" R_T2="1391.700" word_aux="h_t1+t2,h_conf">
C,"and","and",1389.690+1390.130,0.999899:C,"nobody","nobody",1390.130+1390.510,1.000000:C,"knows","knows",1390.510+1390.750,1.000000:C,"who","who",1390.750+1390.910,0.633754:C,"they","they",1390.910+1391.070,1.000000:C,"are","are",1391.070+1391.370,0.999036:S,"oh","out",1391.420+1391.640,0.766116
</PATH>
<PATH id="(004-013)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2238" R_T1="1401.025" R_T2="1402.925" word_aux="h_t1+t2,h_conf">
D,"yet",,,:D,"they",,,:S,"are","yeah",1401.140+1401.250,0.984071:S,"one","there",1401.340+1401.540,0.571003:S,"of","was",1401.540+1401.780,0.546437:S,"the","a",1401.780+1401.830,0.655706:C,"significant","significant",1401.830+1402.400,1.000000:S,"partners","part",1402.400+1402.760,0.941199
</PATH>
<PATH id="(004-014)" word_cnt="15" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2239" R_T1="1403.475" R_T2="1406.250" word_aux="h_t1+t2,h_conf">
C,"and","and",1403.670+1403.860,1.000000:C,"it","it",1403.860+1403.935,0.838215:C,"is","is",1403.935+1404.010,0.838215:C,"a","a",1404.010+1404.040,0.391256:D,"saudi",,,:S,"firm","sony",1404.040+1404.400,0.474700:S,"there","from",1404.400+1404.660,0.999643:S,"are","your",1404.660+1404.820,0.833700:C,"fifty","fifty",1404.820+1405.170,1.000000:C,"people","people",1405.170+1405.520,1.000000:C,"that","that",1405.520+1405.630,0.904900:D,"is",,,:S,"all","so",1405.630+1405.820,0.905124:C,"we","we",1405.820+1405.930,1.000000:C,"know","know",1405.930+1406.230,0.846161
</PATH>
<PATH id="(004-015)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2240" R_T1="1406.525" R_T2="1407.975" word_aux="h_t1+t2,h_conf">
C,"fifty","fifty",1406.630+1406.890,0.997431:C,"people","people",1406.890+1407.250,1.000000:D,"in",,,:S,"delta","and",1407.250+1407.390,0.929127:S,"oil","also",1407.390+1407.770,0.571862
</PATH>
<PATH id="(004-016)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2241" R_T1="1408.400" R_T2="1409.625" word_aux="h_t1+t2,h_conf">
C,"and","and",1408.490+1408.650,0.860583:I,,"it",1408.650+1408.750,0.675333:S,"(%hesitation)","interesting",1408.750+1409.290,0.582481:S,"interestingly","late",1409.290+1409.590,0.986764
</PATH>
<PATH id="(004-017)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2242" R_T1="1410.125" R_T2="1412.225" word_aux="h_t1+t2,h_conf">
C,"one","one",1410.300+1410.530,1.000000:C,"of","of",1410.530+1410.600,0.996670:C,"the","the",1410.600+1410.670,0.958286:D,"guys",,,:D,"a",,,:S,"fellow","nice",1410.670+1411.170,0.911431:S,"named","coming",1411.290+1411.680,0.970475:S,"ritchie","richie",1411.680+1412.210,0.999196
</PATH>
<PATH id="(004-018)" word_cnt="12" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2243" R_T1="1412.725" R_T2="1415.700" word_aux="h_t1+t2,h_conf">
D,"who",,,:S,"is","whose",1412.860+1413.090,0.168984:S,"apparently","stern",1413.090+1413.460,0.406695:C,"i","i",1413.460+1413.610,0.887223:C,"did","did",1413.610+1413.690,0.818124:C,"not","not",1413.690+1413.770,0.818124:C,"know","know",1413.770+1413.970,0.999675:C,"anything","anything",1413.970+1414.270,0.999984:S,"until","to",1414.270+1414.370,0.891394:S,"this","the",1414.490+1414.550,0.963272:S,"surfaced","surfers",1414.550+1415.030,0.826947:C,"(%hesitation)","",,
</PATH>
<PATH id="(004-019)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2244" R_T1="1415.950" R_T2="1417.416" word_aux="h_t1+t2,h_conf">
S,"some","so",1416.040+1416.180,0.504901:C,"multi","multi",1416.180+1416.510,0.860710:I,,"millionaire",1416.510+1417.160,0.500086:S,"millionaires","is",1417.160+1417.290,0.554908
</PATH>
<PATH id="(004-020)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2245" R_T1="1418.025" R_T2="1420.550" word_aux="h_t1+t2,h_conf">
C,"in","in",1418.170+1418.260,0.473507:C,"chicago","chicago",1418.260+1419.040,0.493346:C,"who","who",1419.360+1419.490,0.388271:S,"financed","finance",1419.490+1420.360,1.000000
</PATH>
<PATH id="(004-021)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2246" R_T1="1421.825" R_T2="1423.781" word_aux="h_t1+t2,h_conf">
I,,"oh",1421.960+1422.030,0.407998:C,"very","very",1422.030+1422.290,1.000000:C,"involved","involved",1422.290+1422.650,1.000000:C,"in","in",1422.650+1422.740,0.999950:C,"afghanistan","afghanistan",1422.740+1423.490,1.000000
</PATH>
<PATH id="(004-022)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2247" R_T1="1424.850" R_T2="1425.900" word_aux="h_t1+t2,h_conf">
S,"financed","finance",1425.190+1425.680,0.999997
</PATH>
<PATH id="(004-030)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2263" R_T1="1450.550" R_T2="1451.600" word_aux="h_t1+t2,h_conf">
C,"the","the",1450.580+1450.690,0.998410:C,"money","money",1450.690+1450.990,0.999943:C,"came","came",1450.990+1451.550,1.000000
</PATH>
<PATH id="(004-031)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2264" R_T1="1451.825" R_T2="1453.275" word_aux="h_t1+t2,h_conf">
C,"from","from",1451.900+1452.050,0.951274:C,"this","this",1452.050+1452.230,0.785215:S,"person","first",1452.230+1452.490,0.733254:S,"named","name",1452.490+1452.740,0.841822:S,"ritchie","richie",1452.740+1453.140,0.727080
</PATH>
<PATH id="(004-032)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2265" R_T1="1453.975" R_T2="1454.825" word_aux="h_t1+t2,h_conf">
I,,"you",1454.010+1454.090,0.355561:S,"in","caught",1454.250+1454.580,0.695631:S,"chicago","up",1454.580+1454.790,0.695218
</PATH>
<PATH id="(004-033)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2267" R_T1="1455.700" R_T2="1457.975" word_aux="h_t1+t2,h_conf">
C,"all","all",1455.880+1455.940,0.594610:C,"right","right",1455.940+1456.310,0.663354:S,"who","too",1456.700+1457.200,0.731806:C,"is","is",1457.600+1457.910,0.999241
</PATH>
<PATH id="(004-034)" word_cnt="21" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2268" R_T1="1458.500" R_T2="1462.775" word_aux="h_t1+t2,h_conf">
C,"was","was",1458.580+1458.830,0.534404:S,"(know-)","no",1458.830+1459.030,0.883741:C,"is","is",1459.030+1459.170,0.962728:C,"known","known",1459.170+1459.420,0.863221:D,"to",,,:D,"the",,,:C,"state","state",1459.420+1459.830,0.999685:C,"department","department",1459.830+1460.270,1.000000:D,"they",,,:S,"said","visit",1460.270+1460.530,0.999685:C,"oh","oh",1460.530+1460.610,0.742523:C,"that","that",1460.610+1460.720,0.981093:C,"is","is",1460.720+1460.830,0.981093:C,"fine","fine",1460.830+1461.130,0.981893:D,"there",,,:D,"is",,,:C,"no","no",1461.620+1461.760,0.944776:C,"problem","problem",1461.760+1462.150,0.999269:S,"there","it",1462.150+1462.320,0.442805:S,"they","i",1462.320+1462.450,0.946213:S,"said","say",1462.450+1462.730,0.996735
</PATH>
<PATH id="(004-035)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2269" R_T1="1463.125" R_T2="1463.975" word_aux="h_t1+t2,h_conf">
S,"ritchie","richie",1463.310+1463.880,0.938827
</PATH>
<PATH id="(004-036)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2270" R_T1="1464.575" R_T2="1467.325" word_aux="h_t1+t2,h_conf">
C,"shared","shared",1464.810+1465.250,0.830487:C,"a","a",1465.250+1465.330,0.997414:C,"lobbyist","lobbyist",1465.330+1466.060,0.661803:I,,"the",1466.320+1466.430,0.860921:I,,"build",1466.430+1466.700,0.676502:S,"with","a",1466.700+1466.730,0.981255:S,"delta","little",1466.730+1466.960,0.978197:S,"oil","while",1466.960+1467.240,0.994132
</PATH>
<PATH id="(004-039)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2276" R_T1="1474.250" R_T2="1475.943" word_aux="h_t1+t2,h_conf">
C,"you","you",1474.310+1474.480,0.999599:C,"think","think",1474.480+1474.680,1.000000:D,"they",,,:D,"are",,,:D,"exploring",,,:S,"any","there",1474.680+1474.910,0.476002:S,"of","in",1475.360+1475.450,0.714532:S,"that","it",1475.520+1475.580,0.696615
</PATH>
<PATH id="(004-059)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2333" R_T1="1573.900" R_T2="1574.998" word_aux="h_t1+t2,h_conf">
D,"so",,,:C,"you","you",1574.050+1574.200,0.988056:C,"begin","begin",1574.200+1574.490,0.929433:C,"with","with",1574.490+1574.640,0.998547:C,"that","that",1574.640+1574.890,1.000000
</PATH>
<PATH id="(004-064)" word_cnt="12" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2345" R_T1="1591.925" R_T2="1594.550" word_aux="h_t1+t2,h_conf">
C,"that","that",1592.010+1592.155,0.935653:C,"is","is",1592.155+1592.300,0.935653:C,"what","what",1592.300+1592.400,0.666596:C,"i","i",1592.400+1592.520,0.999701:C,"really","really",1592.520+1592.740,0.999614:C,"do","do",1592.740+1592.830,1.000000:C,"not","not",1592.830+1592.920,1.000000:C,"understand","understand",1592.920+1593.530,1.000000:C,"that","that",1593.690+1593.820,0.803138:C,"people","people",1593.820+1594.100,1.000000:S,"could","can",1594.100+1594.280,0.950640:C,"so","so",1594.280+1594.500,0.946499
</PATH>
<PATH id="(004-065)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2346" R_T1="1594.850" R_T2="1596.155" word_aux="h_t1+t2,h_conf">
C,"easily","easily",1594.920+1595.430,0.999986:S,"accept","extract",1595.430+1595.970,0.719608
</PATH>
<PATH id="(004-067)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2349" R_T1="1599.050" R_T2="1601.568" word_aux="h_t1+t2,h_conf">
C,"you","you",1599.120+1599.240,1.000000:C,"know","know",1599.240+1599.580,1.000000:C,"as","as",1599.580+1599.700,0.495980:C,"gospel","gospel",1599.700+1600.170,1.000000:C,"truth","truth",1600.170+1600.680,0.998766:C,"you","you",1600.680+1600.800,0.754272:I,,"could",1600.800+1601.030,0.958272:S,"know","not",1601.030+1601.210,0.957949
</PATH>
<PATH id="(004-068)" word_cnt="13" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2350" R_T1="1601.600" R_T2="1604.125" word_aux="h_t1+t2,h_conf">
S,"and","ask",1601.930+1602.030,0.507558:C,"you","you",1602.030+1602.150,1.000000:C,"would","would",1602.150+1602.320,1.000000:C,"think","think",1602.320+1602.510,0.999997:C,"they","they",1602.510+1602.680,0.999999:D,"would",,,:S,"say","said",1602.680+1602.870,0.999997:C,"well","well",1602.870+1603.090,1.000000:C,"i","i",1603.090+1603.230,0.999988:C,"do","do",1603.230+1603.310,0.999047:C,"not","not",1603.310+1603.390,0.999047:C,"really","really",1603.390+1603.680,1.000000:C,"know","know",1603.680+1604.090,0.999927
</PATH>
<PATH id="(004-069)" word_cnt="18" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2351" R_T1="1604.350" R_T2="1608.455" word_aux="h_t1+t2,h_conf">
C,"what","what",1604.450+1604.630,0.931353:D,"is",,,:S,"happening","happened",1604.630+1605.050,0.768958:C,"but","but",1605.050+1605.330,0.869691:C,"we","we",1605.330+1605.510,0.991467:C,"know","know",1605.510+1605.850,0.777144:D,"they",,,:S,"are","it",1605.850+1605.950,0.487790:C,"not","not",1605.950+1606.140,0.776791:D,"telling",,,:S,"us","tell",1606.140+1606.340,0.872848:C,"the","the",1606.340+1606.410,0.933378:C,"whole","whole",1606.690+1606.910,0.999999:C,"truth","truth",1606.910+1607.320,0.999926:S,"or","for",1607.350+1607.520,0.480940:C,"it","it",1607.520+1607.600,0.993710:C,"seems","seems",1607.600+1608.000,0.999999:C,"like","like",1608.000+1608.390,1.000000
</PATH>
<PATH id="(004-070)" word_cnt="30" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2352" R_T1="1608.675" R_T2="1614.400" word_aux="h_t1+t2,h_conf">
C,"you","you",1608.750+1608.890,1.000000:C,"know","know",1608.890+1609.230,1.000000:I,,"i",1609.230+1609.390,0.523772:C,"i","i",1609.390+1609.430,0.952689:C,"i","i",1609.430+1609.800,0.883726:C,"heard","heard",1609.800+1610.030,1.000000:D,"this",,,:S,"or","the",1610.030+1610.150,0.963634:S,"heard","server",1610.150+1610.600,1.000000:C,"that","that",1610.600+1611.020,1.000000:D,"and",,,:C,"i","i",1611.020+1611.240,0.992912:C,"i","i",1611.240+1611.330,1.000000:C,"do","do",1611.330+1611.425,1.000000:C,"not","not",1611.425+1611.520,1.000000:C,"know","know",1611.520+1611.650,1.000000:C,"for","for",1611.650+1611.740,0.999579:C,"sure","sure",1611.740+1612.030,1.000000:C,"about","about",1612.030+1612.250,1.000000:C,"that","that",1612.250+1612.520,1.000000:D,"but",,,:C,"you","you",1612.910+1613.010,0.999933:C,"know","know",1613.010+1613.100,0.999940:C,"what","what",1613.100+1613.200,0.778075:C,"is","is",1613.200+1613.300,0.778075:C,"the","the",1613.300+1613.380,0.963767:C,"real","real",1613.380+1613.680,1.000000:D,"reasons",,,:S,"you","reason",1613.680+1614.080,0.963638:S,"are","sir",1614.080+1614.310,0.917055
</PATH>
<PATH id="(004-072)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2355" R_T1="1622.125" R_T2="1622.750" word_aux="h_t1+t2,h_conf">
C,"they","they",1622.290+1622.420,0.996520:C,"just","just",1622.420+1622.640,0.999898
</PATH>
<PATH id="(004-074)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2358" R_T1="1628.550" R_T2="1629.425" word_aux="h_t1+t2,h_conf">
I,,"oh",1628.720+1628.940,0.583205:S,"gullible","well",1628.940+1629.360,0.853487
</PATH>
<PATH id="(004-075)" word_cnt="12" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2359" R_T1="1630.275" R_T2="1633.400" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"know",,,:S,"that","yeah",1630.410+1630.640,0.834139:S,"is","i",1630.640+1630.720,0.906595:S,"the","i",1631.070+1631.170,0.991173:S,"thing","suspect",1631.320+1631.760,0.987594:C,"that","that",1631.760+1631.950,0.999011:C,"i","i",1631.950+1632.130,1.000000:C,"can","can",1632.130+1632.315,1.000000:C,"not","not",1632.315+1632.500,1.000000:C,"figure","figure",1632.500+1632.970,1.000000:C,"out","out",1633.140+1633.330,0.995554
</PATH>
<PATH id="(004-087)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2391" R_T1="1699.975" R_T2="1702.700" word_aux="h_t1+t2,h_conf">
C,"and","and",1700.040+1700.250,0.997106:S,"then","i",1700.250+1700.340,0.922004:C,"remember","remember",1700.340+1700.700,1.000000:C,"that","that",1700.700+1700.910,1.000000:C,"movie","movie",1700.910+1701.380,1.000000:C,"(%hesitation)","",,:S,"what","i",1701.380+1701.480,0.679002:S,"was","am",1701.480+1701.580,0.679002:S,"that","all",1701.580+1701.790,0.877792:S,"one","of",1701.790+1701.860,0.625888:S,"(%hesitation)","someone",1701.860+1702.420,0.999975
</PATH>
<PATH id="(004-088)" word_cnt="9" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2392" R_T1="1703.050" R_T2="1704.775" word_aux="h_t1+t2,h_conf">
D,"remember",,,:D,"where",,,:S,"he","you",1703.140+1703.280,1.000000:S,"wants","know",1703.280+1703.420,1.000000:S,"to","we",1703.420+1703.660,0.729792:S,"throw","lost",1703.660+1703.900,0.392109:S,"the","from",1703.900+1704.200,0.949505:C,"t.","t.",1704.200+1704.380,0.922819:C,"v.","v.",1704.380+1704.790,0.922819
</PATH>
<PATH id="(004-089)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2393" R_T1="1705.494" R_T2="1706.350" word_aux="h_t1+t2,h_conf">
D,"what",,,:S,"is","was",1705.690+1705.840,0.491958:C,"that","that",1705.840+1706.020,0.712185:C,"one","one",1706.020+1706.390,0.994531
</PATH>
<PATH id="(004-090)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2394" R_T1="1707.525" R_T2="1709.850" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"you",,,:D,"remember",,,:D,"he",,,:S,"wants","maybe",1708.180+1708.390,1.000000:S,"to","once",1708.390+1708.590,0.983114:S,"throw","a",1708.590+1708.630,0.982701:S,"the","true",1708.630+1708.970,0.990724:C,"t.","t.",1708.970+1709.190,0.999633:C,"v.","v.",1709.190+1709.570,0.999633:C,"like","like",1709.570+1709.780,1.000000
</PATH>
<PATH id="(004-096)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2418" R_T1="1765.525" R_T2="1766.200" word_aux="h_t1+t2,h_conf">
S,"why","woman",1765.630+1766.050,0.362799
</PATH>
<PATH id="(004-100)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2425" R_T1="1783.400" R_T2="1785.850" word_aux="h_t1+t2,h_conf">
C,"i","i",1783.640+1783.730,0.991018:C,"can","can",1783.730+1783.900,0.973485:C,"not","not",1783.900+1784.070,0.973485:C,"follow","follow",1784.070+1784.570,0.976007:C,"the","the",1784.730+1784.900,0.976727:C,"notion","notion",1784.900+1785.430,0.721998:C,"that","that",1785.430+1785.810,0.995725
</PATH>
<PATH id="(004-101)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2426" R_T1="1787.800" R_T2="1789.475" word_aux="h_t1+t2,h_conf">
S,"knowing","no",1787.870+1788.050,0.951584:S,"what","one",1788.050+1788.240,0.850209:S,"is","was",1788.240+1788.460,0.999638:C,"really","really",1788.550+1788.950,0.999999:C,"going","going",1788.950+1789.200,0.999800:C,"on","on",1789.200+1789.280,0.999958:I,,"and",1789.280+1789.470,1.000000
</PATH>
<PATH id="(004-102)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2427" R_T1="1790.750" R_T2="1791.775" word_aux="h_t1+t2,h_conf">
S,"is","in",1790.850+1791.060,0.704066:C,"(%hesitation)","",,
</PATH>
<PATH id="(004-103)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2428" R_T1="1792.850" R_T2="1793.575" word_aux="h_t1+t2,h_conf">
C,"(no)","",,:C,"(i)","",,:C,"(%hesitation)","",,
</PATH>
<PATH id="(004-104)" word_cnt="9" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2429" R_T1="1794.450" R_T2="1796.225" word_aux="h_t1+t2,h_conf">
S,"but","there",1794.540+1794.700,0.691597:S,"well","is",1794.700+1794.760,0.825720:S,"the","really",1794.760+1794.980,0.985217:C,"only","only",1794.980+1795.190,0.956490:D,"thing",,,:S,"i","that",1795.320+1795.430,0.423063:S,"could","to",1795.430+1795.530,0.489119:S,"see","say",1795.530+1795.790,0.981165:C,"is","is",1795.790+1796.130,0.988822
</PATH>
<PATH id="(004-110)" word_cnt="0" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2440" R_T1="1814.127" R_T2="1814.272" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(004-121)" word_cnt="9" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2458" R_T1="1845.325" R_T2="1846.943" word_aux="h_t1+t2,h_conf">
I,,"with",1845.450+1845.570,0.894729:S,"it","the",1845.570+1845.650,0.988112:S,"is","police",1845.650+1846.100,0.951599:C,"like","like",1846.390+1846.670,0.918322:D,"a",,,:D,"belief",,,:D,"system",,,:D,"i",,,:D,"guess",,,
</PATH>
<PATH id="(004-123)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2461" R_T1="1850.300" R_T2="1852.700" word_aux="h_t1+t2,h_conf">
C,"the","the",1850.460+1850.580,0.990930:C,"same","same",1850.580+1850.870,1.000000:C,"notion","notion",1850.870+1851.260,0.999889:C,"of","of",1851.260+1851.360,0.998784:C,"accepting","accepting",1851.360+1851.950,0.999334:S,"a","the",1851.950+1852.340,0.947173:C,"(r-)","",,
</PATH>
<PATH id="(004-128)" word_cnt="14" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2471" R_T1="1865.425" R_T2="1867.725" word_aux="h_t1+t2,h_conf">
S,"no","well",1865.590+1865.920,1.000000:S,"there","i",1865.920+1865.980,0.996696:S,"is","am",1865.980+1866.040,0.996696:S,"always","not",1866.040+1866.170,0.998157:C,"going","going",1866.170+1866.290,0.989609:C,"to","to",1866.290+1866.380,0.992604:C,"be","be",1866.420+1866.560,0.982078:D,"a",,,:D,"certain",,,:S,"per","searched",1866.560+1866.860,0.694345:S,"centage","sense",1866.860+1867.210,0.999909:C,"of","of",1867.210+1867.290,0.891203:S,"that","the",1867.290+1867.370,0.993832:C,"(and)","",,
</PATH>
<PATH id="(004-133)" word_cnt="0" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2480" R_T1="1879.765" R_T2="1879.897" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(004-134)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2481" R_T1="1880.225" R_T2="1882.050" word_aux="h_t1+t2,h_conf">
I,,"well",1880.400+1880.700,0.983172:S,"but","not",1880.700+1880.930,0.679620:C,"the","the",1880.970+1881.090,0.964828:C,"media","media",1881.090+1881.900,1.000000
</PATH>
<PATH id="(004-135)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2482" R_T1="1882.375" R_T2="1882.950" word_aux="h_t1+t2,h_conf">
D,"you",,,:C,"see","see",1882.580+1882.760,0.405113:S,"the","could",1882.760+1882.900,0.338968
</PATH>
<PATH id="(004-137)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2485" R_T1="1885.575" R_T2="1886.725" word_aux="h_t1+t2,h_conf">
C,"no","no",1885.700+1885.980,0.892990:D,"it",,,:D,"is",,,:D,"the",,,:D,"other",,,:S,"way","still",1885.980+1886.210,0.707703:S,"around","grabs",1886.210+1886.670,0.437362
</PATH>
<PATH id="(004-138)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2487" R_T1="1887.575" R_T2="1888.975" word_aux="h_t1+t2,h_conf">
C,"the","the",1887.770+1887.900,0.892835:C,"media","media",1887.900+1888.180,0.887263:C,"creates","creates",1888.180+1888.620,0.809539:C,"that","that",1888.620+1888.860,0.690016
</PATH>
<PATH id="(004-140)" word_cnt="13" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2491" R_T1="1893.925" R_T2="1899.050" word_aux="h_t1+t2,h_conf">
C,"the","the",1894.050+1894.200,0.987628:C,"information","information",1894.200+1894.920,1.000000:S,"that","but",1895.220+1895.630,0.999995:C,"i","i",1895.870+1896.020,1.000000:C,"am","am",1896.020+1896.170,1.000000:C,"saying","saying",1896.170+1896.690,1.000000:S,"is","if",1896.690+1896.790,0.910735:C,"information","information",1896.790+1897.560,1.000000:C,"that","that",1897.560+1897.680,0.706151:C,"is","is",1897.680+1897.780,0.381494:I,,"poppy",1897.780+1898.130,0.644466:S,"obviously","seeds",1898.130+1898.400,0.625521:C,"available","available",1898.400+1899.010,1.000000
</PATH>
<PATH id="(004-141)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2492" R_T1="1900.125" R_T2="1902.575" word_aux="h_t1+t2,h_conf">
C,"i","i",1900.360+1900.470,0.988056:C,"am","am",1900.470+1900.550,0.784591:C,"not","not",1900.550+1900.700,0.929426:C,"a","a",1900.700+1900.750,0.911561:C,"c.","c.",1900.750+1901.000,0.470915:D,"i.",,,:S,"a.","h.",1901.000+1901.460,0.471982:S,"agent","and",1901.460+1901.570,0.229192
</PATH>
<PATH id="(004-142)" word_cnt="15" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2493" R_T1="1902.750" R_T2="1905.775" word_aux="h_t1+t2,h_conf">
C,"and","and",1902.860+1903.010,0.997301:C,"it","it",1903.010+1903.090,0.890320:C,"is","is",1903.090+1903.170,0.890320:C,"not","not",1903.170+1903.410,1.000000:C,"in","in",1903.410+1903.470,0.885847:C,"other","other",1903.470+1903.630,0.885882:C,"words","words",1903.630+1903.840,0.885868:C,"it","it",1903.840+1903.895,0.890485:C,"is","is",1903.895+1903.950,0.890485:C,"information","information",1903.950+1904.650,0.999685:D,"that",,,:D,"is",,,:C,"on","on",1904.770+1905.040,1.000000:C,"the","the",1905.040+1905.160,1.000000:C,"net","net",1905.160+1905.470,1.000000
</PATH>
<PATH id="(004-143)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2494" R_T1="1906.100" R_T2="1908.750" word_aux="h_t1+t2,h_conf">
C,"and","and",1906.230+1906.380,0.976400:C,"available","available",1906.380+1907.020,1.000000:C,"in","in",1907.020+1907.170,1.000000:C,"international","international",1907.170+1907.940,1.000000:C,"sources","sources",1907.940+1908.570,1.000000
</PATH>
<PATH id="(004-146)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2498" R_T1="1917.425" R_T2="1918.569" word_aux="h_t1+t2,h_conf">
I,,"use",1917.610+1917.900,0.646744:S,"news","a",1917.900+1917.940,0.646744:C,"outlets","outlets",1917.940+1918.550,0.999425
</PATH>
<PATH id="(004-147)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2499" R_T1="1919.325" R_T2="1920.100" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(004-151)" word_cnt="41" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2506" R_T1="1926.650" R_T2="1935.350" word_aux="h_t1+t2,h_conf">
C,"they","they",1926.830+1926.970,0.847692:C,"are","are",1926.970+1927.110,0.847692:D,"in",,,:S,"other","not",1927.110+1927.310,0.833839:S,"forms","forced",1927.420+1927.720,0.807796:S,"too","to",1927.720+1927.890,0.872364:C,"if","if",1927.890+1927.990,0.815369:C,"i","i",1927.990+1928.080,0.856954:C,"had","had",1928.080+1928.320,0.855969:D,"the",,,:C,"if","if",1928.600+1928.760,0.999949:C,"i","i",1928.760+1928.810,1.000000:S,"had","have",1928.810+1928.970,1.000000:S,"the","a",1928.970+1929.020,1.000000:C,"hard","hard",1929.020+1929.250,1.000000:C,"copies","copies",1929.250+1929.700,0.575283:C,"of","of",1929.760+1929.820,0.575283:C,"these","these",1929.880+1929.990,1.000000:C,"papers","papers",1929.990+1930.470,1.000000:C,"you","you",1930.870+1931.030,1.000000:C,"know","know",1931.030+1931.090,1.000000:C,"(y-)","",,:C,"like","like",1931.090+1931.250,1.000000:S,"the","must",1931.250+1931.610,0.864847:S,"moscow","at",1931.610+1931.760,0.809330:C,"times","times",1931.760+1932.150,0.999930:D,"the",,,:C,"b.","b.",1932.150+1932.360,0.997745:C,"b.","b.",1932.360+1932.460,0.997745:C,"c.","c.",1932.460+1932.900,0.997745:D,"and",,,:C,"things","things",1932.950+1933.200,1.000000:C,"like","like",1933.200+1933.380,1.000000:C,"that","that",1933.380+1933.590,1.000000:C,"and","and",1933.590+1933.800,0.999688:C,"and","and",1933.860+1934.120,1.000000:C,"some","some",1934.180+1934.340,1.000000:C,"of","of",1934.340+1934.400,1.000000:C,"the","the",1934.400+1934.530,1.000000:D,"and",,,:C,"books","books",1934.990+1935.320,0.999006
</PATH>
<PATH id="(004-154)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2511" R_T1="1946.525" R_T2="1947.500" word_aux="h_t1+t2,h_conf">
C,"it","it",1946.610+1946.730,0.707247:C,"is","is",1946.730+1946.850,0.707247:I,,"a",1946.850+1946.930,0.745707:I,,"blow",1946.930+1947.250,0.980060:S,"abroad","up",1947.250+1947.440,0.981051
</PATH>
<PATH id="(004-156)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2514" R_T1="1952.125" R_T2="1955.075" word_aux="h_t1+t2,h_conf">
C,"and","and",1952.290+1952.720,0.999999:S,"in","and",1952.720+1953.000,0.773285:C,"perhaps","perhaps",1953.000+1953.430,0.763441:C,"what","what",1953.430+1953.590,0.796476:C,"you","you",1953.590+1953.750,0.612898:S,"call","cold",1953.750+1954.090,0.543658:C,"very","very",1954.090+1954.620,0.989956:C,"(%hesitation)","",,
</PATH>
<PATH id="(004-157)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2515" R_T1="1955.650" R_T2="1958.331" word_aux="h_t1+t2,h_conf">
C,"very","very",1955.920+1956.200,0.717170:S,"marginalized","marginalize",1956.200+1957.120,0.607160:C,"publications","publications",1957.120+1957.850,0.994393:C,"i","i",1957.850+1957.910,0.968107:C,"guess","guess",1957.910+1958.290,0.973669
</PATH>
<PATH id="(004-160)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2520" R_T1="1965.800" R_T2="1968.400" word_aux="h_t1+t2,h_conf">
S,"the","see",1966.090+1966.360,0.569047:C,"the","the",1966.560+1966.670,0.928519:C,"point","point",1966.670+1967.020,0.943182:C,"is","is",1967.130+1967.240,0.864199:C,"our","our",1967.470+1967.800,0.621060:C,"media","media",1967.800+1968.250,0.987464
</PATH>
<PATH id="(004-163)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2525" R_T1="1977.200" R_T2="1979.725" word_aux="h_t1+t2,h_conf">
C,"are","are",1977.300+1977.500,0.564358:C,"intentionally","intentionally",1977.500+1978.260,0.986994:C,"of","of",1978.260+1978.350,1.000000:C,"course","course",1978.350+1978.870,1.000000:C,"not","not",1979.190+1979.590,0.998634
</PATH>
<PATH id="(004-164)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2526" R_T1="1980.025" R_T2="1981.875" word_aux="h_t1+t2,h_conf">
I,,"well",1980.220+1980.510,0.991412:S,"dwelling","i",1980.510+1980.550,0.879041:S,"on","know",1980.550+1980.720,0.637139:C,"this","this",1980.720+1980.930,0.999245:C,"information","information",1980.930+1981.700,1.000000
</PATH>
<PATH id="(004-165)" word_cnt="14" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2527" R_T1="1982.175" R_T2="1986.045" word_aux="h_t1+t2,h_conf">
D,"they",,,:D,"are",,,:C,"are","are",1982.420+1982.650,0.328681:S,"squashing","scorching",1982.650+1983.240,0.999837:C,"this","this",1983.240+1983.430,0.999317:C,"information","information",1983.430+1984.120,0.851077:S,"as","is",1984.120+1984.210,0.806424:S,"best","but",1984.210+1984.400,0.828029:S,"as","this",1984.400+1984.560,0.727546:C,"possible","possible",1984.560+1985.010,0.999999:C,"whenever","whenever",1985.010+1985.370,0.675015:D,"it",,,:C,"pops","pops",1985.370+1985.700,0.994889:C,"up","up",1985.700+1985.930,0.892485
</PATH>
<PATH id="(004-166)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2528" R_T1="1986.725" R_T2="1988.213" word_aux="h_t1+t2,h_conf">
C,"the","the",1986.910+1987.080,0.964004:C,"official","official",1987.080+1987.480,0.997334:I,,"so",1987.480+1987.650,1.000000:S,"sources","what",1987.650+1987.820,1.000000
</PATH>
<PATH id="(004-167)" word_cnt="14" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2529" R_T1="1988.625" R_T2="1992.650" word_aux="h_t1+t2,h_conf">
D,"all",,,:D,"right",,,:C,"all","all",1989.070+1989.370,0.596343:C,"the","the",1989.370+1989.570,0.544396:D,"official",,,:S,"sources","officials",1989.570+1990.080,0.544367:S,"we","those",1990.080+1990.280,0.938707:S,"would","sweet",1990.460+1990.780,0.954517:S,"say","set",1990.780+1990.970,0.832933:S,"of","up",1990.970+1991.120,0.832933:C,"which","which",1991.120+1991.350,1.000000:S,"our","are",1991.350+1991.610,0.860525:C,"major","major",1991.610+1991.960,1.000000:C,"media","media",1991.960+1992.590,1.000000
</PATH>
<PATH id="(004-168)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2530" R_T1="1992.825" R_T2="1995.390" word_aux="h_t1+t2,h_conf">
C,"outlets","outlets",1992.870+1993.350,1.000000:C,"are","are",1993.420+1993.780,0.997237:D,"a",,,:C,"part","part",1993.780+1994.160,1.000000:C,"of","of",1994.160+1994.240,1.000000:C,"our","our",1994.240+1994.530,1.000000:S,"official","first",1994.530+1994.880,0.999758:S,"sources","saw",1994.880+1995.130,0.419911
</PATH>
<PATH id="(004-169)" word_cnt="12" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2531" R_T1="1995.650" R_T2="1998.300" word_aux="h_t1+t2,h_conf">
D,"the",,,:D,"presumption",,,:S,"is","reproduction",1995.780+1996.450,0.735910:S,"they","has",1996.450+1996.610,0.331324:S,"are","an",1996.610+1996.700,0.442113:C,"independent","independent",1996.700+1997.250,0.996646:C,"but","but",1997.250+1997.400,0.999997:C,"it","it",1997.400+1997.455,0.998198:C,"is","is",1997.455+1997.510,0.998198:C,"just","just",1997.510+1997.680,0.999904:C,"the","the",1997.680+1997.790,0.999944:C,"opposite","opposite",1997.790+1998.300,1.000000
</PATH>
<PATH id="(004-170)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2532" R_T1="1999.050" R_T2="1999.759" word_aux="h_t1+t2,h_conf">
D,"they",,,:S,"are","but",1999.210+1999.380,0.435587:C,"not","not",1999.380+1999.720,0.999013
</PATH>
<PATH id="(004-171)" word_cnt="10" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2533" R_T1="2000.070" R_T2="2002.648" word_aux="h_t1+t2,h_conf">
C,"because","because",2000.090+2000.540,1.000000:C,"it","it",2000.540+2000.645,0.878282:C,"is","is",2000.645+2000.750,0.878282:C,"interesting","interesting",2000.750+2001.220,1.000000:C,"something","something",2001.220+2001.530,1.000000:C,"like","like",2001.530+2001.710,1.000000:C,"the","the",2001.710+2001.790,0.949610:C,"b.","b.",2001.790+2002.020,0.989661:C,"b.","b.",2002.020+2002.160,0.989661:C,"c.","c.",2002.160+2002.640,0.999307
</PATH>
<PATH id="(004-172)" word_cnt="21" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2534" R_T1="2002.648" R_T2="2007.025" word_aux="h_t1+t2,h_conf">
C,"i","i",2002.700+2002.730,0.851822:C,"was","was",2002.730+2002.830,0.983906:C,"just","just",2002.830+2002.980,0.998570:C,"reading","reading",2002.980+2003.320,1.000000:C,"an","an",2003.320+2003.400,0.999990:C,"article","article",2003.450+2003.820,0.999990:C,"about","about",2003.820+2004.030,0.999998:C,"that","that",2004.030+2004.210,1.000000:C,"the","the",2004.210+2004.350,1.000000:S,"irony","idea",2004.350+2004.770,1.000000:C,"(of)","",,:S,"(it)","that",2004.810+2004.970,0.991328:S,"(all)","the",2004.970+2005.090,1.000000:S,"is","ones",2005.210+2005.440,0.839124:C,"that","that",2005.440+2005.600,0.505416:C,"something","something",2005.710+2006.000,1.000000:C,"like","like",2006.000+2006.150,0.999990:C,"the","the",2006.150+2006.230,0.959437:C,"b.","b.",2006.230+2006.420,0.998688:C,"b.","b.",2006.420+2006.550,0.998424:C,"c.","c.",2006.550+2007.000,0.999733
</PATH>
<PATH id="(004-173)" word_cnt="10" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2535" R_T1="2007.300" R_T2="2010.150" word_aux="h_t1+t2,h_conf">
I,,"we",2007.390+2007.530,0.998214:I,,"just",2007.530+2007.720,0.998483:I,,"got",2007.720+2007.970,0.913789:S,"which","i",2008.240+2008.320,0.500482:S,"is","have",2008.320+2008.400,0.500482:S,"(govern-)","never",2008.400+2008.600,0.691805:S,"or","actually",2008.600+2008.910,0.996693:S,"directly","documents",2008.910+2009.440,0.528735:C,"government","government",2009.440+2009.700,0.364717:C,"sponsored","sponsored",2009.700+2009.930,0.434230
</PATH>
<PATH id="(004-174)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2536" R_T1="2010.575" R_T2="2012.600" word_aux="h_t1+t2,h_conf">
C,"is","is",2010.680+2010.870,0.531311:C,"having","having",2010.870+2011.320,1.000000:C,"this","this",2011.320+2011.450,0.971047:C,"information","information",2011.450+2012.100,1.000000:C,"on","on",2012.100+2012.250,1.000000:C,"there","there",2012.250+2012.550,0.587722
</PATH>
<PATH id="(004-175)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2537" R_T1="2013.300" R_T2="2015.975" word_aux="h_t1+t2,h_conf">
D,"and",,,:C,"our","our",2013.590+2013.990,0.724471:S,"media","immediate",2013.990+2014.490,0.763869:C,"which","which",2014.490+2014.680,0.995301:C,"claims","claims",2014.680+2015.260,0.911531:C,"not","not",2015.260+2015.530,1.000000:C,"to","to",2015.530+2015.640,0.999888:C,"be","be",2015.640+2015.950,0.999887
</PATH>
<PATH id="(004-176)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2538" R_T1="2016.350" R_T2="2017.268" word_aux="h_t1+t2,h_conf">
C,"official","official",2016.530+2017.120,0.907613
</PATH>
<PATH id="(004-177)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2539" R_T1="2017.532" R_T2="2018.400" word_aux="h_t1+t2,h_conf">
I,,"well",2017.720+2017.960,0.421108:S,"squelches","says",2017.960+2018.150,0.279790:C,"it","it",2018.150+2018.330,0.376189
</PATH>
<PATH id="(004-181)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2545" R_T1="2025.275" R_T2="2027.000" word_aux="h_t1+t2,h_conf">
C,"well","well",2025.330+2025.780,1.000000:C,"you","you",2025.880+2025.980,0.964607:C,"are","are",2025.980+2026.080,0.964607:C,"right","right",2026.080+2026.290,0.998927:C,"about","about",2026.290+2026.550,0.999873:C,"this","this",2026.550+2026.830,0.999886
</PATH>
<PATH id="(004-182)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2546" R_T1="2027.605" R_T2="2027.796" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(004-183)" word_cnt="12" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2547" R_T1="2028.034" R_T2="2031.400" word_aux="h_t1+t2,h_conf">
C,"one","one",2028.070+2028.320,0.987103:C,"of","of",2028.320+2028.380,0.940669:C,"the","the",2028.380+2028.480,0.998993:I,,"only",2028.480+2028.680,0.692044:I,,"taxes",2028.680+2029.130,0.730773:S,"other","and",2029.130+2029.260,0.991577:S,"factors","they",2029.260+2029.430,0.936297:S,"in","are",2029.430+2029.600,0.936297:S,"there","a",2029.600+2029.630,0.936278:C,"culturally","culturally",2029.630+2030.330,1.000000:C,"is","is",2030.410+2030.540,0.745577:C,"that","that",2030.970+2031.410,0.840489
</PATH>
</SPEAKER>
<SPEAKER id="005">
<PATH id="(005-017)" word_cnt="9" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2318" R_T1="1548.477" R_T2="1550.168" word_aux="h_t1+t2,h_conf">
D,"you",,,:C,"have","have",1548.580+1548.760,0.498357:C,"to","to",1548.760+1548.880,0.936725:C,"(%hesitation)","",,:S,"like","bite",1548.880+1549.160,0.639845:C,"you","you",1549.360+1549.510,0.985017:C,"have","have",1549.510+1549.620,0.985132:C,"to","to",1549.620+1549.720,0.972752:S,"(s-)","this",1549.720+1549.810,0.678294
</PATH>
<PATH id="(005-030)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2363" R_T1="1637.687" R_T2="1643.725" word_aux="h_t1+t2,h_conf">
C,"remember","remember",1637.750+1638.400,0.988588:C,"that","that",1638.400+1638.580,0.996935:C,"most","most",1638.580+1639.080,1.000000:C,"people","people",1639.080+1639.670,1.000000:C,"i","i",1639.670+1639.835,0.962472:C,"am","am",1639.835+1640.000,0.962472:C,"probably","probably",1640.000+1640.590,1.000000:C,"the","the",1640.590+1640.710,1.000000:C,"last","last",1640.710+1641.130,1.000000:C,"generation","generation",1641.130+1641.810,1.000000:C,"that","that",1641.810+1641.930,0.815698:C,"was","was",1641.930+1642.120,0.999911:C,"raised","raised",1642.120+1642.520,0.902763:D,"with",,,:S,"out","for",1642.520+1642.610,0.874492:S,"television","themselves",1642.610+1643.380,0.877489
</PATH>
<PATH id="(005-036)" word_cnt="12" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2373" R_T1="1660.968" R_T2="1663.750" word_aux="h_t1+t2,h_conf">
C,"so","so",1661.050+1661.140,1.000000:C,"that","that",1661.140+1661.300,0.990717:C,"is","is",1661.300+1661.460,0.990717:D,"the",,,:D,"i",,,:S,"am","on",1661.460+1661.760,0.999319:C,"the","the",1661.760+1661.830,0.999917:C,"last","last",1661.830+1662.200,1.000000:C,"generation","generation",1662.200+1662.790,1.000000:S,"that","i",1662.790+1662.840,0.995778:C,"was","was",1662.840+1663.040,0.954190:C,"young","young",1663.040+1663.510,0.983480
</PATH>
<PATH id="(005-040)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2379" R_T1="1671.580" R_T2="1675.583" word_aux="h_t1+t2,h_conf">
S,"but","five",1671.700+1672.010,0.934332:C,"so","so",1672.070+1672.400,1.000000:C,"now","now",1672.460+1672.910,1.000000:I,,"you",1672.960+1673.180,0.994156:S,"your","are",1673.180+1673.300,0.962019:C,"generation","generation",1673.300+1674.090,0.975243:D,"was",,,:S,"raised","which",1674.090+1674.370,0.897239:S,"with","raises",1674.370+1674.880,0.843302:C,"t.","t.",1674.880+1675.250,0.937448:C,"v.","v.",1675.250+1675.570,0.937448
</PATH>
<PATH id="(005-042)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2382" R_T1="1680.078" R_T2="1682.007" word_aux="h_t1+t2,h_conf">
S,"and","i",1680.230+1680.320,0.966203:S,"taught","told",1680.320+1680.740,0.999996:C,"them","them",1680.740+1680.900,0.909142:C,"everything","everything",1680.900+1681.580,1.000000:C,"so","so",1681.580+1681.850,0.994171:S,"(tha-)","this",1681.850+1682.140,0.847694
</PATH>
<PATH id="(005-043)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2383" R_T1="1682.114" R_T2="1684.350" word_aux="h_t1+t2,h_conf">
C,"you","you",1682.140+1682.370,0.978074:C,"believe","believe",1682.370+1682.730,0.965569:D,"what",,,:S,"your","we",1682.730+1682.850,0.953211:S,"parents","get",1682.850+1682.990,0.770227:S,"tell","past",1682.990+1683.570,0.769624:S,"you","town",1683.570+1683.920,0.415772
</PATH>
<PATH id="(005-044)" word_cnt="15" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2384" R_T1="1685.096" R_T2="1688.625" word_aux="h_t1+t2,h_conf">
C,"that","that",1685.290+1685.390,0.957944:C,"is","is",1685.390+1685.490,0.957944:C,"what","what",1685.490+1685.690,0.998139:S,"(ra-)","we",1685.690+1685.785,0.997291:S,"what","are",1685.785+1685.880,0.997291:S,"is","up",1685.880+1685.990,0.974844:S,"his","with",1685.990+1686.220,0.997461:S,"name","the",1686.220+1686.280,0.779114:S,"talks","spectral",1686.280+1686.800,1.000000:S,"about","step",1686.800+1687.150,0.971176:C,"that","that",1687.150+1687.420,0.822106:D,"with",,,:C,"the","the",1687.420+1687.560,0.763031:C,"third","third",1687.680+1687.930,0.990075:C,"parent","parent",1687.930+1688.380,0.794345
</PATH>
<PATH id="(005-045)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2385" R_T1="1688.925" R_T2="1690.125" word_aux="h_t1+t2,h_conf">
S,"bruno","no",1689.220+1689.380,0.660756:S,"belline","no",1689.380+1689.790,0.859146
</PATH>
<PATH id="(005-052)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2402" R_T1="1722.209" R_T2="1723.925" word_aux="h_t1+t2,h_conf">
S,"because","equalizing",1722.380+1723.210,0.996916:S,"they","be",1723.370+1723.580,0.675193:S,"because","quick",1723.580+1723.800,0.351793
</PATH>
<PATH id="(005-053)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2403" R_T1="1725.828" R_T2="1730.575" word_aux="h_t1+t2,h_conf">
I,,"hey",1725.980+1726.280,0.760145:S,"people","well",1726.280+1726.520,0.986751:C,"accept","accept",1726.520+1727.140,0.446867:C,"what","what",1727.140+1727.310,1.000000:C,"is","is",1727.360+1727.540,1.000000:C,"given","given",1727.540+1727.850,1.000000:C,"to","to",1727.850+1727.980,0.999847:S,"them","the",1727.980+1728.100,0.988246:S,"because","sequence",1728.100+1728.560,0.965836:C,"number","number",1728.560+1728.810,1.000000:C,"one","one",1728.810+1728.990,1.000000:C,"they","they",1728.990+1729.050,0.841388:C,"are","are",1729.050+1729.110,0.841388:C,"chasing","chasing",1729.110+1729.660,0.505039:C,"the","the",1729.660+1729.730,0.999675:C,"dollar","dollar",1729.860+1730.400,0.911977
</PATH>
<PATH id="(005-054)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2404" R_T1="1730.799" R_T2="1732.935" word_aux="h_t1+t2,h_conf">
C,"they","they",1730.860+1731.020,0.999998:C,"do","do",1731.020+1731.130,0.999998:C,"not","not",1731.130+1731.240,0.999998:C,"think","think",1731.300+1731.530,0.967179:C,"beyond","beyond",1731.530+1732.010,1.000000:C,"their","their",1732.010+1732.210,0.985455:C,"nose","nose",1732.290+1732.730,0.389105
</PATH>
<PATH id="(005-055)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2405" R_T1="1733.781" R_T2="1736.100" word_aux="h_t1+t2,h_conf">
C,"also","also",1733.890+1734.560,0.993111:C,"we","we",1734.830+1734.990,1.000000:C,"have","have",1734.990+1735.080,0.997183:C,"that","that",1735.080+1735.330,0.959099:C,"problem","problem",1735.330+1735.750,0.944091
</PATH>
<PATH id="(005-056)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2406" R_T1="1737.238" R_T2="1739.700" word_aux="h_t1+t2,h_conf">
C,"if","if",1737.360+1737.480,0.989229:C,"you","you",1737.480+1737.750,1.000000:C,"start","start",1737.810+1738.040,1.000000:C,"accepting","accepting",1738.040+1738.600,1.000000:C,"all","all",1738.600+1738.770,1.000000:C,"these","these",1738.770+1738.940,1.000000:C,"things","things",1739.050+1739.390,1.000000
</PATH>
<PATH id="(005-057)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2407" R_T1="1739.775" R_T2="1740.796" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"you",,,:S,"are","pictures",1739.900+1740.330,0.982293:S,"saying","back",1740.330+1740.490,0.782450
</PATH>
<PATH id="(005-060)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2412" R_T1="1750.547" R_T2="1752.700" word_aux="h_t1+t2,h_conf">
S,"then","that",1750.600+1750.730,0.992911:C,"we","we",1750.730+1750.920,1.000000:C,"have","have",1750.920+1751.100,0.999995:C,"to","to",1751.100+1751.210,1.000000:C,"begin","begin",1751.210+1751.560,1.000000:C,"thinking","thinking",1751.630+1752.030,1.000000:C,"about","about",1752.030+1752.300,1.000000
</PATH>
<PATH id="(005-061)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2413" R_T1="1752.959" R_T2="1754.135" word_aux="h_t1+t2,h_conf">
C,"what","what",1753.040+1753.140,0.745230:S,"am","might",1753.140+1753.430,0.565039:S,"i","to",1753.430+1753.690,0.949760:S,"doing","me",1753.690+1753.910,0.949979
</PATH>
<PATH id="(005-062)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2414" R_T1="1754.243" R_T2="1755.933" word_aux="h_t1+t2,h_conf">
D,"why",,,:C,"(w-)","",,:C,"(w-)","well",1754.390+1754.560,0.492018:S,"you","i",1754.610+1754.820,0.645115:C,"know","know",1755.370+1755.770,0.622092
</PATH>
<PATH id="(005-063)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2415" R_T1="1756.310" R_T2="1757.624" word_aux="h_t1+t2,h_conf">
D,"and",,,:S,"they","i",1756.370+1756.420,0.998009:S,"are","am",1756.420+1756.470,0.998009:C,"not","not",1756.470+1756.730,0.998009:C,"going","going",1756.730+1756.870,0.999882:C,"to","to",1756.870+1756.930,0.999990:C,"do","do",1756.930+1757.080,0.999958:C,"that","that",1757.240+1757.520,0.999986
</PATH>
<PATH id="(005-064)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2416" R_T1="1757.624" R_T2="1759.600" word_aux="h_t1+t2,h_conf">
C,"you","you",1757.700+1757.910,1.000000:C,"have","have",1757.910+1758.040,0.999599:C,"to","to",1758.040+1758.140,1.000000:I,,"be",1758.140+1758.290,0.931807:S,"become","come",1758.290+1758.510,0.479568:C,"introspective","introspective",1758.510+1759.360,0.574203
</PATH>
<PATH id="(005-065)" word_cnt="12" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2417" R_T1="1763.071" R_T2="1765.446" word_aux="h_t1+t2,h_conf">
S,"they","there",1763.190+1763.390,0.377077:C,"are","are",1763.390+1763.460,0.580565:D,"not",,,:C,"going","going",1763.460+1763.640,0.906603:C,"to","to",1763.640+1763.730,0.906603:C,"do","do",1763.730+1763.820,0.977112:D,"that",,,:C,"that","that",1763.820+1764.070,0.999975:S,"is","as",1764.200+1764.440,0.922483:C,"much","much",1764.440+1764.690,1.000000:C,"too","too",1764.690+1764.820,0.997349:S,"hard","large",1764.820+1765.300,0.669595
</PATH>
<PATH id="(005-066)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2419" R_T1="1767.244" R_T2="1771.400" word_aux="h_t1+t2,h_conf">
S,"because","cause",1767.470+1767.680,0.370768:C,"when","when",1767.680+1767.860,0.999928:C,"you","you",1767.860+1767.980,0.994455:C,"look","look",1767.980+1768.220,0.994448:I,,"and",1768.220+1768.360,0.829918:I,,"some",1768.420+1768.600,0.974568:S,"inside","things",1768.690+1768.910,0.908340:C,"you","you",1768.910+1769.050,0.972854:C,"might","might",1769.050+1769.330,0.998973:C,"find","find",1769.370+1769.670,1.000000:C,"out","out",1769.670+1769.940,1.000000:C,"that","that",1769.940+1770.060,1.000000:C,"there","there",1770.060+1770.190,1.000000:C,"is","is",1770.190+1770.320,1.000000:D,"nothing",,,:S,"there","something",1770.320+1770.790,1.000000
</PATH>
<PATH id="(005-067)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2420" R_T1="1771.946" R_T2="1774.825" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"it",,,:D,"is",,,:D,"all",,,:D,"a",,,:S,"hoax","this",1772.140+1772.470,0.689862:S,"it","whole",1772.470+1772.940,0.686997:S,"is","holds",1773.010+1773.380,0.847302:S,"all","the",1773.430+1773.560,0.747704:S,"a","school",1773.560+1773.990,0.636285:S,"fake","sake",1774.210+1774.550,0.920207
</PATH>
<PATH id="(005-078)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2451" R_T1="1829.836" R_T2="1830.305" word_aux="h_t1+t2,h_conf">
D,"right",,,
</PATH>
<PATH id="(005-086)" word_cnt="0" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2470" R_T1="1863.653" R_T2="1863.868" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(005-091)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2486" R_T1="1886.904" R_T2="1887.575" word_aux="h_t1+t2,h_conf">
I,,"my",1887.010+1887.170,0.840022:S,"but","that",1887.170+1887.360,0.673532
</PATH>
<PATH id="(005-093)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2490" R_T1="1892.214" R_T2="1893.825" word_aux="h_t1+t2,h_conf">
C,"well","well",1892.260+1892.500,0.389959:D,"yeah",,,:S,"it","he",1892.500+1892.560,0.386332:S,"is","has",1892.560+1892.770,0.415956:C,"a","a",1892.770+1892.830,0.462469:C,"circle","circle",1892.830+1893.360,1.000000:D,"yeah",,,
</PATH>
<PATH id="(005-096)" word_cnt="0" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2505" R_T1="1926.199" R_T2="1926.522" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(005-104)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2544" R_T1="2022.071" R_T2="2023.500" word_aux="h_t1+t2,h_conf">
S,"(%hesitation)","off",2022.150+2022.560,0.997292:C,"think","think",2022.560+2022.770,0.984966:C,"about","about",2022.770+2023.100,1.000000:C,"that","that",2023.100+2023.360,1.000000
</PATH>
<PATH id="(005-107)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2555" R_T1="2046.206" R_T2="2046.574" word_aux="h_t1+t2,h_conf">
C,"what","what",2046.240+2046.620,0.681058
</PATH>
</SPEAKER>
<SPEAKER id="032">
<PATH id="(032-004)" word_cnt="12" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2571" R_T1="13.875" R_T2="16.975" word_aux="h_t1+t2,h_conf">
C,"basically","basically",13.941+14.691,1.000000:C,"(%hesitation)","",,:C,"i","i",15.331+15.401,1.000000:C,"guess","guess",15.401+15.611,1.000000:C,"i","i",15.611+15.651,1.000000:C,"will","will",15.651+15.691,1.000000:C,"start","start",15.691+15.981,1.000000:C,"off","off",15.981+16.221,1.000000:C,"like","like",16.221+16.391,1.000000:C,"i","i",16.391+16.451,0.986434:C,"have","have",16.451+16.511,0.986434:C,"been","been",16.511+16.831,1.000000
</PATH>
<PATH id="(032-005)" word_cnt="8" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2572" R_T1="17.425" R_T2="21.000" word_aux="h_t1+t2,h_conf">
C,"continuing","continuing",17.751+18.331,1.000000:C,"to","to",18.331+18.451,1.000000:C,"work","work",18.451+18.701,1.000000:C,"on","on",18.701+18.781,0.959571:C,"the","the",18.781+18.851,1.000000:C,"java","java",18.851+19.211,0.986223:C,"program","program",19.211+19.811,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(032-011)" word_cnt="11" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2585" R_T1="39.100" R_T2="42.125" word_aux="h_t1+t2,h_conf">
D,"the",,,:C,"actual","actual",39.231+39.811,1.000000:C,"data","data",39.811+40.036,0.936477:C,"base","base",40.036+40.261,0.936477:C,"itself","itself",40.261+40.761,1.000000:C,"so","so",40.901+41.131,1.000000:C,"you","you",41.131+41.261,1.000000:C,"do","do",41.261+41.391,1.000000:C,"not","not",41.391+41.521,1.000000:C,"need","need",41.521+41.731,1.000000:S,"to","two",41.731+42.121,0.995325
</PATH>
<PATH id="(032-013)" word_cnt="13" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2588" R_T1="46.900" R_T2="49.750" word_aux="h_t1+t2,h_conf">
C,"i","i",47.011+47.111,1.000000:C,"want","want",47.111+47.301,1.000000:C,"to","to",47.301+47.361,1.000000:C,"make","make",47.361+47.551,1.000000:C,"it","it",47.551+47.641,1.000000:C,"so","so",47.641+47.821,1.000000:C,"that","that",47.821+48.081,0.988518:D,"it",,,:S,"reads","means",48.081+48.381,0.991310:C,"from","from",48.651+48.821,1.000000:C,"the","the",48.821+48.901,1.000000:C,"data","data",48.901+49.271,1.000000:C,"base","base",49.271+49.641,1.000000
</PATH>
<PATH id="(032-025)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2626" R_T1="108.975" R_T2="109.625" word_aux="h_t1+t2,h_conf">
I,,"all",109.140+109.400,0.998166:I,,"of",109.400+109.500,0.959067:S,"(%hesitation)","us",109.500+109.640,0.726343
</PATH>
<PATH id="(032-026)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2627" R_T1="110.375" R_T2="111.725" word_aux="h_t1+t2,h_conf">
S,"(%hesitation)","well",110.490+110.790,0.965253
</PATH>
<PATH id="(032-027)" word_cnt="13" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2628" R_T1="112.350" R_T2="115.700" word_aux="h_t1+t2,h_conf">
D,"maybe",,,:C,"if","if",112.520+112.820,0.886745:C,"we","we",112.820+112.920,0.995980:C,"can","can",112.920+113.140,0.974314:I,,"do",113.140+113.240,0.997514:S,"v.","you",113.240+113.400,0.998661:S,"n.","see",113.400+113.730,0.999035:S,"c.","it",113.730+113.820,0.509110:C,"over","over",113.820+114.050,0.998833:D,"to",,,:C,"my","my",114.050+114.210,0.999964:C,"computer","computer",114.280+114.810,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(032-033)" word_cnt="15" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2643" R_T1="132.725" R_T2="136.200" word_aux="h_t1+t2,h_conf">
C,"i","i",132.800+132.910,1.000000:C,"just","just",132.910+133.060,0.999991:C,"need","need",133.060+133.210,1.000000:C,"to","to",133.210+133.290,1.000000:C,"work","work",133.290+133.530,1.000000:C,"out","out",133.530+133.670,0.999996:C,"a","a",133.670+133.700,1.000000:C,"couple","couple",133.700+134.050,1.000000:D,"kinks",,,:S,"with","came",134.050+134.310,0.857429:C,"with","with",134.560+134.880,1.000000:C,"some","some",135.150+135.450,1.000000:C,"of","of",135.450+135.520,1.000000:C,"the","the",135.520+135.760,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(032-035)" word_cnt="7" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2646" R_T1="140.000" R_T2="142.375" word_aux="h_t1+t2,h_conf">
S,"some","an",140.140+140.240,1.000000:C,"odd","odd",140.240+140.480,1.000000:C,"behavior","behavior",140.480+141.050,1.000000:C,"but","but",141.050+141.290,1.000000:C,"for","for",141.530+141.720,1.000000:C,"like","like",141.720+141.940,1.000000:C,"the","the",142.030+142.210,0.984870
</PATH>
<PATH id="(032-037)" word_cnt="6" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2649" R_T1="146.950" R_T2="148.575" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"and",,,:C,"you","you",147.400+147.580,0.999997:C,"can","can",147.580+147.810,0.999993:C,"see","see",147.810+148.150,1.000000:C,"like","like",148.150+148.460,1.000000
</PATH>
<PATH id="(032-038)" word_cnt="14" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2650" R_T1="148.825" R_T2="152.200" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"can",,,:D,"get",,,:S,"an","the",149.191+149.291,0.897827:C,"idea","idea",149.291+149.811,0.995078:C,"of","of",149.811+149.901,0.831584:C,"like","like",149.901+150.071,0.999915:D,"what",,,:D,"are",,,:S,"you","way",150.131+150.291,0.269326:C,"searching","searching",150.381+150.851,0.998689:C,"for","for",150.851+150.911,0.993159:D,"and",,,:C,"stuff","stuff",151.751+152.011,0.999747
</PATH>
<PATH id="(032-039)" word_cnt="14" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2651" R_T1="152.350" R_T2="156.950" word_aux="h_t1+t2,h_conf">
C,"there","there",152.411+152.541,0.865294:C,"are","are",152.541+152.571,0.745137:C,"some","some",152.571+152.811,0.999754:C,"things","things",152.811+153.111,0.999754:C,"like","like",153.111+153.501,1.000000:C,"for","for",153.841+153.961,1.000000:C,"example","example",153.961+154.341,1.000000:C,"like","like",154.341+154.561,1.000000:C,"if","if",154.561+154.691,1.000000:C,"you","you",154.691+155.191,1.000000:C,"(%hesitation)","",,:S,"if","that",156.171+156.261,0.992432:C,"the","the",156.261+156.341,1.000000:C,"person","person",156.341+156.801,1.000000
</PATH>
<PATH id="(032-040)" word_cnt="9" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2652" R_T1="157.025" R_T2="159.850" word_aux="h_t1+t2,h_conf">
S,"was","crook",156.801+157.251,0.529769:C,"like","like",157.251+157.431,1.000000:C,"going","going",157.861+158.121,1.000000:S,"into","in",158.121+158.211,0.985988:C,"a","a",158.211+158.321,0.996176:C,"search","search",158.321+158.681,1.000000:C,"engine","engine",158.681+159.061,1.000000:C,"and","and",159.061+159.421,1.000000:C,"like","like",159.421+159.781,1.000000
</PATH>
<PATH id="(032-041)" word_cnt="16" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2653" R_T1="159.975" R_T2="163.975" word_aux="h_t1+t2,h_conf">
C,"they","they",160.131+160.261,1.000000:C,"were","were",160.261+160.481,1.000000:C,"they","they",160.721+160.931,1.000000:D,"let",,,:S,"us","puts",160.931+161.171,0.508054:S,"say","it",161.171+161.281,0.508054:S,"they","in",161.281+161.431,0.508054:S,"had","there",161.431+161.581,0.866308:C,"(their)","",,:C,"several","several",161.581+161.971,1.000000:C,"boxes","boxes",161.971+162.501,1.000000:D,"of",,,:C,"like","like",162.501+162.691,1.000000:C,"key","key",162.741+163.016,1.000000:C,"word","word",163.016+163.291,1.000000:C,"searches","searches",163.291+163.791,1.000000
</PATH>
<PATH id="(032-042)" word_cnt="17" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2654" R_T1="164.200" R_T2="168.675" word_aux="h_t1+t2,h_conf">
C,"so","so",164.401+164.711,1.000000:C,"you","you",164.711+164.811,1.000000:C,"know","know",164.811+164.911,1.000000:S,"he","you",164.911+165.071,0.999880:C,"might","might",165.071+165.251,0.999767:S,"type","typing",165.251+165.581,0.819680:C,"in","in",165.581+165.651,0.984355:C,"russia","russia",165.651+166.061,0.844453:C,"in","in",166.061+166.121,0.816532:C,"one","one",166.121+166.541,1.000000:C,"and","and",166.541+166.821,0.999971:C,"then","then",166.821+167.101,1.000000:C,"move","move",167.221+167.551,1.000000:C,"the","the",167.551+167.631,1.000000:C,"mouse","mouse",167.631+168.111,1.000000:S,"and","to",168.111+168.181,1.000000:C,"click","click",168.181+168.621,1.000000
</PATH>
<PATH id="(032-043)" word_cnt="11" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2655" R_T1="168.775" R_T2="173.725" word_aux="h_t1+t2,h_conf">
C,"and","and",168.781+168.941,1.000000:C,"then","then",168.941+169.071,1.000000:C,"type","type",169.071+169.371,1.000000:C,"biological","biological",169.421+170.411,1.000000:C,"in","in",170.771+170.931,1.000000:C,"the","the",170.931+171.011,1.000000:C,"next","next",171.011+171.521,1.000000:C,"(%hesitation)","",,:C,"text","text",172.151+172.481,0.957363:C,"box","box",172.481+172.851,0.811460:C,"well","well",173.331+173.751,0.773493
</PATH>
<PATH id="(032-044)" word_cnt="15" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2656" R_T1="173.850" R_T2="178.075" word_aux="h_t1+t2,h_conf">
S,"sometimes","someone's",173.931+174.351,0.575664:C,"that","that",174.351+174.541,1.000000:C,"comes","comes",174.541+174.781,1.000000:C,"out","out",174.781+174.921,1.000000:C,"as","as",174.921+175.041,0.893218:C,"one","one",175.041+175.261,1.000000:C,"long","long",175.261+175.591,1.000000:C,"string","string",175.591+176.051,1.000000:C,"because","because",176.051+176.431,1.000000:C,"there","there",176.431+176.651,1.000000:C,"is","is",176.651+176.871,1.000000:C,"you","you",177.761+177.891,0.648878:D,"know",,,:S,"you","get",177.891+178.021,0.459365:C,"(coul-)","",,
</PATH>
<PATH id="(032-045)" word_cnt="17" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2657" R_T1="178.175" R_T2="182.675" word_aux="h_t1+t2,h_conf">
C,"all","all",178.231+178.401,0.997839:C,"you","you",178.401+178.471,0.958619:C,"have","have",178.471+178.621,0.662029:D,"is",,,:S,"the","to",178.621+178.691,0.620611:C,"mouse","mouse",178.841+179.181,1.000000:D,"movement",,,:S,"to","movements",179.181+179.641,0.935728:C,"move","move",179.641+179.881,0.853625:C,"the","the",179.881+179.951,0.973190:S,"cursor","person",179.951+180.481,0.999683:C,"and","and",180.481+180.671,0.920755:S,"it","and",180.671+180.791,0.455381:C,"the","the",181.211+181.291,0.967131:C,"keyboard","keyboard",181.291+181.751,1.000000:C,"data","data",181.751+182.021,0.745978:C,"like","like",182.231+182.561,1.000000
</PATH>
<PATH id="(032-046)" word_cnt="16" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2658" R_T1="182.875" R_T2="187.150" word_aux="h_t1+t2,h_conf">
D,"the",,,:C,"(th-)","that",183.011+183.151,1.000000:C,"the","the",183.770+183.850,1.000000:C,"program","program",183.850+184.280,1.000000:D,"would",,,:S,"not","will",184.280+184.440,1.000000:C,"be","be",184.440+184.590,1.000000:C,"able","able",184.590+184.720,1.000000:C,"to","to",184.720+184.810,1.000000:C,"do","do",184.810+185.000,1.000000:C,"anything","anything",185.000+185.420,1.000000:C,"to","to",185.420+185.710,1.000000:D,"you",,,:D,"know",,,:S,"decrypt","decrease",186.300+186.730,0.999888:C,"that","that",186.820+187.080,1.000000
</PATH>
<PATH id="(032-047)" word_cnt="5" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2659" R_T1="187.325" R_T2="188.525" word_aux="h_t1+t2,h_conf">
C,"you","you",187.410+187.510,1.000000:C,"know","know",187.580+187.700,1.000000:C,"so","so",188.040+188.360,1.000000:C,"it","it",188.360+188.475,0.892758:I,,"is",188.475+188.590,0.892758
</PATH>
<PATH id="(032-054)" word_cnt="12" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2677" R_T1="218.825" R_T2="222.350" word_aux="h_t1+t2,h_conf">
C,"everything","everything",218.981+219.361,1.000000:D,"that",,,:C,"you","you",219.361+219.651,1.000000:C,"see","see",219.651+220.001,1.000000:C,"is","is",220.001+220.321,1.000000:C,"is","is",220.431+220.671,1.000000:C,"the","the",220.821+220.901,1.000000:C,"most","most",220.901+221.241,1.000000:C,"readable","readable",221.241+221.741,1.000000:D,"it",,,:S,"can","to",221.741+221.921,1.000000:C,"be","be",221.921+222.201,1.000000
</PATH>
</SPEAKER>
<SPEAKER id="017">
<PATH id="(017-036)" word_cnt="19" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2707" R_T1="268.527" R_T2="274.425" word_aux="h_t1+t2,h_conf">
D,"it",,,:C,"could","could",268.701+268.871,0.999044:C,"be","be",268.871+268.981,0.999929:C,"interesting","interesting",268.981+269.571,1.000000:C,"to","to",269.571+269.671,1.000000:C,"figure","figure",269.671+270.031,1.000000:C,"out","out",270.031+270.131,1.000000:C,"a","a",270.131+270.181,0.999945:C,"way","way",270.181+270.411,0.999945:C,"to","to",270.411+270.611,0.998599:C,"visualize","visualize",270.721+271.471,1.000000:C,"things","things",271.511+271.811,1.000000:C,"like","like",271.811+271.941,1.000000:S,"the","that",272.271+272.381,0.491802:C,"where","where",272.461+272.681,0.981191:C,"the","the",272.681+272.771,0.999412:I,,"backspace",272.771+273.441,0.796249:S,"backspaces","is",273.441+273.571,0.735580:C,"occur","occur",273.571+273.991,0.933013
</PATH>
<PATH id="(017-037)" word_cnt="4" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2708" R_T1="274.561" R_T2="276.451" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:S,"if","he",275.550+275.640,0.200808:S,"you","keeps",275.640+275.940,0.430410:S,"could","it",275.940+276.100,0.672933
</PATH>
<PATH id="(017-038)" word_cnt="10" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2709" R_T1="276.565" R_T2="279.457" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"know",,,:C,"make","make",277.300+277.530,0.945764:S,"the","a",277.620+277.660,0.513198:C,"character","character",277.660+278.100,0.996603:I,,"of",278.100+278.180,0.605330:C,"red","red",278.180+278.440,0.588380:C,"or","or",278.440+278.550,0.997773:C,"something","something",278.550+279.020,1.000000:C,"then","then",279.020+279.270,0.993218
</PATH>
<PATH id="(017-039)" word_cnt="7" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2710" R_T1="279.548" R_T2="281.620" word_aux="h_t1+t2,h_conf">
C,"you","you",279.700+279.830,0.990088:C,"could","could",279.830+280.010,0.824372:C,"get","get",280.010+280.190,0.999541:C,"a","a",280.190+280.330,1.000000:C,"quick","quick",280.390+280.710,0.996623:C,"look","look",280.710+281.060,0.979907:C,"at","at",281.060+281.310,0.996926
</PATH>
<PATH id="(017-040)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2711" R_T1="281.939" R_T2="282.849" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(017-041)" word_cnt="6" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2712" R_T1="283.009" R_T2="285.810" word_aux="h_t1+t2,h_conf">
C,"where","where",283.350+283.680,1.000000:C,"people","people",283.680+283.970,1.000000:C,"have","have",283.970+284.120,1.000000:C,"made","made",284.120+284.330,0.999969:C,"mistakes","mistakes",284.330+285.120,1.000000:C,"and","and",285.120+285.530,0.995446
</PATH>
<PATH id="(017-042)" word_cnt="14" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2713" R_T1="285.946" R_T2="289.293" word_aux="h_t1+t2,h_conf">
C,"some","some",286.150+286.300,1.000000:C,"of","of",286.300+286.360,1.000000:C,"the","the",286.360+286.460,0.999999:C,"tool","tool",286.460+286.720,0.755762:C,"builders","builders",286.720+287.150,0.685939:C,"might","might",287.150+287.410,1.000000:C,"be","be",287.410+287.530,1.000000:C,"able","able",287.530+287.720,1.000000:C,"to","to",287.720+287.790,1.000000:C,"figure","figure",287.790+288.160,1.000000:C,"out","out",288.160+288.360,1.000000:C,"how","how",288.360+288.520,1.000000:C,"they","they",288.520+288.730,0.627782:S,"could","picked",288.730+289.010,0.402912
</PATH>
<PATH id="(017-045)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2717" R_T1="295.214" R_T2="297.375" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:S,"mouse","most",296.190+296.480,0.709321:C,"movements","movements",296.480+296.870,0.800218
</PATH>
<PATH id="(017-046)" word_cnt="17" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2718" R_T1="297.800" R_T2="303.047" word_aux="h_t1+t2,h_conf">
C,"i","i",298.051+298.301,0.997755:C,"wrote","wrote",298.331+298.561,0.989993:C,"a","a",298.561+298.601,1.000000:C,"little","little",298.601+298.831,1.000000:C,"perl","perl",298.931+299.181,1.000000:C,"program","program",299.181+299.701,0.873233:C,"using","using",299.701+300.031,0.998159:S,"o.","the",300.031+300.201,0.952643:S,"d.","b.",300.201+300.421,0.906468:C,"b.","b.",300.421+300.621,0.896925:C,"c.","c.",300.621+300.911,0.993294:S,"to","two",301.121+301.241,0.874006:S,"query","queries",301.291+301.701,0.985670:C,"the","the",301.701+301.771,0.985961:C,"data","data",301.771+302.106,0.998514:C,"base","base",302.106+302.441,0.998514:S,"and","at",302.551+302.691,0.519710
</PATH>
<PATH id="(017-047)" word_cnt="4" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2719" R_T1="303.252" R_T2="304.550" word_aux="h_t1+t2,h_conf">
C,"and","and",303.521+303.661,0.677555:C,"just","just",303.661+303.881,0.999960:I,,"do",303.961+304.061,0.904400:S,"dump","not",304.061+304.161,0.904400
</PATH>
<PATH id="(017-048)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2720" R_T1="304.891" R_T2="305.574" word_aux="h_t1+t2,h_conf">
C,"the","the",305.090+305.410,0.578616
</PATH>
<PATH id="(017-049)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2721" R_T1="305.711" R_T2="307.259" word_aux="h_t1+t2,h_conf">
S,"mouse","mosque",305.860+306.190,0.648326:C,"coordinates","coordinates",306.190+306.900,0.510247
</PATH>
<PATH id="(017-050)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2722" R_T1="307.464" R_T2="309.263" word_aux="h_t1+t2,h_conf">
C,"and","and",307.760+308.120,0.999999:C,"the","the",308.120+308.540,0.856930:C,"(%hesitation)","",,
</PATH>
<PATH id="(017-051)" word_cnt="8" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2723" R_T1="309.741" R_T2="313.850" word_aux="h_t1+t2,h_conf">
S,"the","did",310.030+310.240,0.963381:S,"event","that",310.240+310.470,0.999449:C,"type","type",310.470+310.790,0.867385:C,"into","into",311.100+311.500,0.998118:S,"(%hesitation)","a",311.500+311.760,0.998510:S,"an","a",311.760+311.960,0.432594:S,"ascii","the",313.011+313.131,0.488539:C,"file","file",313.201+313.561,0.981557
</PATH>
<PATH id="(017-053)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2727" R_T1="320.557" R_T2="322.151" word_aux="h_t1+t2,h_conf">
C,"and","and",320.980+321.320,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(017-054)" word_cnt="4" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2728" R_T1="322.561" R_T2="324.400" word_aux="h_t1+t2,h_conf">
C,"and","and",322.840+323.010,0.789255:C,"did","did",323.010+323.200,0.987858:C,"some","some",323.270+323.530,1.000000:S,"plots","plot",323.530+323.870,0.629992
</PATH>
<PATH id="(017-056)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2733" R_T1="330.212" R_T2="331.328" word_aux="h_t1+t2,h_conf">
S,"things","since",330.340+330.630,0.369750:S,"you","he",330.630+330.800,0.476297:S,"can","too",330.800+330.930,0.635207
</PATH>
<PATH id="(017-057)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2734" R_T1="331.419" R_T2="332.307" word_aux="h_t1+t2,h_conf">
C,"you","you",331.620+331.710,0.975780:C,"can","can",331.710+331.960,1.000000
</PATH>
<PATH id="(017-060)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2738" R_T1="336.451" R_T2="337.680" word_aux="h_t1+t2,h_conf">
C,"the","the",336.700+336.790,0.966073:C,"mouse","mouse",336.790+337.390,0.979755
</PATH>
<PATH id="(017-061)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2739" R_T1="338.204" R_T2="339.434" word_aux="h_t1+t2,h_conf">
C,"clicks","clicks",338.470+338.950,0.961588
</PATH>
<PATH id="(017-062)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2740" R_T1="339.593" R_T2="340.868" word_aux="h_t1+t2,h_conf">
C,"and","and",339.800+339.990,1.000000:C,"found","found",339.990+340.420,0.999154:S,"that","it",340.420+340.560,0.446668
</PATH>
<PATH id="(017-063)" word_cnt="6" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2741" R_T1="341.005" R_T2="344.102" word_aux="h_t1+t2,h_conf">
C,"some","some",341.230+341.600,0.900299:C,"clicks","clicks",341.951+342.321,0.831048:C,"occurred","occurred",342.321+342.711,0.761662:I,,"to",342.711+342.781,0.521100:C,"actually","actually",342.781+343.431,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(017-067)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2749" R_T1="355.533" R_T2="356.716" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(017-072)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2760" R_T1="371.221" R_T2="372.155" word_aux="h_t1+t2,h_conf">
C,"the","the",371.370+371.780,0.997074
</PATH>
<PATH id="(017-073)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2761" R_T1="372.223" R_T2="373.680" word_aux="h_t1+t2,h_conf">
C,"screen","screen",372.300+372.690,1.000000:C,"resolution","resolution",372.690+373.320,1.000000
</PATH>
<PATH id="(017-077)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2768" R_T1="383.016" R_T2="384.109" word_aux="h_t1+t2,h_conf">
C,"well","well",383.241+383.791,0.941171
</PATH>
<PATH id="(017-078)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2769" R_T1="384.974" R_T2="385.772" word_aux="h_t1+t2,h_conf">
S,"it","then",385.190+385.450,0.653256
</PATH>
<PATH id="(017-079)" word_cnt="11" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2770" R_T1="386.272" R_T2="390.143" word_aux="h_t1+t2,h_conf">
C,"could","could",386.501+386.721,1.000000:C,"be","be",386.721+386.981,1.000000:C,"considered","considered",386.981+387.471,0.875775:C,"perhaps","perhaps",387.471+387.921,0.998377:C,"a","a",387.921+388.021,0.696431:C,"bug","bug",388.081+388.371,0.875119:C,"in","in",388.371+388.501,0.982540:C,"the","the",388.501+388.571,0.999632:C,"way","way",388.571+388.761,0.999906:C,"windows","windows",388.761+389.241,0.994672:C,"handles","handles",389.241+389.801,0.490096
</PATH>
<PATH id="(017-082)" word_cnt="7" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2775" R_T1="394.743" R_T2="397.339" word_aux="h_t1+t2,h_conf">
C,"always","always",394.960+395.210,0.473194:C,"be","be",395.270+395.400,0.697125:C,"on","on",395.400+395.590,0.978499:C,"the","the",395.590+395.660,0.763924:C,"screen","screen",395.730+396.130,0.994266:C,"somewhere","somewhere",396.130+396.630,0.998441:C,"but","but",396.710+396.920,1.000000
</PATH>
<PATH id="(017-083)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2776" R_T1="397.680" R_T2="398.887" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(017-088)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2792" R_T1="436.117" R_T2="437.369" word_aux="h_t1+t2,h_conf">
C,"and","and",436.291+436.701,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(017-091)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2797" R_T1="449.005" R_T2="450.690" word_aux="h_t1+t2,h_conf">
C,"and","and",449.290+449.720,0.761943:C,"(%hesitation)","",,
</PATH>
<PATH id="(017-092)" word_cnt="9" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2798" R_T1="450.872" R_T2="453.695" word_aux="h_t1+t2,h_conf">
C,"they","they",451.260+451.390,0.928275:D,"are",,,:C,"are","are",451.390+451.470,0.953656:C,"concentrated","concentrated",451.470+452.240,0.999990:C,"in","in",452.240+452.370,0.997343:C,"a","a",452.370+452.430,0.993247:C,"few","few",452.510+452.730,0.984261:C,"areas","areas",452.730+453.120,0.993745:C,"like","like",453.200+453.470,0.998288
</PATH>
<PATH id="(017-094)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2801" R_T1="457.202" R_T2="458.318" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(017-101)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2812" R_T1="476.261" R_T2="477.445" word_aux="h_t1+t2,h_conf">
C,"and","and",476.650+476.880,0.951795:S,"the","not",476.880+477.080,0.500902
</PATH>
<PATH id="(017-103)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2815" R_T1="479.244" R_T2="481.430" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"user","user",479.960+480.420,0.681993:C,"is","is",480.670+480.840,0.885404
</PATH>
<PATH id="(017-106)" word_cnt="8" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2819" R_T1="486.166" R_T2="488.693" word_aux="h_t1+t2,h_conf">
C,"play","play",486.320+486.490,0.999155:C,"with","with",486.490+486.710,0.999999:C,"the","the",486.710+486.780,0.984010:C,"mouse","mouse",486.780+487.180,0.999513:I,,"in",487.180+487.240,0.769522:S,"and","a",487.240+487.280,0.772881:C,"circle","circle",487.280+487.850,0.984344:C,"around","around",487.850+488.220,0.999989
</PATH>
<PATH id="(017-107)" word_cnt="5" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2820" R_T1="488.785" R_T2="490.173" word_aux="h_t1+t2,h_conf">
D,"what",,,:C,"he","he",489.060+489.140,0.822299:C,"was","was",489.140+489.330,1.000000:C,"looking","looking",489.330+489.690,1.000000:C,"at","at",489.690+489.850,1.000000
</PATH>
<PATH id="(017-108)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2821" R_T1="490.287" R_T2="491.380" word_aux="h_t1+t2,h_conf">
C,"so","so",490.410+490.960,1.000000
</PATH>
<PATH id="(017-109)" word_cnt="8" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2822" R_T1="491.449" R_T2="494.614" word_aux="h_t1+t2,h_conf">
D,"if",,,:S,"you","few",491.630+491.850,0.662816:S,"compare","compared",491.850+492.370,1.000000:S,"three","to",492.490+492.550,0.999999:S,"and","reinforce",492.550+493.290,0.992758:C,"four","four",493.290+493.700,0.513793:S,"four","had",493.700+493.920,0.643893:S,"has","some",493.920+494.180,1.000000
</PATH>
<PATH id="(017-110)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2823" R_T1="494.796" R_T2="495.843" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(017-111)" word_cnt="13" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2824" R_T1="497.164" R_T2="501.377" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"two","two",497.460+497.600,1.000000:C,"or","or",497.600+497.710,1.000000:C,"three","three",497.710+497.910,1.000000:C,"times","times",497.910+498.390,1.000000:I,,"is",498.390+498.620,0.667553:I,,"it's",498.760+498.950,0.659748:S,"as","not",498.950+499.110,0.709505:S,"as","even",499.110+499.390,0.680408:S,"many","most",499.590+500.090,1.000000:S,"mouse","of",500.090+500.210,1.000000:S,"events","them",500.210+500.370,0.999793:C,"and","and",500.750+501.040,0.713132
</PATH>
<PATH id="(017-112)" word_cnt="12" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2825" R_T1="501.582" R_T2="505.361" word_aux="h_t1+t2,h_conf">
C,"and","and",501.900+502.130,0.979030:C,"the","the",502.130+502.280,0.626295:C,"screen","screen",502.280+502.850,0.956910:D,"if",,,:D,"you",,,:D,"show",,,:S,"them","it's",503.010+503.180,0.864032:S,"all","been",503.180+503.270,0.863953:S,"just","so",503.270+503.690,1.000000:S,"is","long",503.690+504.010,0.993861:S,"packed","since",504.010+504.360,0.993861:S,"with","that",504.600+504.760,0.778085
</PATH>
<PATH id="(017-125)" word_cnt="8" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2893" R_T1="610.333" R_T2="614.431" word_aux="h_t1+t2,h_conf">
C,"considered","considered",610.560+611.050,0.547757:C,"one","one",611.050+611.270,1.000000:C,"big","big",611.270+611.500,1.000000:C,"screen","screen",611.500+612.060,1.000000:S,"or","so",612.180+612.240,0.351531:C,"two","two",612.240+612.790,0.571449:C,"separate","separate",613.070+613.480,0.637679:S,"screens","streams",613.480+613.950,0.405106
</PATH>
<PATH id="(017-127)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2897" R_T1="616.412" R_T2="617.323" word_aux="h_t1+t2,h_conf">
C,"but","but",616.610+616.760,0.937383:C,"these","these",616.760+617.150,0.960978
</PATH>
<PATH id="(017-128)" word_cnt="5" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2898" R_T1="617.414" R_T2="619.327" word_aux="h_t1+t2,h_conf">
I,,"this",617.710+618.040,0.794898:S,"these","brings",618.040+618.450,0.794898:S,"screens","so",618.450+618.570,0.842827:C,"we","we",618.570+618.680,0.996329:C,"know","know",618.680+619.100,0.998314
</PATH>
<PATH id="(017-130)" word_cnt="17" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2901" R_T1="622.742" R_T2="627.114" word_aux="h_t1+t2,h_conf">
D,"and",,,:D,"it",,,:D,"would",,,:S,"not","anyone",622.890+623.350,0.845697:C,"make","make",623.350+623.550,0.857863:C,"sense","sense",623.550+623.950,1.000000:C,"to","to",623.950+624.080,1.000000:C,"use","use",624.080+624.360,1.000000:C,"any","any",624.360+624.590,0.999998:I,,"of",624.590+624.660,0.670014:C,"higher","higher",624.660+625.010,0.999997:C,"resolution","resolution",625.010+625.800,1.000000:C,"than","than",625.800+625.990,0.865622:C,"the","the",625.990+626.050,1.000000:C,"number","number",626.050+626.500,1.000000:I,,"of",626.500+626.570,1.000000:C,"of","of",626.570+626.840,0.999190
</PATH>
<PATH id="(017-135)" word_cnt="10" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2908" R_T1="642.621" R_T2="645.194" word_aux="h_t1+t2,h_conf">
C,"but","but",642.860+643.020,1.000000:C,"i","i",643.020+643.240,0.999964:C,"i","i",643.280+643.385,0.959730:C,"am","am",643.385+643.490,0.959730:C,"going","going",643.490+643.620,0.999832:C,"to","to",643.620+643.680,0.999832:C,"try","try",643.680+644.250,1.000000:I,,"it",644.250+644.410,0.977953:C,"and","and",644.410+644.590,0.992186:C,"see","see",644.590+645.030,1.000000
</PATH>
<PATH id="(017-136)" word_cnt="21" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2909" R_T1="645.262" R_T2="651.911" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:S,"(%hesitation)","it",645.640+645.750,0.671215:C,"read","read",646.101+646.301,0.953575:I,,"up",646.301+646.451,0.969435:C,"a","a",646.451+646.501,0.999840:C,"little","little",646.501+646.781,1.000000:C,"bit","bit",646.781+646.931,1.000000:C,"about","about",646.931+647.281,1.000000:C,"how","how",647.371+647.631,1.000000:I,,"most",647.631+647.991,0.777531:S,"mouse","it's",647.991+648.191,0.630447:S,"acceleration","coloration",648.191+648.811,0.814500:C,"works","works",648.811+649.181,0.999825:C,"and","and",649.181+649.301,0.999993:C,"see","see",649.441+649.851,1.000000:C,"if","if",649.851+650.061,1.000000:C,"i","i",650.061+650.191,1.000000:D,"can",,,:S,"activate","could",650.191+650.341,1.000000:S,"it","activated",650.521+651.181,1.000000:C,"and","and",651.351+651.641,1.000000
</PATH>
<PATH id="(017-137)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2910" R_T1="652.139" R_T2="652.868" word_aux="h_t1+t2,h_conf">
C,"and","and",652.361+652.571,0.702769
</PATH>
<PATH id="(017-138)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2911" R_T1="653.004" R_T2="654.257" word_aux="h_t1+t2,h_conf">
C,"get","get",653.140+653.310,0.991091:C,"the","the",653.430+653.560,0.998342:S,"mouse","most",653.560+654.070,0.982626
</PATH>
</SPEAKER>
<SPEAKER id="019">
<PATH id="(019-024)" word_cnt="20" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2782" R_T1="407.925" R_T2="414.225" word_aux="h_t1+t2,h_conf">
C,"if","if",408.161+408.231,0.999996:C,"you","you",408.231+408.371,0.999996:D,"had",,,:S,"a","have",408.371+408.571,0.971541:S,"mouse","the",408.571+408.631,0.755908:S,"it","models",408.631+409.091,0.746096:S,"had","that",409.301+409.491,0.505819:C,"acceleration","acceleration",409.491+410.261,1.000000:D,"built",,,:S,"in","bills",410.261+410.511,1.000000:S,"it","and",410.511+410.801,0.999886:S,"makes","make",411.111+411.311,0.774314:C,"sense","sense",411.311+411.681,1.000000:C,"to","to",411.681+411.781,1.000000:C,"me","me",411.781+411.901,0.999865:C,"you","you",411.901+412.006,0.964437:C,"would","would",412.006+412.111,0.964437:C,"be","be",412.111+412.271,0.977913:C,"recording","recording",412.271+412.931,1.000000:D,"projected",,,
</PATH>
<PATH id="(019-026)" word_cnt="2" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2786" R_T1="421.950" R_T2="422.700" word_aux="h_t1+t2,h_conf">
C,"maybe","maybe",422.150+422.470,0.941080:I,,"so",422.470+422.570,0.540289
</PATH>
<PATH id="(019-032)" word_cnt="18" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2831" R_T1="509.850" R_T2="516.125" word_aux="h_t1+t2,h_conf">
S,"have","i",510.130+510.190,0.764836:S,"a","can",510.190+510.300,0.635912:C,"handle","handle",510.300+510.670,0.887385:C,"on","on",510.670+510.920,0.968077:S,"that","on",510.920+511.080,0.787963:S,"i","the",511.080+511.160,0.861947:S,"think","same",511.160+511.470,0.886234:C,"user","user",511.710+512.060,1.000000:C,"number","number",512.060+512.610,1.000000:C,"four","four",512.780+513.170,0.849489:S,"did","kids",513.270+513.760,0.874591:C,"four","four",514.081+514.321,1.000000:C,"times","times",514.321+514.671,1.000000:C,"more","more",514.671+514.831,1.000000:C,"stuff","stuff",514.831+515.201,1.000000:I,,"which",515.511+515.671,0.526179:S,"than","is",515.671+515.761,0.526179:S,"user","the",515.891+515.951,0.521747
</PATH>
<PATH id="(019-034)" word_cnt="1" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2836" R_T1="521.750" R_T2="523.025" word_aux="h_t1+t2,h_conf">
C,"searches","searches",522.051+522.741,0.999977
</PATH>
<PATH id="(019-040)" word_cnt="15" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2850" R_T1="537.275" R_T2="542.025" word_aux="h_t1+t2,h_conf">
C,"i","i",537.471+537.581,0.999943:D,"noticed",,,:S,"last","know",537.581+537.741,0.855323:S,"week","this",537.741+537.941,0.804311:S,"at","lesson",537.941+538.371,0.862018:S,"the","fifty",538.371+538.861,0.755497:C,"meeting","meeting",538.921+539.321,0.660005:D,"that",,,:C,"one","one",539.541+539.751,0.887275:C,"of","of",539.751+539.841,0.566448:C,"the","the",539.841+539.901,0.604845:S,"subjects","subject",539.901+540.531,0.532449:C,"the","the",540.761+540.851,0.975946:C,"first","first",540.851+541.081,1.000000:C,"one","one",541.081+541.371,0.997762
</PATH>
<PATH id="(019-045)" word_cnt="10" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2862" R_T1="558.275" R_T2="561.525" word_aux="h_t1+t2,h_conf">
C,"how","how",558.461+558.591,0.999941:C,"much","much",558.591+558.991,1.000000:S,"she","you",558.991+559.081,0.941612:S,"was","can",559.081+559.261,0.928829:S,"(%hesitation)","stop",559.261+559.671,0.905641:C,"trying","trying",559.721+560.001,0.997982:C,"to","to",560.001+560.081,1.000000:C,"demonstrate","demonstrate",560.081+560.721,0.999357:C,"for","for",560.721+560.941,0.993834:C,"us","us",560.941+561.311,0.985781
</PATH>
<PATH id="(019-046)" word_cnt="0" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2863" R_T1="561.575" R_T2="562.275" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(019-047)" word_cnt="17" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2864" R_T1="562.375" R_T2="566.425" word_aux="h_t1+t2,h_conf">
C,"that","that",562.710+562.820,0.999435:C,"is","is",562.820+562.930,0.999435:I,,"all",562.930+563.050,0.788978:S,"always","was",563.050+563.260,0.591585:S,"another","not",563.260+563.410,0.974470:C,"one","one",563.410+563.640,1.000000:C,"of","of",563.640+563.720,1.000000:C,"those","those",563.720+563.970,1.000000:C,"things","things",563.970+564.260,1.000000:S,"when","that",564.260+564.360,1.000000:C,"you","you",564.360+564.490,0.997971:C,"ask","ask",564.490+564.730,0.993968:C,"people","people",564.730+565.000,1.000000:C,"to","to",565.000+565.080,1.000000:C,"talk","talk",565.080+565.370,1.000000:S,"out","about",565.370+565.590,1.000000:S,"loud","how",565.590+565.980,0.999895
</PATH>
<PATH id="(019-058)" word_cnt="17" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="2943" R_T1="155.380" R_T2="160.705" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"is",,,:D,"almost",,,:S,"old","moments",155.801+156.371,0.999475:S,"news","in",156.371+156.601,0.924352:S,"and","in",156.731+157.011,0.998069:S,"then","in",157.181+157.401,0.996523:C,"what","what",157.751+157.921,0.971227:C,"was","was",157.921+158.041,0.945040:C,"the","the",158.041+158.151,1.000000:C,"other","other",158.151+158.301,1.000000:C,"one","one",158.301+158.561,0.999839:D,"is",,,:C,"the","the",158.691+158.761,0.618852:C,"california","california",158.761+159.621,0.997415:I,,"we",160.041+160.211,1.000000:S,"recall","all",160.331+160.621,0.692181
</PATH>
<PATH id="(019-059)" word_cnt="11" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="2944" R_T1="160.755" R_T2="163.080" word_aux="h_t1+t2,h_conf">
D,"vince",,,:S,"do","%bcack",160.951+161.211,0.553763:C,"you","you",161.211+161.421,0.487598:D,"want",,,:D,"to",,,:S,"write","might",161.421+161.731,0.999958:S,"these","be",161.731+161.861,0.999894:C,"down","down",161.931+162.131,0.976482:C,"on","on",162.131+162.231,1.000000:C,"the","the",162.231+162.291,1.000000:C,"board","board",162.291+162.691,1.000000
</PATH>
<PATH id="(019-073)" word_cnt="13" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="2988" R_T1="224.005" R_T2="227.505" word_aux="h_t1+t2,h_conf">
I,,"to",224.141+224.291,0.553122:S,"the","mark",224.291+224.561,0.856851:S,"market","with",224.561+224.681,0.409479:S,"was","this",224.681+224.891,0.967247:C,"down","down",224.891+225.191,0.997586:C,"yesterday","yesterday",225.191+225.701,0.999527:S,"but","that",225.701+225.841,0.502338:C,"it","it",225.841+225.936,0.990875:C,"is","is",225.936+226.031,0.990875:I,,"not",226.031+226.181,0.423455:S,"up","to",226.331+226.391,0.968911:S,"today","say",226.391+226.741,0.969390:S,"so","that",226.881+226.981,0.757060
</PATH>
<PATH id="(019-079)" word_cnt="4" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3005" R_T1="252.480" R_T2="254.130" word_aux="h_t1+t2,h_conf">
S,"flip","plus",252.670+252.900,0.996548:S,"flopped","plus",253.000+253.190,0.996900:S,"by","side",253.300+253.610,0.946053:S,"the","variance",253.610+253.950,0.997985
</PATH>
<PATH id="(019-086)" word_cnt="16" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3027" R_T1="282.430" R_T2="286.880" word_aux="h_t1+t2,h_conf">
C,"this","this",282.521+282.681,1.000000:C,"is","is",282.681+282.801,1.000000:C,"going","going",282.801+283.071,1.000000:C,"to","to",283.071+283.131,1.000000:C,"be","be",283.131+283.271,1.000000:C,"an","an",283.271+283.411,1.000000:C,"interesting","interesting",283.411+283.961,1.000000:C,"story","story",283.961+284.451,1.000000:I,,"but",284.451+284.611,0.717748:S,"whenever","never",284.611+284.831,0.822634:S,"kay","k.",284.901+285.201,0.802439:S,"has","have",285.201+285.401,0.945081:C,"to","to",285.481+285.571,0.991766:C,"make","make",285.571+285.771,0.913009:D,"his",,,:D,"report",,,
</PATH>
<PATH id="(019-099)" word_cnt="12" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3058" R_T1="338.205" R_T2="341.930" word_aux="h_t1+t2,h_conf">
D,"o.",,,:D,"k.",,,:D,"well",,,:C,"i","i",338.400+338.465,0.922109:I,,"have",338.465+338.530,0.922109:S,"did","had",338.620+338.880,0.947217:S,"not","my",339.410+339.560,0.982284:S,"see","hand",339.560+339.770,0.941363:C,"anything","anything",339.900+340.320,1.000000:C,"that","that",340.320+340.410,1.000000:C,"sounds","sounds",340.480+340.910,1.000000:C,"like","like",340.910+341.330,1.000000
</PATH>
<PATH id="(019-105)" word_cnt="3" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3072" R_T1="357.880" R_T2="359.130" word_aux="h_t1+t2,h_conf">
S,"i","all",358.360+358.480,0.942107:S,"do","of",358.900+358.970,0.826022:S,"not","the",358.970+359.030,0.316370
</PATH>
<PATH id="(019-106)" word_cnt="17" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3073" R_T1="360.730" R_T2="366.280" word_aux="h_t1+t2,h_conf">
C,"what","what",360.830+361.060,0.999925:C,"happened","happened",361.130+361.530,0.972076:C,"this","this",361.530+361.790,0.970674:C,"week","week",361.790+362.010,0.970673:C,"one","one",362.010+362.160,0.999876:C,"of","of",362.160+362.270,0.999876:I,,"these",362.270+362.520,0.999443:S,"the","in",362.520+362.580,0.995346:C,"washington","washington",362.580+363.220,1.000000:I,,"and",363.430+363.770,0.999837:I,,"swim",363.770+364.180,0.924420:I,,"team",364.300+364.640,1.000000:S,"teams","is",364.900+365.020,1.000000:S,"women's","this",365.110+365.330,0.999808:S,"teams","thing",365.330+365.560,0.999699:S,"was","and",365.560+365.720,0.999991:S,"disbanded","then",365.720+366.040,1.000000
</PATH>
<PATH id="(019-112)" word_cnt="8" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3086" R_T1="383.130" R_T2="385.655" word_aux="h_t1+t2,h_conf">
C,"and","and",383.251+383.511,1.000000:C,"no","no",383.511+383.781,0.954472:C,"inkling","inkling",383.781+384.231,0.955006:D,"that",,,:C,"that","that",384.421+384.601,1.000000:C,"is","is",384.601+384.681,0.995250:C,"coming","coming",384.801+385.121,1.000000:S,"up","out",385.121+385.251,0.973650
</PATH>
<PATH id="(019-114)" word_cnt="5" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3089" R_T1="389.280" R_T2="392.805" word_aux="h_t1+t2,h_conf">
I,,"all",389.371+389.601,0.929055:I,,"this",391.491+391.701,0.524468:S,"(%hesitation)","is",391.701+391.761,0.695964:S,"women's","i",391.761+391.791,0.343126:S,"discontinued","meeting",392.061+392.401,0.390182
</PATH>
<PATH id="(019-116)" word_cnt="6" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3092" R_T1="399.005" R_T2="400.980" word_aux="h_t1+t2,h_conf">
D,"what",,,:D,"else",,,:D,"do",,,:S,"we","this",399.910+400.070,0.390385:C,"see","see",400.170+400.350,0.364149:S,"here","yeah",400.430+400.750,0.986112
</PATH>
<PATH id="(019-132)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3135" R_T1="478.255" R_T2="479.205" word_aux="h_t1+t2,h_conf">
C,"right","right",478.361+478.751,1.000000:I,,"just",479.091+479.281,0.496806
</PATH>
<PATH id="(019-137)" word_cnt="1" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3146" R_T1="493.305" R_T2="494.230" word_aux="h_t1+t2,h_conf">
C,"national","national",493.501+494.021,0.999558
</PATH>
<PATH id="(019-138)" word_cnt="3" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3147" R_T1="495.330" R_T2="496.630" word_aux="h_t1+t2,h_conf">
S,"you","to",495.521+495.601,0.940727:C,"think","think",495.601+495.821,1.000000:C,"international","international",495.821+496.471,1.000000
</PATH>
<PATH id="(019-153)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3198" R_T1="561.030" R_T2="562.305" word_aux="h_t1+t2,h_conf">
D,"o.",,,:S,"k.","from",561.490+561.600,0.636867
</PATH>
<PATH id="(019-159)" word_cnt="16" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3217" R_T1="590.055" R_T2="595.055" word_aux="h_t1+t2,h_conf">
D,"let",,,:D,"me",,,:D,"try",,,:D,"c.",,,:D,"n.",,,:D,"n.",,,:D,"dot",,,:D,"com",,,:D,"to",,,:D,"see",,,:D,"if",,,:S,"we","and",591.190+591.460,0.999998:S,"get","in",593.400+593.600,0.955482:C,"anything","anything",593.600+593.920,0.955928:D,"else",,,:S,"to","now",593.920+594.110,0.575006
</PATH>
<PATH id="(019-160)" word_cnt="4" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3219" R_T1="596.080" R_T2="597.880" word_aux="h_t1+t2,h_conf">
C,"get","get",596.251+596.391,0.983158:D,"the",,,:D,"discussion",,,:D,"going",,,
</PATH>
<PATH id="(019-161)" word_cnt="1" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3221" R_T1="600.055" R_T2="600.980" word_aux="h_t1+t2,h_conf">
S,"oh","how",600.141+600.691,0.769245
</PATH>
<PATH id="(019-176)" word_cnt="3" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3276" R_T1="675.205" R_T2="676.730" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"is",,,:S,"interesting","features",675.801+676.161,0.997187
</PATH>
<PATH id="(019-178)" word_cnt="0" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3279" R_T1="685.130" R_T2="686.805" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(019-179)" word_cnt="0" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3280" R_T1="687.730" R_T2="688.330" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(019-180)" word_cnt="0" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3281" R_T1="688.955" R_T2="690.055" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(019-193)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3313" R_T1="751.005" R_T2="752.330" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"guy",,,
</PATH>
<PATH id="(019-198)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3324" R_T1="777.355" R_T2="778.855" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:D,"oh",,,
</PATH>
<PATH id="(019-199)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3325" R_T1="779.205" R_T2="780.505" word_aux="h_t1+t2,h_conf">
S,"activate","i",779.560+779.600,0.531091:S,"later","mean",780.140+780.250,0.529686
</PATH>
<PATH id="(019-202)" word_cnt="1" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3330" R_T1="787.230" R_T2="788.055" word_aux="h_t1+t2,h_conf">
D,"delete",,,
</PATH>
<PATH id="(019-203)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3331" R_T1="788.205" R_T2="789.430" word_aux="h_t1+t2,h_conf">
S,"delete","as",788.440+788.500,0.999998:S,"that","as",788.640+788.740,0.999998
</PATH>
<PATH id="(019-204)" word_cnt="9" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3333" R_T1="791.230" R_T2="795.830" word_aux="h_t1+t2,h_conf">
D,"oh",,,:C,"and","and",792.330+792.460,0.793879:D,"this",,,:D,"thing",,,:D,"we",,,:S,"will","and",792.460+792.580,0.757674:S,"make","to",792.580+792.650,0.947827:S,"really","to",792.790+793.240,0.958646:S,"big","do",794.900+795.080,0.999967
</PATH>
</SPEAKER>
<SPEAKER id="054">
<PATH id="(054-021)" word_cnt="18" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2879" R_T1="583.000" R_T2="587.975" word_aux="h_t1+t2,h_conf">
D,"characteristics",,,:D,"of",,,:S,"the","case",583.201+583.521,1.000000:S,"screen","with",583.521+583.761,1.000000:S,"that","appropriate",583.761+584.571,1.000000:C,"the","the",584.571+584.641,1.000000:C,"person","person",584.641+584.971,1.000000:C,"was","was",584.971+585.161,1.000000:C,"working","working",585.161+585.521,1.000000:C,"on","on",585.521+585.701,1.000000:I,,"a",585.701+585.801,1.000000:S,"play","plane",585.801+586.161,1.000000:C,"into","into",586.161+586.491,1.000000:S,"it","a",586.491+586.521,1.000000:S,"for","right",586.611+586.781,0.988953:S,"instance","because",586.781+587.011,1.000000:C,"i","i",587.011+587.091,1.000000:C,"know","know",587.091+587.421,1.000000
</PATH>
</SPEAKER>
<SPEAKER id="040">
<PATH id="(040-009)" word_cnt="0" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="2962" R_T1="187.180" R_T2="187.405" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(040-056)" word_cnt="1" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3213" R_T1="579.805" R_T2="580.955" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(040-058)" word_cnt="2" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3218" R_T1="595.055" R_T2="596.055" word_aux="h_t1+t2,h_conf">
I,,"you",595.331+595.426,0.664646:S,"%hesitation","had",595.426+595.521,0.664646
</PATH>
<PATH id="(040-071)" word_cnt="1" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3294" R_T1="716.055" R_T2="717.905" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
</SPEAKER>
<SPEAKER id="058">
<PATH id="(058-018)" word_cnt="3" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="2999" R_T1="244.055" R_T2="245.305" word_aux="h_t1+t2,h_conf">
D,"and",,,:C,"tony","tony",244.401+244.691,0.997048:C,"blair","blair",244.691+245.131,0.999793
</PATH>
<PATH id="(058-064)" word_cnt="1" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3136" R_T1="479.880" R_T2="481.230" word_aux="h_t1+t2,h_conf">
D,"and",,,
</PATH>
<PATH id="(058-067)" word_cnt="6" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3141" R_T1="486.455" R_T2="489.505" word_aux="h_t1+t2,h_conf">
D,"is",,,:D,"treason",,,:C,"(%hesitation)","",,:S,"national","his",487.001+487.111,0.999037:S,"or","and",487.111+487.261,1.000000:S,"international","his",488.081+488.181,0.494291
</PATH>
<PATH id="(058-088)" word_cnt="0" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3197" R_T1="558.230" R_T2="559.180" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(058-094)" word_cnt="1" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3220" R_T1="597.955" R_T2="598.355" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(058-114)" word_cnt="7" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3275" R_T1="672.505" R_T2="674.455" word_aux="h_t1+t2,h_conf">
D,"with",,,:C,"this","this",672.771+673.101,0.700374:D,"stuff",,,:D,"i",,,:S,"do","but",673.101+673.241,0.996512:S,"not","of",673.801+673.861,0.653416:S,"know","of",673.861+673.941,0.660986
</PATH>
<PATH id="(058-115)" word_cnt="3" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3282" R_T1="690.805" R_T2="692.555" word_aux="h_t1+t2,h_conf">
D,"dating",,,:C,"is","is",691.200+691.350,0.401284:S,"cultural","also",691.690+692.010,0.887905
</PATH>
<PATH id="(058-121)" word_cnt="2" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3300" R_T1="729.780" R_T2="731.555" word_aux="h_t1+t2,h_conf">
C,"continuing","continuing",730.060+730.580,0.998947:S,"resolutions","resolution",730.580+731.090,1.000000
</PATH>
<PATH id="(058-132)" word_cnt="0" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3332" R_T1="789.430" R_T2="790.280" word_aux="h_t1+t2,h_conf">
</PATH>
</SPEAKER>
<SPEAKER id="025">
<PATH id="(025-021)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3119" R_T1="444.055" R_T2="445.080" word_aux="h_t1+t2,h_conf">
I,,"if",444.420+444.490,0.981651:S,"%bcack","it's",444.490+444.640,0.526775
</PATH>
</SPEAKER>
</SYSTEM>