CT-mdm-full-i-F-D-ov2.sgml
511 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
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
<SYSTEM title="CT-mdm-full-i-F-D-ov2" 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-002)" word_cnt="19" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="4" R_T1="43.450" R_T2="48.300" word_aux="h_t1+t2,h_conf">
S,"apparently","terribly",43.600+44.200,0.999995:S,"approved","from",44.580+44.820,0.503647:C,"they","they",45.030+45.105,0.687730:C,"were","were",45.105+45.180,0.687730:C,"going","going",45.180+45.300,0.999464:C,"to","to",45.300+45.360,0.999464:C,"change","change",45.360+45.710,0.999221:D,"the",,,:S,"design","that",45.710+45.830,0.962579:S,"from","that's",45.830+46.150,0.962206:C,"the","the",46.150+46.230,0.999900:C,"basic","basic",46.230+46.600,1.000000:C,"twelve","twelve",46.600+46.920,1.000000:D,"yellow",,,:D,"stars",,,:S,"in","knows",46.920+47.210,1.000000:S,"the","that",47.210+47.520,1.000000:S,"blue","you",47.950+48.110,1.000000:S,"field","know",48.110+48.210,1.000000
</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-014)" word_cnt="13" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="31" R_T1="96.475" R_T2="100.550" word_aux="h_t1+t2,h_conf">
D,"in",,,:D,"the",,,:D,"process",,,:D,"of",,,:D,"becoming",,,:D,"the",,,:D,"official",,,:D,"e.",,,:D,"u.",,,:D,"flag",,,:S,"which","that",97.190+97.420,0.407011:S,"confused","convenience",98.170+98.850,0.824247:S,"me","a",104.580+104.620,0.999953
</PATH>
<PATH id="(COU-020)" word_cnt="10" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="73" R_T1="187.125" R_T2="189.475" word_aux="h_t1+t2,h_conf">
D,"they",,,:D,"were",,,:C,"yeah","yeah",187.630+187.850,0.698422:D,"it",,,:D,"was",,,:D,"sort",,,:D,"of",,,:D,"a",,,:D,"lofty",,,:D,"goal",,,
</PATH>
<PATH id="(COU-022)" word_cnt="6" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="79" R_T1="192.750" R_T2="194.925" word_aux="h_t1+t2,h_conf">
C,"the","the",192.820+192.930,0.692639:C,"second","second",193.090+193.420,0.940113:D,"floor",,,:D,"apartment",,,:D,"of",,,:D,"the",,,
</PATH>
<PATH id="(COU-023)" word_cnt="6" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="81" R_T1="195.150" R_T2="198.250" word_aux="h_t1+t2,h_conf">
D,"like",,,:C,"(commo-)","",,:D,"less",,,:D,"commonly",,,:D,"used",,,:D,"languages",,,
</PATH>
<PATH id="(COU-031)" word_cnt="5" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="111" R_T1="242.975" R_T2="244.175" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"think",,,:D,"there",,,:D,"were",,,:S,"eleven","%bcack",244.600+245.340,1.000000
</PATH>
<PATH id="(COU-032)" word_cnt="16" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="113" R_T1="244.825" R_T2="248.325" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",245.650+245.890,0.915791:S,"maybe","yeah",245.890+246.230,0.961597:C,"that","that",246.230+246.470,0.938631:D,"was",,,:D,"it",,,:D,"i",,,:D,"thought",,,:C,"that","that",246.470+246.570,0.984116:C,"number","number",246.760+246.990,1.000000:C,"twelve","twelve",246.990+247.300,1.000000:C,"even","even",247.300+247.470,0.530944:C,"though","though",247.470+247.600,0.487704:C,"it","it",247.600+247.685,0.461478:C,"is","is",247.685+247.770,0.461478:C,"no","no",247.770+247.910,0.545939:D,"longer",,,
</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-045)" word_cnt="1" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="160" R_T1="329.275" R_T2="330.025" word_aux="h_t1+t2,h_conf">
D,"wow",,,
</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-059)" word_cnt="10" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="228" R_T1="447.925" R_T2="449.675" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"is",,,:D,"all",,,:D,"i",,,:D,"was",,,:D,"thinking",,,:S,"about","yes",448.000+448.270,0.678361:C,"i","i",448.270+448.540,0.556893:S,"was","like",448.540+448.640,0.467427:C,"not","not",449.340+449.610,0.999538
</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-068)" word_cnt="1" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="262" R_T1="491.800" R_T2="492.350" word_aux="h_t1+t2,h_conf">
S,"wow","i",491.950+492.120,0.924945
</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-086)" word_cnt="7" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="378" R_T1="656.875" R_T2="659.800" word_aux="h_t1+t2,h_conf">
C,"(sor-)","",,:D,"remember",,,:D,"b.",,,:D,"j.",,,:D,"his",,,:D,"mom",,,:D,"had",,,
</PATH>
<PATH id="(COU-087)" word_cnt="12" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="381" R_T1="659.800" R_T2="662.300" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"oh",,,:D,"sorry",,,:D,"you",,,:D,"never",,,:D,"met",,,:D,"him",,,:D,"his",,,:D,"mom",,,:S,"has","they",657.750+657.840,0.190109:S,"a","are",657.840+657.930,0.190109:C,"(%hesitation)","",,
</PATH>
<PATH id="(COU-088)" word_cnt="7" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="382" R_T1="662.525" R_T2="664.725" word_aux="h_t1+t2,h_conf">
D,"private",,,:S,"jet","half",664.260+664.530,0.638540:S,"and","the",664.530+664.590,0.851322:S,"he","price",664.590+664.860,0.850996:S,"would","that",664.860+664.990,0.984203:C,"you","you",664.990+665.090,0.964258:D,"know",,,
</PATH>
<PATH id="(COU-089)" word_cnt="16" labels="<O,FEMALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="384" R_T1="665.100" R_T2="668.075" word_aux="h_t1+t2,h_conf">
D,"yeah",,,:D,"she",,,:D,"she",,,:C,"(%hesitation)","",,:D,"she",,,:D,"if",,,:D,"she",,,:D,"does",,,:D,"not",,,:D,"have",,,:D,"one",,,:D,"then",,,:D,"i",,,:D,"think",,,:D,"she",,,:D,"does",,,
</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-102)" word_cnt="6" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="424" R_T1="30.075" R_T2="31.400" word_aux="h_t1+t2,h_conf">
D,"and",,,:D,"to",,,:D,"know",,,:D,"better",,,:D,"than",,,:D,"that",,,
</PATH>
<PATH id="(COU-109)" word_cnt="1" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="482" R_T1="137.725" R_T2="138.300" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(COU-110)" word_cnt="1" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="492" R_T1="155.200" R_T2="155.825" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(COU-134)" word_cnt="9" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="675" R_T1="392.175" R_T2="394.300" word_aux="h_t1+t2,h_conf">
D,"he",,,:D,"was",,,:D,"riding",,,:D,"off",,,:D,"road",,,:D,"with",,,:D,"out",,,:D,"a",,,:D,"helmet",,,
</PATH>
<PATH id="(COU-135)" word_cnt="3" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="677" R_T1="394.925" R_T2="396.050" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"is",,,:D,"crazy",,,
</PATH>
<PATH id="(COU-141)" word_cnt="35" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="698" R_T1="420.325" R_T2="426.125" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"used",,,:D,"to",,,:D,"not",,,:D,"wear",,,:D,"one",,,:D,"but",,,:D,"there",,,:D,"was",,,:D,"a",,,:D,"guy",,,:D,"here",,,:D,"that",,,:D,"that",,,:D,"came",,,:D,"up",,,:D,"to",,,:D,"me",,,:D,"one",,,:D,"day",,,:D,"i",,,:D,"forget",,,:D,"his",,,:D,"name",,,:D,"and",,,:D,"he",,,:D,"was",,,:D,"like",,,:S,"how","what",424.950+425.080,0.796356:S,"much","do",425.080+425.140,0.791702:C,"you","you",425.140+425.200,0.806195:D,"paying",,,:D,"for",,,:D,"your",,,:D,"education",,,
</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-176)" word_cnt="4" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="815" R_T1="599.725" R_T2="601.325" word_aux="h_t1+t2,h_conf">
D,"oh",,,:D,"yeah",,,:D,"o.",,,:D,"k.",,,
</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>
<PATH id="(COU-179)" word_cnt="1" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="827" R_T1="615.725" R_T2="616.250" word_aux="h_t1+t2,h_conf">
D,"never",,,
</PATH>
<PATH id="(COU-184)" word_cnt="8" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="860" R_T1="681.475" R_T2="684.275" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"is",,,:D,"it",,,:D,"they",,,:D,"only",,,:D,"speak",,,:D,"standard",,,:D,"arabic",,,
</PATH>
<PATH id="(COU-185)" word_cnt="22" labels="<O,FEMALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="864" R_T1="688.800" R_T2="694.250" word_aux="h_t1+t2,h_conf">
D,"well",,,:D,"in",,,:D,"all",,,:D,"of",,,:D,"the",,,:D,"arabic",,,:D,"speaking",,,:D,"countries",,,:D,"they",,,:D,"can",,,:D,"not",,,:D,"all",,,:D,"speak",,,:D,"the",,,:D,"same",,,:D,"they",,,:D,"must",,,:D,"have",,,:D,"a",,,:D,"local",,,:D,"regional",,,:D,"dialect",,,
</PATH>
</SPEAKER>
<SPEAKER id="TBVSTT">
<PATH id="(TBVSTT-006)" word_cnt="15" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="32" R_T1="100.175" R_T2="105.387" word_aux="h_t1+t2,h_conf">
S,"the","i",99.110+99.260,0.443487:S,"e.","he",100.450+100.630,0.735154:S,"u.","he",100.830+100.950,0.774674:S,"is","was",100.950+101.140,0.781587:C,"a","a",101.140+101.240,0.780861:C,"very","very",101.330+101.690,1.000000:C,"very","very",101.950+102.260,1.000000:C,"large","large",102.410+102.960,0.970528:C,"bureaucratic","bureaucratic",103.030+103.560,1.000000:C,"organization","organization",103.610+104.300,0.803419:C,"that","that",104.300+104.390,0.810324:C,"has","has",104.390+104.580,0.801171:C,"lot","lot",104.620+104.780,0.999965:C,"of","of",104.780+104.870,1.000000:C,"different","different",104.870+105.170,1.000000
</PATH>
<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-013)" word_cnt="12" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="43" R_T1="122.781" R_T2="125.692" word_aux="h_t1+t2,h_conf">
C,"interested","interested",122.820+123.320,1.000000:C,"in","in",123.320+123.410,1.000000:C,"using","using",123.620+124.030,1.000000:C,"using","using",124.030+124.400,1.000000:C,"it","it",124.400+124.560,0.954979:S,"so","to",124.560+124.630,0.952808:C,"one","one",124.630+124.760,0.998132:C,"of","of",124.760+124.840,0.998138:S,"them","the",124.840+124.950,0.999990:S,"basically","basic",124.950+125.280,1.000000:S,"saying","thing",125.280+125.470,1.000000:C,"like","like",125.500+125.650,0.375336
</PATH>
<PATH id="(TBVSTT-014)" word_cnt="17" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="45" R_T1="125.692" R_T2="128.048" word_aux="h_t1+t2,h_conf">
C,"this","this",125.780+125.920,0.459732:D,"exists",,,:D,"and",,,:D,"these",,,:S,"are","because",125.920+126.250,0.789623:S,"the","neither",126.250+126.560,0.819040:S,"bad","that",126.560+126.760,0.999998:C,"things","things",126.760+126.940,0.999998:D,"that",,,:C,"are","are",126.940+127.020,0.999998:C,"being","being",127.020+127.180,0.999986:C,"done","done",127.180+127.430,1.000000:D,"the",,,:D,"other",,,:D,"part",,,:S,"is","to",127.430+127.590,0.873780:S,"like","protect",127.590+127.990,0.873780
</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-022)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="67" R_T1="172.850" R_T2="173.375" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</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-059)" word_cnt="20" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="162" R_T1="330.607" R_T2="334.949" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"that","that",330.990+331.210,1.000000:I,,"second",331.210+331.520,1.000000:S,"that","they",332.690+332.770,0.992224:S,"could","can",332.770+332.960,0.612349:C,"be","be",332.960+333.140,0.741827:D,"kind",,,:D,"of",,,:D,"(o.",,,:D,"k.)",,,:C,"(so)","",,:D,"just",,,:D,"thinking",,,:D,"of",,,:S,"the","a",333.240+333.280,0.317864:S,"truckloads","truckload",333.370+333.820,0.631247:C,"of","of",333.820+333.930,0.721579:C,"paper","paper",334.030+334.410,1.000000:C,"if","if",334.410+334.520,1.000000:C,"you","you",334.520+334.670,1.000000
</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-077)" word_cnt="2" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="204" R_T1="399.496" R_T2="401.132" word_aux="h_t1+t2,h_conf">
D,"almost",,,:D,"anything",,,
</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-090)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="227" R_T1="447.880" R_T2="448.656" word_aux="h_t1+t2,h_conf">
S,"yeah","that",448.950+449.070,0.798291
</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-097)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="245" R_T1="467.081" R_T2="467.954" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,
</PATH>
<PATH id="(TBVSTT-102)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="257" R_T1="483.149" R_T2="483.579" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</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-105)" word_cnt="8" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="263" R_T1="491.864" R_T2="493.606" word_aux="h_t1+t2,h_conf">
S,"(some","am",492.120+492.290,0.924945:S,"how)","not",492.290+492.410,0.897530:S,"remember","a",492.410+492.440,0.880472:C,"reading","reading",492.440+492.740,0.746567:D,"something",,,:D,"like",,,:D,"that",,,:C,"which","which",493.130+493.390,1.000000
</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-115)" word_cnt="10" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="281" R_T1="522.169" R_T2="523.875" word_aux="h_t1+t2,h_conf">
C,"that","that",522.240+522.390,1.000000:C,"people","people",522.390+522.610,1.000000:C,"can","can",522.610+522.710,1.000000:C,"not","not",522.710+522.810,1.000000:C,"get","get",522.810+522.900,1.000000:C,"away","away",522.900+523.100,1.000000:C,"from","from",523.100+523.270,1.000000:D,"if",,,:C,"there","there",523.390+523.500,0.896860:C,"is","is",523.500+523.610,0.896869
</PATH>
<PATH id="(TBVSTT-116)" word_cnt="6" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="283" R_T1="523.875" R_T2="525.644" word_aux="h_t1+t2,h_conf">
C,"something","something",524.010+524.290,1.000000:C,"going","going",524.290+524.530,1.000000:C,"on","on",524.530+524.890,1.000000:C,"like","like",524.960+525.170,1.000000:D,"a",,,:C,"fire","fire",525.170+525.630,1.000000
</PATH>
<PATH id="(TBVSTT-117)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="284" R_T1="525.644" R_T2="528.452" word_aux="h_t1+t2,h_conf">
D,"or",,,:C,"some","some",525.950+526.090,1.000000:S,"other","of",526.090+526.150,1.000000:C,"damage","damage",526.210+526.600,0.995113:S,"then","and",526.600+526.730,0.918142:C,"people","people",526.920+527.220,1.000000:C,"can","can",527.220+527.370,1.000000:C,"(ge-)","get",527.370+527.570,0.999876:C,"can","can",527.570+527.700,0.765932:C,"get","get",527.700+527.850,1.000000:C,"out","out",527.850+528.140,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-139)" word_cnt="11" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="334" R_T1="588.876" R_T2="592.226" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:C,"well","well",590.070+590.360,1.000000:C,"there","there",590.360+590.570,0.989315:C,"are","are",590.570+590.610,0.549396:C,"there","there",590.610+590.790,0.992053:C,"are","are",590.790+590.870,0.427012:C,"there","there",590.870+591.020,1.000000:C,"are","are",591.020+591.250,1.000000:C,"enough","enough",591.250+591.440,0.979335:C,"people","people",591.510+591.800,1.000000:C,"who","who",591.800+591.990,0.972939
</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-144)" word_cnt="13" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="342" R_T1="607.061" R_T2="610.712" word_aux="h_t1+t2,h_conf">
C,"you","you",607.600+607.680,0.972950:C,"know","know",607.680+607.760,0.972950:C,"(the-)","",,:C,"they","they",607.760+607.860,0.999991:C,"they","they",607.860+608.130,1.000000:C,"over","over",608.470+608.725,1.000000:C,"all","all",608.725+608.980,1.000000:C,"you","you",608.980+609.090,1.000000:C,"get","get",609.090+609.260,1.000000:D,"a",,,:C,"much","much",609.260+609.460,1.000000:C,"nicer","nicer",609.460+609.840,1.000000:S,"experience","spirit",609.840+610.250,0.992066
</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-146)" word_cnt="2" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="345" R_T1="613.490" R_T2="614.291" word_aux="h_t1+t2,h_conf">
S,"you","her",615.620+615.760,0.999001:S,"%hesitation","chest",615.830+616.030,0.997979
</PATH>
<PATH id="(TBVSTT-147)" word_cnt="12" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="347" R_T1="616.025" R_T2="618.700" word_aux="h_t1+t2,h_conf">
S,"well","will",616.440+616.730,0.688569:S,"a","try",616.730+616.910,0.571861:S,"private","to",616.910+616.990,0.571861:C,"i","i",616.990+617.050,0.542737:C,"mean","mean",617.050+617.170,0.542737:D,"you",,,:D,"know",,,:D,"how",,,:D,"much",,,:D,"private",,,:D,"jets",,,:S,"cost","yeah",617.170+617.530,0.555490
</PATH>
<PATH id="(TBVSTT-169)" word_cnt="3" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="425" R_T1="30.225" R_T2="31.000" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"i",,,:D,"am",,,
</PATH>
<PATH id="(TBVSTT-170)" word_cnt="23" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="426" R_T1="32.150" R_T2="37.075" word_aux="h_t1+t2,h_conf">
C,"so","so",32.450+32.790,1.000000:C,"people","people",33.060+33.330,1.000000:S,"are","lucky",33.330+33.690,0.994020:C,"(pe-)","",,:C,"people","people",33.690+34.080,1.000000:C,"are","are",34.080+34.160,1.000000:C,"buying","buying",34.160+34.500,1.000000:C,"them","them",34.500+34.590,1.000000:D,"i",,,:C,"mean","mean",34.680+34.820,1.000000:C,"you","you",34.820+34.930,1.000000:C,"can","can",34.930+35.130,0.999922:D,"you",,,:S,"know","even",35.180+35.410,0.999922:C,"(th-)","",,:C,"(th-)","that",35.540+35.730,0.998849:D,"there",,,:D,"are",,,:C,"there","there",35.730+35.960,1.000000:C,"is","is",35.960+36.150,0.999983:I,,"this",36.230+36.370,0.998838:C,"very","very",36.370+36.580,0.999927:C,"little","little",36.580+36.760,0.999927
</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-181)" word_cnt="6" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="442" R_T1="66.225" R_T2="67.575" word_aux="h_t1+t2,h_conf">
C,"among","among",66.341+66.591,1.000000:C,"other","other",66.591+66.791,1.000000:C,"things","things",66.791+67.061,1.000000:C,"you","you",67.061+67.131,1.000000:C,"have","have",67.131+67.201,1.000000:C,"got","got",67.201+67.431,1.000000
</PATH>
<PATH id="(TBVSTT-182)" word_cnt="6" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="444" R_T1="67.975" R_T2="69.750" word_aux="h_t1+t2,h_conf">
D,"they",,,:S,"are","to",68.121+68.201,0.828891:C,"just","just",68.201+68.351,0.999999:S,"too","to",68.421+68.631,0.911224:S,"too","to",68.881+69.051,0.911043:S,"wide","why",69.101+69.461,0.983929
</PATH>
<PATH id="(TBVSTT-183)" word_cnt="11" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="445" R_T1="69.750" R_T2="72.775" word_aux="h_t1+t2,h_conf">
S,"and","now",69.921+70.081,0.943736:S,"obviously","we",70.081+70.191,0.962325:C,"the","the",70.311+70.401,0.999095:C,"road","road",70.401+70.651,0.998122:D,"was",,,:S,"designed","is",70.781+70.861,0.999066:S,"for","not",70.861+71.091,1.000000:S,"much","so",71.091+71.171,1.000000:C,"much","much",71.171+71.621,1.000000:D,"smaller",,,:D,"cars",,,
</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-195)" word_cnt="11" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="471" R_T1="110.075" R_T2="112.975" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"a",,,:S,"lot","one",110.830+111.000,0.624069:C,"of","of",111.000+111.060,0.634372:C,"the","the",111.060+111.120,0.949318:C,"newer","newer",111.120+111.290,0.926203:C,"ones","ones",111.290+111.530,0.922967:D,"are",,,:C,"(act-)","action",111.770+112.050,0.561707:C,"actually","actually",112.090+112.430,0.999998:D,"have",,,
</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-206)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="483" R_T1="137.975" R_T2="139.925" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"two","two",138.410+138.630,0.778309:C,"wheel","wheel",138.630+138.890,0.679203:C,"drive","drive",138.890+139.170,0.680105:D,"s.",,,:D,"u.",,,:D,"v.s",,,
</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-212)" word_cnt="2" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="493" R_T1="155.400" R_T2="155.925" word_aux="h_t1+t2,h_conf">
D,"as",,,:D,"well",,,
</PATH>
<PATH id="(TBVSTT-213)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="495" R_T1="156.075" R_T2="157.810" word_aux="h_t1+t2,h_conf">
S,"which","it's",156.310+156.480,0.794061:C,"is","is",157.490+157.630,0.818167:D,"kind",,,:D,"of",,,:D,"kind",,,:S,"of","the",158.490+158.560,1.000000:S,"interesting","others",158.560+158.830,0.799073
</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-215)" word_cnt="18" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="498" R_T1="161.675" R_T2="164.675" word_aux="h_t1+t2,h_conf">
C,"it","it",161.800+161.860,0.356956:C,"has","has",161.860+162.280,0.803616:C,"something","something",162.280+162.710,0.987023:S,"either","other",162.710+162.970,0.361158:C,"i","i",162.970+163.050,0.960148:C,"do","do",163.050+163.120,0.960148:C,"not","not",163.120+163.190,0.960148:C,"know","know",163.190+163.260,0.960148:D,"if",,,:C,"i","i",163.310+163.390,0.960148:C,"do","do",163.390+163.460,0.960148:C,"not","not",163.460+163.530,0.960148:C,"know","know",163.530+163.650,0.957920:D,"what",,,:S,"kind","how",163.710+163.880,0.903028:C,"this","this",163.880+164.130,0.937714:D,"has",,,:D,"but",,,
</PATH>
<PATH id="(TBVSTT-216)" word_cnt="10" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="500" R_T1="164.675" R_T2="168.350" word_aux="h_t1+t2,h_conf">
S,"likely","like",164.880+165.050,0.997419:C,"a","a",165.190+165.240,0.377927:S,"metal","mental",165.240+165.560,0.465967:C,"band","band",165.620+165.910,0.459722:S,"of","is",165.910+165.990,0.264201:C,"some","some",165.990+166.140,0.817025:C,"kind","kind",166.140+166.430,0.758779:S,"(%hesitation)","of",166.430+166.790,0.757843:C,"with","with",167.400+167.670,1.000000:C,"two","two",167.670+167.990,0.613333
</PATH>
<PATH id="(TBVSTT-217)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="502" R_T1="168.650" R_T2="172.425" word_aux="h_t1+t2,h_conf">
S,"plates","like",168.840+169.040,1.000000:C,"that","that",169.170+169.320,0.516914:D,"move",,,:S,"in","movie",169.470+169.790,0.631086:C,"and","and",169.790+169.930,0.617900:D,"out",,,:S,"and","have",169.930+170.190,0.817459:S,"will","an",170.280+170.480,0.979342:S,"actually","election",170.530+170.910,0.981997:C,"change","change",170.910+171.340,0.584695:D,"the",,,:S,"gear","your",171.590+171.740,0.907565:C,"ratio","ratio",171.740+172.190,0.980884
</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-240)" word_cnt="12" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="562" R_T1="262.525" R_T2="265.950" word_aux="h_t1+t2,h_conf">
C,"how","how",262.720+262.810,0.984004:C,"much","much",262.810+263.090,0.997061:C,"(h-)","",,:C,"(h-)","how",263.230+263.490,1.000000:C,"how","how",263.490+263.600,0.999994:C,"much","much",263.600+263.840,1.000000:C,"more","more",263.840+264.150,1.000000:C,"(%hesitation)","",,:S,"how","i",264.740+264.830,0.998337:S,"many","mean",264.830+264.980,0.998337:S,"more","where",264.980+265.080,0.673260:C,"resources","resources",265.080+265.570,0.999821
</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-254)" word_cnt="5" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="621" R_T1="323.325" R_T2="324.992" word_aux="h_t1+t2,h_conf">
D,"that",,,:C,"are","are",323.591+323.681,0.815351:C,"done","done",323.681+323.851,1.000000:C,"very","very",323.851+324.091,1.000000:C,"inefficiently","inefficiently",324.091+324.681,1.000000
</PATH>
<PATH id="(TBVSTT-255)" word_cnt="5" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="623" R_T1="325.017" R_T2="326.725" word_aux="h_t1+t2,h_conf">
S,"and","you",325.551+325.901,0.998107:S,"(%hesitation)","need",325.901+326.011,0.988413:S,"in","you",326.011+326.121,0.990115:S,"in","need",326.121+326.241,0.989540:S,"(addi-)","to",326.241+326.381,0.968284
</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-257)" word_cnt="12" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="626" R_T1="330.165" R_T2="332.600" word_aux="h_t1+t2,h_conf">
C,"to","to",330.200+330.300,0.999818:C,"get","get",330.300+330.550,1.000000:C,"to","to",330.670+330.760,0.999688:C,"look","look",330.760+330.930,0.999927:C,"at","at",330.930+330.990,0.999925:C,"things","things",330.990+331.210,1.000000:C,"that","that",331.210+331.300,0.999999:C,"are","are",331.300+331.440,0.996772:D,"not",,,:C,"likely","likely",331.440+331.800,0.979349:C,"to","to",331.800+331.860,0.979350:C,"change","change",331.860+332.510,1.000000
</PATH>
<PATH id="(TBVSTT-258)" word_cnt="11" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="628" R_T1="332.600" R_T2="335.675" word_aux="h_t1+t2,h_conf">
C,"and","and",332.690+332.830,0.583107:C,"that","that",332.830+332.990,0.999783:I,,"i",332.990+333.055,0.857555:S,"are","had",333.055+333.120,0.857555:S,"likely","like",333.120+333.330,1.000000:C,"to","to",333.330+333.410,0.995393:C,"have","have",333.410+333.700,0.999999:C,"have","have",333.830+334.060,1.000000:C,"an","an",334.060+334.130,0.999997:C,"impact","impact",334.130+334.650,1.000000:C,"and","and",335.110+335.390,0.948784
</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-260)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="631" R_T1="337.875" R_T2="339.800" word_aux="h_t1+t2,h_conf">
I,,"i",338.030+338.060,0.679179:I,,"will",338.060+338.170,0.688977:S,"obvious","be",338.170+338.350,0.954139:C,"(s-)","signed",338.710+339.010,0.315108:D,"sign",,,:S,"of","or",339.010+339.050,0.484096:C,"something","something",339.050+339.470,1.000000
</PATH>
<PATH id="(TBVSTT-266)" word_cnt="9" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="659" R_T1="368.925" R_T2="370.925" word_aux="h_t1+t2,h_conf">
C,"and","and",369.051+369.181,1.000000:C,"then","then",369.181+369.411,1.000000:C,"(%hesitation)","",,:C,"over","over",369.591+369.801,1.000000:C,"the","the",369.801+369.881,0.994875:S,"space","states",369.881+370.171,0.431629:C,"of","of",370.171+370.231,0.471371:S,"a","the",370.231+370.291,0.700411:C,"summer","summer",370.291+370.681,1.000000
</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-272)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="671" R_T1="386.975" R_T2="389.725" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:S,"was","it's",387.550+387.710,0.817609:S,"riding","running",387.750+388.050,0.958149:C,"off","off",388.050+388.290,1.000000:C,"road","road",388.290+388.730,0.991898:C,"managed","managed",389.020+389.450,0.925878:D,"to",,,
</PATH>
<PATH id="(TBVSTT-273)" word_cnt="8" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="673" R_T1="389.975" R_T2="392.079" word_aux="h_t1+t2,h_conf">
S,"hit","she",389.450+389.590,0.679217:S,"his","she",390.110+390.290,0.967605:S,"hit","gets",390.290+390.490,0.704101:S,"the","keep",390.490+390.690,0.714497:C,"top","top",390.750+391.040,0.501423:C,"of","of",391.040+391.100,0.501388:S,"his","the",391.100+391.210,0.458781:C,"head","head",391.430+391.770,0.916166
</PATH>
<PATH id="(TBVSTT-274)" word_cnt="5" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="674" R_T1="392.088" R_T2="393.850" word_aux="h_t1+t2,h_conf">
C,"and","and",392.201+392.771,1.000000:S,"was","would",392.981+393.111,0.810901:C,"in","in",393.111+393.171,0.816680:C,"the","the",393.171+393.231,0.837136:C,"hospital","hospital",393.231+393.731,0.850148
</PATH>
<PATH id="(TBVSTT-275)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="676" R_T1="394.325" R_T2="396.050" word_aux="h_t1+t2,h_conf">
D,"was",,,:S,"in","would",394.761+394.901,1.000000:S,"the","not",394.901+395.071,1.000000:S,"hospital","possible",395.071+395.421,1.000000:C,"for","for",395.421+395.561,1.000000:C,"a","a",395.561+395.591,1.000000:C,"while","while",395.591+395.991,1.000000
</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-293)" word_cnt="6" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="744" R_T1="489.875" R_T2="491.650" word_aux="h_t1+t2,h_conf">
C,"ten","ten",490.060+490.230,1.000000:C,"or","or",490.230+490.270,1.000000:C,"fifteen","fifteen",490.270+490.660,1.000000:C,"feet","feet",490.660+490.840,1.000000:C,"in","in",490.840+490.920,1.000000:C,"diameter","diameter",490.920+491.570,1.000000
</PATH>
<PATH id="(TBVSTT-294)" word_cnt="9" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="746" R_T1="491.650" R_T2="493.925" word_aux="h_t1+t2,h_conf">
C,"and","and",491.790+491.940,0.999215:D,"the",,,:D,"main",,,:S,"roundabout","me",492.030+492.240,0.838173:S,"is","round",492.240+492.510,0.999964:C,"about","about",492.510+492.810,0.999966:I,,"the",492.810+492.890,0.999966:C,"say","say",493.400+493.610,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(TBVSTT-295)" word_cnt="22" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="747" R_T1="493.925" R_T2="498.275" word_aux="h_t1+t2,h_conf">
D,"a",,,:C,"hundred","hundred",494.040+494.360,1.000000:C,"and","and",494.360+494.450,1.000000:C,"fifty","fifty",494.450+494.670,1.000000:C,"feet","feet",494.670+494.820,1.000000:C,"in","in",494.820+494.900,1.000000:C,"diameter","diameter",494.900+495.320,1.000000:D,"and",,,:S,"so","if",495.450+495.510,1.000000:C,"you","you",495.510+495.610,1.000000:C,"have","have",495.610+495.730,1.000000:S,"two","to",495.730+495.930,1.000000:C,"(wa-)","wait",495.930+496.230,1.000000:S,"two","too",496.230+496.380,0.754975:S,"lanes","late",496.380+496.570,0.747775:S,"of","the",496.570+496.640,0.881895:C,"traffic","traffic",496.640+497.020,1.000000:C,"going","going",497.020+497.200,1.000000:C,"around","around",497.200+497.360,1.000000:C,"the","the",497.360+497.420,0.986909:C,"main","main",497.420+497.650,0.999559:C,"roundabout","roundabout",497.650+498.210,0.961804
</PATH>
<PATH id="(TBVSTT-296)" word_cnt="9" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="749" R_T1="498.275" R_T2="500.550" word_aux="h_t1+t2,h_conf">
S,"and","can",498.470+498.580,0.597690:C,"you","you",498.580+498.650,1.000000:C,"keep","keep",498.650+498.890,1.000000:D,"going",,,:S,"past","up",498.890+499.040,0.998887:S,"these","a",499.040+499.140,0.998887:C,"little","little",499.300+499.460,0.998887:S,"mini","me",499.460+499.740,0.998887:S,"roundabouts","right",499.740+499.850,0.604164
</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-306)" word_cnt="15" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="772" R_T1="534.550" R_T2="537.450" word_aux="h_t1+t2,h_conf">
C,"you","you",534.800+534.910,0.764660:C,"know","know",534.910+535.030,0.764660:D,"the",,,:C,"that","that",535.030+535.190,0.989896:C,"that","that",535.190+535.390,1.000000:S,"either","by",535.450+535.650,0.964052:C,"way","way",535.750+536.050,1.000000:D,"i",,,:D,"mean",,,:C,"i","i",536.050+536.340,0.999999:C,"(th-)","",,:C,"i","i",536.340+536.430,0.994684:C,"think","think",536.430+536.630,1.000000:C,"the","the",536.870+536.940,0.853375:C,"people","people",536.940+537.340,1.000000
</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-324)" word_cnt="1" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="824" R_T1="610.025" R_T2="610.600" word_aux="h_t1+t2,h_conf">
D,"right",,,
</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-328)" word_cnt="4" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="835" R_T1="630.025" R_T2="630.875" word_aux="h_t1+t2,h_conf">
D,"i",,,:C,"(w-)","well",630.330+630.640,0.875692:S,"i","drive",631.840+632.160,1.000000:S,"would","off",632.360+632.590,1.000000
</PATH>
<PATH id="(TBVSTT-329)" word_cnt="17" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="838" R_T1="636.450" R_T2="641.225" word_aux="h_t1+t2,h_conf">
C,"so","so",636.870+637.220,1.000000:C,"so","so",637.350+637.650,0.999981:C,"(%hesitation)","",,:C,"i","i",638.040+638.140,1.000000:C,"(wa-)","was",638.140+638.300,0.581881:C,"i","i",638.300+638.390,1.000000:C,"was","was",638.390+638.610,0.999686:C,"(w-)","",,:S,"driving","talking",638.680+638.970,1.000000:C,"with","with",638.970+639.100,1.000000:C,"some","some",639.100+639.290,0.575779:C,"arabic","arabic",639.360+639.610,1.000000:C,"speaking","speaking",639.610+639.880,1.000000:C,"people","people",639.880+640.170,1.000000:D,"guy",,,:D,"was",,,:C,"driving","driving",640.690+641.110,0.995266
</PATH>
<PATH id="(TBVSTT-330)" word_cnt="12" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="840" R_T1="641.225" R_T2="644.250" word_aux="h_t1+t2,h_conf">
C,"(was)","",,:D,"%hesitation",,,:D,"a",,,:D,"native",,,:S,"arabic","every",642.140+642.340,0.720761:C,"speaker","speaker",642.340+642.660,1.000000:D,"we",,,:C,"we","we",642.660+642.890,1.000000:C,"we","we",642.890+643.200,1.000000:C,"we","we",643.280+643.420,1.000000:C,"were","were",643.420+643.520,1.000000:C,"driving","driving",643.520+643.960,1.000000
</PATH>
<PATH id="(TBVSTT-331)" word_cnt="9" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="842" R_T1="644.250" R_T2="646.350" word_aux="h_t1+t2,h_conf">
C,"and","and",644.310+644.720,1.000000:D,"it",,,:D,"was",,,:D,"there",,,:D,"was",,,:S,"a","is",644.870+644.960,0.404907:S,"traffic","this",645.050+645.240,0.882869:S,"light","topic",645.240+645.540,0.887309:S,"about","but",645.540+645.770,0.982820
</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>
<PATH id="(TBVSTT-342)" word_cnt="10" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="861" R_T1="681.525" R_T2="683.425" word_aux="h_t1+t2,h_conf">
D,"arabic",,,:D,"i",,,:D,"mean",,,:D,"there",,,:D,"is",,,:D,"not",,,:D,"there",,,:D,"is",,,:C,"(s-)","",,:C,"(s-)","",,
</PATH>
<PATH id="(TBVSTT-343)" word_cnt="3" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="862" R_T1="684.150" R_T2="685.400" word_aux="h_t1+t2,h_conf">
D,"standard",,,:D,"arabic",,,:C,"(%hesitation)","",,
</PATH>
<PATH id="(TBVSTT-344)" word_cnt="6" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="863" R_T1="685.850" R_T2="689.275" word_aux="h_t1+t2,h_conf">
D,"there",,,:D,"is",,,:D,"not",,,:D,"really",,,:D,"a",,,:D,"standard",,,
</PATH>
<PATH id="(TBVSTT-345)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="865" R_T1="693.275" R_T2="695.000" word_aux="h_t1+t2,h_conf">
D,"right",,,:D,"so",,,:D,"so",,,:D,"there",,,:D,"is",,,:C,"(s-)","",,:D,"so",,,
</PATH>
</SPEAKER>
<SPEAKER id="YWTKTM">
<PATH id="(YWTKTM-010)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="44" R_T1="124.600" R_T2="125.950" word_aux="h_t1+t2,h_conf">
S,"%hesitation","i",125.470+125.500,0.551777
</PATH>
<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-020)" word_cnt="4" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="66" R_T1="171.175" R_T2="173.600" word_aux="h_t1+t2,h_conf">
S,"proportionally","unfortunately",171.390+171.940,0.699534:S,"almost","all",171.940+172.150,0.743590:C,"nothing","nothing",172.250+172.590,1.000000:C,"but","but",173.040+173.400,0.999999
</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-025)" word_cnt="4" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="74" R_T1="187.275" R_T2="189.575" word_aux="h_t1+t2,h_conf">
D,"regardless",,,:D,"of",,,:D,"cost",,,:D,"or",,,
</PATH>
<PATH id="(YWTKTM-028)" word_cnt="5" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="80" R_T1="194.825" R_T2="198.475" word_aux="h_t1+t2,h_conf">
D,"yeah",,,:D,"right",,,:S,"the","box",193.730+194.050,0.999853:S,"eblul","we",196.690+196.850,1.000000:S,"eblul","language",197.060+197.460,1.000000
</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-036)" word_cnt="8" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="112" R_T1="243.050" R_T2="245.600" word_aux="h_t1+t2,h_conf">
D,"o.",,,:D,"k.",,,:S,"of","is",246.570+246.670,0.984116:C,"the","the",246.670+246.760,0.933210:D,"european",,,:D,"council",,,:D,"or",,,:S,"the","wonder",247.910+248.130,0.677015
</PATH>
<PATH id="(YWTKTM-044)" word_cnt="2" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="161" R_T1="329.275" R_T2="330.175" word_aux="h_t1+t2,h_conf">
D,"o.",,,:D,"k.",,,
</PATH>
<PATH id="(YWTKTM-052)" word_cnt="2" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="203" R_T1="399.250" R_T2="400.700" word_aux="h_t1+t2,h_conf">
D,"anything",,,:S,"yeah","well",400.120+400.530,0.895295
</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-060)" word_cnt="4" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="244" R_T1="467.027" R_T2="468.500" word_aux="h_t1+t2,h_conf">
C,"a","a",467.190+467.260,0.589535:C,"plane","plane",467.260+467.490,0.998010:S,"crashed","crash",467.490+467.820,0.999368:S,"recently","reason",467.820+468.090,0.323594
</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-064)" word_cnt="9" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="256" R_T1="481.075" R_T2="483.625" word_aux="h_t1+t2,h_conf">
C,"something","something",481.460+481.870,0.884111:D,"and",,,:C,"i","i",482.090+482.200,0.999978:C,"can","can",482.200+482.305,0.989469:C,"not","not",482.305+482.410,0.989469:C,"remember","remember",482.410+482.650,1.000000:C,"what","what",482.650+482.770,0.999657:C,"it","it",482.770+482.830,0.993216:C,"was","was",482.830+483.140,1.000000
</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-070)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="282" R_T1="523.128" R_T2="523.932" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(YWTKTM-071)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="285" R_T1="527.994" R_T2="528.739" word_aux="h_t1+t2,h_conf">
S,"%bcack","the",526.150+526.210,1.000000
</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-081)" word_cnt="2" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="335" R_T1="589.389" R_T2="590.662" word_aux="h_t1+t2,h_conf">
D,"cost",,,:S,"like","of",591.440+591.510,0.297641
</PATH>
<PATH id="(YWTKTM-083)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="343" R_T1="607.673" R_T2="608.596" word_aux="h_t1+t2,h_conf">
S,"%bcack","do",608.130+608.340,0.632998
</PATH>
<PATH id="(YWTKTM-086)" word_cnt="5" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="356" R_T1="631.768" R_T2="633.472" word_aux="h_t1+t2,h_conf">
D,"eighty",,,:D,"million",,,:S,"and","really",632.420+632.620,0.586144:S,"it","any",632.730+632.910,0.874130:S,"costs","thoughts",632.910+633.200,0.754639
</PATH>
<PATH id="(YWTKTM-087)" word_cnt="8" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="358" R_T1="633.690" R_T2="636.692" word_aux="h_t1+t2,h_conf">
C,"several","several",633.840+634.230,1.000000:C,"thousand","thousand",634.510+634.950,1.000000:C,"dollars","dollars",634.950+635.330,1.000000:S,"to","that",635.330+635.430,0.377753:S,"put","the",635.670+635.750,0.841696:C,"gas","gas",635.750+636.190,0.999483:C,"in","in",636.190+636.300,0.729915:C,"it","it",636.400+636.480,0.923928
</PATH>
<PATH id="(YWTKTM-093)" word_cnt="2" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="379" R_T1="657.196" R_T2="657.981" word_aux="h_t1+t2,h_conf">
S,"sorry","so",657.350+657.510,0.918669:C,"what","what",657.510+657.750,0.895722
</PATH>
<PATH id="(YWTKTM-094)" word_cnt="7" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="380" R_T1="659.040" R_T2="661.140" word_aux="h_t1+t2,h_conf">
S,"i","often",659.040+659.510,0.861237:C,"do","do",659.510+659.605,1.000000:C,"not","not",659.605+659.700,1.000000:D,"never",,,:S,"met","get",660.060+660.160,0.946160:S,"him","anything",660.160+660.560,1.000000:S,"yeah","off",661.380+661.650,0.996589
</PATH>
<PATH id="(YWTKTM-095)" word_cnt="6" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="383" R_T1="663.828" R_T2="665.868" word_aux="h_t1+t2,h_conf">
C,"she","she",664.060+664.260,0.980976:D,"has",,,:D,"a",,,:D,"private",,,:S,"jet","speech",665.530+665.910,0.999950:S,"wow","speech",667.000+667.440,0.999877
</PATH>
<PATH id="(YWTKTM-096)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="387" R_T1="673.874" R_T2="674.678" word_aux="h_t1+t2,h_conf">
D,"wow",,,
</PATH>
<PATH id="(YWTKTM-110)" word_cnt="1" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="446" R_T1="69.850" R_T2="70.625" word_aux="h_t1+t2,h_conf">
S,"yeah","do",70.191+70.311,0.953888
</PATH>
<PATH id="(YWTKTM-111)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="447" R_T1="71.575" R_T2="73.675" word_aux="h_t1+t2,h_conf">
C,"i","i",71.751+71.831,1.000000:C,"think","think",71.831+71.991,1.000000:S,"i","one",71.991+72.181,0.989544:S,"think","of",72.181+72.241,0.989544:C,"the","the",72.241+72.301,0.989971:D,"problem",,,:D,"with",,,:D,"s.",,,:D,"u.",,,:D,"v.s",,,:S,"is","problems",72.301+72.791,0.989544:S,"that","be",72.791+73.011,0.825746:C,"that","that",73.171+73.371,1.000000
</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-118)" word_cnt="1" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="470" R_T1="109.650" R_T2="110.300" word_aux="h_t1+t2,h_conf">
S,"%hesitation","house",112.430+112.740,0.585293
</PATH>
<PATH id="(YWTKTM-121)" word_cnt="1" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="494" R_T1="156.050" R_T2="156.725" word_aux="h_t1+t2,h_conf">
S,"%bcack","the",156.880+156.940,0.779119
</PATH>
<PATH id="(YWTKTM-122)" word_cnt="13" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="496" R_T1="157.275" R_T2="160.325" word_aux="h_t1+t2,h_conf">
S,"does","truth",157.110+157.490,0.792470:S,"that","i",157.630+157.680,0.934817:C,"mean","mean",157.680+157.890,0.999320:C,"like","like",157.890+158.050,0.999994:C,"(know)","",,:S,"exact","are",158.830+158.980,0.799073:S,"gears","years",159.130+159.540,0.984831:C,"that","that",159.610+159.720,0.909035:C,"it","it",159.720+159.790,0.996933:C,"is","is",159.790+159.860,0.996933:D,"in",,,:C,"(i-)","",,:S,"it","easy",159.860+160.180,0.826646
</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-137)" word_cnt="9" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="539" R_T1="236.275" R_T2="238.750" word_aux="h_t1+t2,h_conf">
C,"i","i",236.560+236.660,0.907808:C,"do","do",236.660+236.730,0.558477:C,"not","not",236.730+236.800,0.558477:C,"that","that",236.800+236.970,0.985338:D,"is",,,:C,"just","just",237.140+237.310,0.970980:D,"a",,,:D,"stereotype",,,:S,"though","area",237.550+237.920,0.929290
</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-188)" word_cnt="2" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="660" R_T1="369.150" R_T2="370.000" word_aux="h_t1+t2,h_conf">
S,"heh","them",369.411+369.591,0.645691:C,"(%hesitation)","",,
</PATH>
<PATH id="(YWTKTM-197)" word_cnt="14" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="696" R_T1="416.875" R_T2="419.775" word_aux="h_t1+t2,h_conf">
D,"but",,,:D,"i",,,:D,"did",,,:D,"not",,,:D,"ride",,,:D,"it",,,:D,"when",,,:D,"i",,,:D,"was",,,:S,"late","that",417.040+417.260,0.853574:S,"for","is",417.260+417.320,0.558996:S,"class","right",417.320+417.630,0.900245:S,"because","mostly",417.630+418.060,0.553436:S,"it","place",418.060+418.290,0.270164
</PATH>
<PATH id="(YWTKTM-198)" word_cnt="5" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="699" R_T1="421.125" R_T2="422.100" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"was",,,:S,"in","think",425.200+425.470,0.999923:S,"a","it's",425.470+425.690,1.000000:S,"hurry","it's",425.790+425.970,0.999947
</PATH>
<PATH id="(YWTKTM-220)" word_cnt="1" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="773" R_T1="534.600" R_T2="535.475" word_aux="h_t1+t2,h_conf">
S,"yeah","the",535.650+535.750,0.967538
</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-233)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="816" R_T1="599.800" R_T2="600.875" word_aux="h_t1+t2,h_conf">
D,"do",,,:D,"you",,,:D,"know",,,:D,"what",,,:D,"i",,,:D,"mean",,,:S,"like","%bcack",599.870+600.390,0.948182
</PATH>
<PATH id="(YWTKTM-235)" word_cnt="6" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="823" R_T1="608.875" R_T2="610.475" word_aux="h_t1+t2,h_conf">
C,"i","i",609.100+609.170,1.000000:C,"mean","mean",609.170+609.370,1.000000:S,"no","i",609.490+609.570,0.998364:C,"i","i",609.570+609.600,0.999995:C,"mean","mean",609.600+609.740,0.999995:C,"obviously","obviously",609.740+610.110,1.000000
</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-237)" word_cnt="14" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="826" R_T1="612.800" R_T2="616.000" word_aux="h_t1+t2,h_conf">
C,"i","i",613.050+613.140,1.000000:C,"do","do",613.140+613.230,0.982534:C,"not","not",613.230+613.320,0.982534:C,"think","think",613.320+613.490,1.000000:C,"that","that",613.490+613.610,0.597769:D,"horn",,,:D,"honking",,,:D,"ever",,,:S,"really","for",613.610+613.780,0.552800:S,"solves","all",614.580+614.790,0.770687:C,"very","very",614.790+614.940,0.969893:C,"much","much",614.940+615.260,0.999995:D,"in",,,:C,"traffic","traffic",615.340+615.750,1.000000
</PATH>
<PATH id="(YWTKTM-240)" word_cnt="12" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="836" R_T1="630.050" R_T2="632.900" word_aux="h_t1+t2,h_conf">
D,"why",,,:D,"why",,,:D,"would",,,:D,"not",,,:C,"(%hesitation)","",,:D,"some",,,:D,"why",,,:S,"would","the",630.980+631.150,0.846692:S,"a","one",631.470+631.640,0.992587:S,"driver","with",631.640+631.780,0.736426:S,"not","the",631.780+631.840,0.717499:C,"(have)","",,
</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>
<PATH id="(YWTKTM-242)" word_cnt="2" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="839" R_T1="640.000" R_T2="640.950" word_aux="h_t1+t2,h_conf">
S,"o.","well",637.700+638.040,0.984892:S,"k.","got",640.170+640.400,0.707979
</PATH>
</SPEAKER>
<SPEAKER id="NWXRPL">
<PATH id="(NWXRPL-012)" word_cnt="1" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="163" R_T1="332.175" R_T2="334.075" word_aux="h_t1+t2,h_conf">
S,"yeah","cases",332.170+332.690,1.000000
</PATH>
<PATH id="(NWXRPL-034)" word_cnt="15" labels="<O,MALE,C1>" file="CMU_20030109-1530_D_NONE" channel="1" sequence="346" R_T1="613.625" R_T2="618.525" word_aux="h_t1+t2,h_conf">
D,"yeah",,,:D,"but",,,:D,"if",,,:C,"you","you",613.880+614.100,0.995919:C,"want","want",614.100+614.260,0.995919:C,"that","that",614.260+614.530,0.995919:D,"nice",,,:D,"of",,,:D,"experience",,,:D,"just",,,:D,"get",,,:D,"your",,,:D,"own",,,:S,"private","comes",614.840+615.120,0.999999:S,"jet","across",615.260+615.500,0.989747
</PATH>
<PATH id="(NWXRPL-059)" word_cnt="7" labels="<O,MALE,C2>" file="CMU_20030109-1600_D_NONE" channel="1" sequence="561" R_T1="261.125" R_T2="262.975" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"do",,,:D,"not",,,:D,"pay",,,:S,"for","a",261.270+261.450,0.434114:S,"gas","paper",261.450+261.710,0.999857:S,"so","cut",261.710+261.930,0.544682
</PATH>
<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-000)" word_cnt="13" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="866" R_T1="1147.765" R_T2="1151.469" word_aux="h_t1+t2,h_conf">
C,"and","and",1147.770+1147.920,0.998580:C,"i","i",1147.920+1147.990,0.999935:C,"can","can",1147.990+1148.230,1.000000:C,"get","get",1148.230+1148.690,1.000000:C,"(%hesitation)","",,:C,"i","i",1149.370+1149.460,0.999439:C,"think","think",1149.460+1149.630,0.999439:C,"i","i",1149.630+1149.690,0.999179:S,"can","think",1149.690+1149.890,0.999179:S,"get","it's",1149.890+1150.060,0.973051:S,"some","an",1150.060+1150.150,0.919027:C,"administrative","administrative",1150.150+1150.800,1.000000:C,"meetings","meetings",1150.800+1151.260,0.965559
</PATH>
<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-026)" word_cnt="12" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="922" R_T1="1262.891" R_T2="1267.516" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"(%hesitation)","",,:C,"(%hesitation)","",,:C,"so","so",1263.930+1264.580,1.000000:C,"(th-)","",,:C,"(i-)","it",1264.890+1265.070,0.961244:C,"it","it",1265.070+1265.205,0.999942:C,"is","is",1265.205+1265.340,0.999942:C,"two","two",1265.560+1265.820,0.912941:C,"completely","completely",1265.820+1266.250,1.000000:C,"different","different",1266.250+1266.560,1.000000:S,"philosophies","philosophy",1266.560+1267.340,0.921208
</PATH>
<PATH id="(FE041-027)" word_cnt="9" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="924" R_T1="1268.047" R_T2="1271.295" word_aux="h_t1+t2,h_conf">
C,"and","and",1268.190+1268.960,1.000000:C,"(%hesitation)","",,:C,"the","the",1269.230+1269.360,0.999965:C,"only","only",1269.360+1269.680,1.000000:C,"reason","reason",1269.680+1270.010,1.000000:C,"i","i",1270.010+1270.065,0.961628:C,"am","am",1270.065+1270.120,0.961628:C,"proposing","proposing",1270.120+1270.790,1.000000:S,"this","that",1270.790+1271.020,0.860997
</PATH>
<PATH id="(FE041-028)" word_cnt="6" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="926" R_T1="1271.779" R_T2="1274.392" word_aux="h_t1+t2,h_conf">
S,"(%hesitation)","it",1272.250+1272.490,0.970196:S,"(%hesitation)","and",1273.060+1273.150,0.999821:S,"doing","during",1273.150+1273.380,0.820089:C,"the","the",1273.380+1273.460,0.986614:C,"portable","portable",1273.460+1273.900,0.997918:C,"thing","thing",1273.900+1274.310,0.997529
</PATH>
<PATH id="(FE041-029)" word_cnt="7" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="927" R_T1="1274.743" R_T2="1277.619" word_aux="h_t1+t2,h_conf">
D,"is",,,:C,"is","is",1274.790+1275.200,1.000000:C,"from","from",1275.830+1276.080,1.000000:C,"the","the",1276.080+1276.140,1.000000:C,"language","language",1276.140+1276.490,1.000000:C,"modeling","modeling",1276.490+1276.780,0.992615:C,"perspective","perspective",1276.780+1277.420,0.995158
</PATH>
<PATH id="(FE041-030)" word_cnt="14" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="929" R_T1="1277.943" R_T2="1282.428" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"i","i",1278.350+1278.490,1.000000:C,"think","think",1278.490+1278.740,1.000000:C,"it","it",1278.740+1278.800,0.999979:C,"would","would",1278.800+1278.890,1.000000:C,"be","be",1278.890+1279.050,1.000000:C,"interesting","interesting",1279.050+1279.550,1.000000:C,"to","to",1279.550+1279.670,1.000000:C,"get","get",1279.670+1280.180,1.000000:C,"a","a",1280.180+1280.240,0.999939:C,"bigger","bigger",1280.240+1280.520,0.997854:C,"variety","variety",1280.520+1281.240,0.999999:C,"and","and",1281.520+1281.800,1.000000:C,"so","so",1281.800+1282.380,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-040)" word_cnt="9" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="942" R_T1="1311.951" R_T2="1315.576" word_aux="h_t1+t2,h_conf">
S,"have","of",1311.980+1312.100,0.344585:C,"the","the",1312.100+1312.190,0.911891:C,"computing","computing",1312.190+1312.740,1.000000:D,"environment",,,:C,"all","all",1314.490+1314.660,0.628287:C,"be","be",1314.660+1314.800,0.998023:C,"on","on",1314.800+1314.880,0.992536:C,"a","a",1314.880+1314.920,0.950949:C,"laptop","laptop",1314.920+1315.430,1.000000
</PATH>
<PATH id="(FE041-045)" word_cnt="1" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="955" R_T1="1328.090" R_T2="1328.611" word_aux="h_t1+t2,h_conf">
D,"right",,,
</PATH>
<PATH id="(FE041-046)" word_cnt="16" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="958" R_T1="1335.437" R_T2="1338.770" word_aux="h_t1+t2,h_conf">
C,"it","it",1335.480+1335.585,0.679689:C,"is","is",1335.585+1335.690,0.679689:C,"(%hesitation)","",,:C,"well","well",1336.160+1336.470,1.000000:C,"i","i",1336.470+1336.510,1.000000:C,"am","am",1336.510+1336.550,1.000000:C,"not","not",1336.550+1336.710,1.000000:C,"sure","sure",1336.710+1336.890,1.000000:C,"it","it",1336.890+1336.950,0.954519:C,"is","is",1336.950+1337.010,0.954519:C,"very","very",1337.010+1337.220,1.000000:C,"portable","portable",1337.220+1337.750,1.000000:D,"i",,,:D,"would",,,:S,"have","attest",1337.750+1338.190,0.601187:C,"to","to",1338.190+1338.370,0.971326
</PATH>
<PATH id="(FE041-047)" word_cnt="25" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="960" R_T1="1338.770" R_T2="1342.413" word_aux="h_t1+t2,h_conf">
D,"i",,,:S,"would","act",1338.870+1339.050,0.892750:C,"(g-)","",,:C,"i","i",1339.050+1339.340,0.999999:C,"i","i",1339.340+1339.490,1.000000:C,"do","do",1339.490+1339.585,1.000000:C,"not","not",1339.585+1339.680,1.000000:C,"think","think",1339.680+1339.820,1.000000:C,"i","i",1339.820+1339.870,0.617752:C,"would","would",1339.870+1339.920,0.617752:C,"get","get",1339.920+1340.140,0.999869:D,"it",,,:C,"to","to",1340.140+1340.240,1.000000:C,"the","the",1340.240+1340.310,0.999388:C,"med","med",1340.310+1340.520,0.999484:C,"school","school",1340.520+1340.760,0.999503:S,"i","like",1340.760+1340.900,0.975069:S,"could","to",1340.900+1340.990,0.866991:C,"get","get",1340.990+1341.220,1.000000:D,"it",,,:C,"over","over",1341.220+1341.440,0.998236:C,"to","to",1341.440+1341.550,0.979463:D,"c.",,,:D,"s.",,,:D,"e.",,,
</PATH>
<PATH id="(FE041-048)" word_cnt="13" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="962" R_T1="1343.320" R_T2="1347.065" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"and","and",1343.870+1344.040,0.999144:C,"i","i",1344.040+1344.100,0.999976:C,"could","could",1344.100+1344.280,0.999998:C,"definitely","definitely",1344.280+1344.830,1.000000:C,"get","get",1344.830+1345.070,1.000000:C,"it","it",1345.070+1345.210,1.000000:C,"to","to",1345.320+1345.520,0.999965:C,"different","different",1345.560+1345.910,0.999995:C,"rooms","rooms",1345.910+1346.190,0.997482:C,"in","in",1346.190+1346.310,0.757993:C,"our","our",1346.310+1346.400,0.962788:C,"building","building",1346.400+1346.770,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-057)" word_cnt="3" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="994" R_T1="1396.543" R_T2="1397.375" word_aux="h_t1+t2,h_conf">
D,"there",,,:D,"is",,,:C,"(a-)","a",1397.160+1397.230,1.000000
</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-066)" word_cnt="15" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1029" R_T1="1453.324" R_T2="1458.387" word_aux="h_t1+t2,h_conf">
C,"well","well",1453.660+1453.810,1.000000:C,"maybe","maybe",1453.810+1454.170,1.000000:C,"i","i",1454.170+1454.250,1.000000:C,"should","should",1454.250+1454.500,1.000000:C,"just","just",1454.500+1454.770,1.000000:C,"shoot","shoot",1454.770+1455.120,0.911128:C,"for","for",1455.120+1455.270,1.000000:C,"the","the",1455.270+1455.390,1.000000:C,"wheeling","wheeling",1455.390+1455.790,1.000000:C,"around","around",1455.790+1456.110,1.000000:I,,"with",1456.110+1456.310,0.950033:S,"within","then",1456.310+1456.660,0.465693:S,"i","meets",1456.970+1457.260,0.497974:S,"mean","are",1457.260+1457.400,0.636604:S,"certainly","going",1457.400+1457.850,0.768580
</PATH>
<PATH id="(FE041-067)" word_cnt="5" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1032" R_T1="1459.120" R_T2="1460.998" word_aux="h_t1+t2,h_conf">
S,"wheeling","willing",1459.100+1459.450,0.728001:C,"around","around",1459.450+1459.790,1.000000:C,"within","within",1459.790+1460.110,0.738118:C,"the","the",1460.110+1460.180,1.000000:C,"building","building",1460.180+1460.810,0.999998
</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-076)" word_cnt="2" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1042" R_T1="1485.428" R_T2="1486.498" word_aux="h_t1+t2,h_conf">
S,"would","or",1484.540+1484.850,0.376595:S,"would","when",1485.420+1485.780,0.998375
</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-079)" word_cnt="1" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1049" R_T1="1493.139" R_T2="1494.213" word_aux="h_t1+t2,h_conf">
S,"but","set",1496.740+1496.910,0.613323
</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>
<PATH id="(FE041-100)" word_cnt="28" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1158" R_T1="1697.983" R_T2="1703.130" word_aux="h_t1+t2,h_conf">
S,"but","bad",1698.130+1698.400,0.751032:S,"but","that",1698.400+1698.540,0.753350:C,"i","i",1698.540+1698.700,0.549695:C,"will","will",1698.700+1698.800,1.000000:C,"not","not",1698.800+1698.900,1.000000:C,"be","be",1698.900+1698.990,1.000000:C,"able","able",1698.990+1699.130,1.000000:C,"to","to",1699.130+1699.190,1.000000:C,"do","do",1699.190+1699.550,1.000000:C,"quite","quite",1699.930+1700.150,0.995707:D,"as",,,:C,"(mu-)","",,:D,"but",,,:D,"we",,,:D,"will",,,:D,"hopefully",,,:D,"we",,,:D,"will",,,:D,"get",,,:D,"enough",,,:S,"data","like",1700.250+1700.430,0.846315:C,"that","that",1700.430+1700.640,0.965421:S,"it","off",1700.640+1701.060,0.928382:S,"will","a",1701.060+1701.110,0.929692:S,"not","little",1701.110+1701.300,0.929690:C,"be","be",1702.340+1702.410,1.000000:C,"a","a",1702.410+1702.450,1.000000:C,"problem","problem",1702.450+1702.770,1.000000
</PATH>
</SPEAKER>
<SPEAKER id="ME031">
<PATH id="(ME031-000)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="867" R_T1="1151.011" R_T2="1151.585" word_aux="h_t1+t2,h_conf">
S,"%bcack","to",1148.770+1148.930,1.000000
</PATH>
<PATH id="(ME031-006)" word_cnt="6" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="893" R_T1="1196.349" R_T2="1197.516" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"it",,,:D,"is",,,:D,"not",,,:D,"only",,,:S,"a","tracks",1198.620+1198.970,0.732669
</PATH>
<PATH id="(ME031-007)" word_cnt="21" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="894" R_T1="1198.838" R_T2="1203.716" word_aux="h_t1+t2,h_conf">
C,"it","it",1199.240+1199.340,0.999008:C,"is","is",1199.340+1199.440,0.999008:D,"not",,,:C,"only","only",1199.440+1199.730,0.999995:D,"the",,,:C,"issue","issue",1199.730+1200.020,1.000000:D,"of",,,:C,"making","making",1200.020+1200.360,1.000000:C,"it","it",1200.360+1200.480,0.985789:C,"portable","portable",1200.480+1200.900,1.000000:C,"but","but",1200.900+1201.060,1.000000:C,"even","even",1201.060+1201.340,1.000000:C,"if","if",1201.340+1201.480,1.000000:C,"it","it",1201.480+1201.610,1.000000:C,"were","were",1201.610+1201.790,1.000000:C,"portable","portable",1201.790+1202.440,1.000000:C,"would","would",1202.440+1202.560,1.000000:C,"you","you",1202.560+1202.770,1.000000:C,"be","be",1202.770+1202.980,1.000000:C,"able","able",1202.980+1203.240,1.000000:C,"to","to",1203.240+1203.580,1.000000
</PATH>
<PATH id="(ME031-017)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="928" R_T1="1276.987" R_T2="1277.679" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(ME031-018)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="930" R_T1="1281.239" R_T2="1282.011" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(ME031-023)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="956" R_T1="1328.326" R_T2="1329.300" word_aux="h_t1+t2,h_conf">
C,"itself","itself",1328.430+1328.920,0.999874
</PATH>
<PATH id="(ME031-030)" word_cnt="14" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="993" R_T1="1396.211" R_T2="1400.368" word_aux="h_t1+t2,h_conf">
C,"it","it",1396.220+1396.350,0.994561:C,"should","should",1396.350+1396.510,0.999211:C,"just","just",1396.510+1396.780,0.999937:C,"be","be",1396.880+1397.160,0.999744:S,"look","little",1397.230+1397.480,1.000000:S,"all","hole",1397.480+1397.620,0.999997:C,"you","you",1397.620+1397.790,0.996175:C,"would","would",1397.790+1397.940,0.993155:C,"technically","technically",1398.330+1398.890,0.778578:C,"need","need",1398.890+1399.170,0.837499:C,"you","you",1399.170+1399.320,0.997969:C,"need","need",1399.320+1399.520,0.999195:C,"the","the",1399.520+1399.600,0.979325:S,"recorder","reporter",1399.600+1400.270,0.994365
</PATH>
<PATH id="(ME031-033)" word_cnt="4" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1001" R_T1="1409.983" R_T2="1411.112" word_aux="h_t1+t2,h_conf">
C,"for","for",1410.070+1410.150,0.281166:C,"the","the",1410.150+1410.300,0.977265:C,"p.","p.",1410.300+1410.550,1.000000:C,"c.","c.",1410.550+1411.030,1.000000
</PATH>
<PATH id="(ME031-034)" word_cnt="14" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1002" R_T1="1411.659" R_T2="1414.922" word_aux="h_t1+t2,h_conf">
C,"you","you",1411.620+1411.760,0.999948:C,"know","know",1411.760+1411.980,0.999948:C,"(%hesitation)","",,:C,"by","by",1412.280+1412.380,0.999920:C,"the","the",1412.380+1412.490,0.999988:C,"time","time",1412.490+1412.810,1.000000:C,"you","you",1412.810+1412.875,1.000000:C,"are","are",1412.875+1412.940,1.000000:C,"done","done",1412.940+1413.250,1.000000:C,"the","the",1413.250+1413.340,0.733416:S,"thing","same",1413.340+1413.620,0.419724:S,"would","path",1413.840+1414.090,0.373041:S,"probably","maybe",1414.260+1414.730,0.577096:S,"be","they",1415.230+1415.370,0.498086
</PATH>
<PATH id="(ME031-035)" word_cnt="23" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1004" R_T1="1414.922" R_T2="1421.526" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"(y-)","",,:C,"you","you",1415.660+1415.810,0.690647:C,"can","can",1415.810+1416.010,0.685297:C,"get","get",1416.010+1416.260,1.000000:S,"carts","clark's",1416.260+1416.800,0.836843:C,"we","we",1416.800+1416.920,1.000000:C,"used","used",1416.920+1417.150,1.000000:C,"to","to",1417.280+1417.440,1.000000:S,"(%hesitation)","i",1418.430+1418.480,1.000000:C,"i","i",1418.480+1418.700,1.000000:C,"i","i",1418.700+1418.790,1.000000:C,"mean","mean",1418.790+1418.930,0.999980:S,"we","he",1419.020+1419.090,0.694959:S,"have","is",1419.090+1419.160,0.694959:C,"done","done",1419.240+1419.500,1.000000:C,"these","these",1419.500+1419.740,1.000000:C,"things","things",1419.840+1420.170,1.000000:C,"before","before",1420.290+1420.730,0.999970:D,"where",,,:C,"we","we",1420.730+1421.080,0.999970:D,"have",,,:S,"had","came",1421.080+1421.390,0.977246
</PATH>
<PATH id="(ME031-043)" word_cnt="25" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1048" R_T1="1492.615" R_T2="1500.944" word_aux="h_t1+t2,h_conf">
C,"i","i",1493.130+1493.310,1.000000:C,"i","i",1493.310+1493.540,1.000000:C,"i","i",1493.590+1493.780,0.999596:S,"go","gold",1493.820+1494.170,0.867607:S,"lean","can",1494.230+1494.440,0.472793:C,"on","on",1494.440+1494.670,1.000000:C,"the","the",1494.670+1494.730,0.963315:C,"side","side",1494.730+1495.190,0.980688:D,"of",,,:C,"of","of",1495.340+1495.440,0.748686:C,"of","of",1495.440+1495.680,1.000000:C,"having","having",1495.710+1496.060,0.999868:C,"a","a",1496.060+1496.130,0.518182:C,"portable","portable",1496.130+1496.660,1.000000:S,"setup","up",1496.910+1497.100,0.613323:C,"as","as",1497.100+1497.220,0.552757:C,"a","a",1497.220+1497.280,0.659397:C,"contrast","contrast",1497.280+1498.010,0.994497:C,"i","i",1498.010+1498.170,0.993616:C,"think","think",1498.170+1498.390,1.000000:C,"it","it",1498.390+1498.500,1.000000:C,"is","is",1498.500+1498.610,1.000000:C,"too","too",1498.610+1498.820,0.778637:S,"early","worldly",1498.820+1499.460,0.588479:S,"to","true",1500.190+1500.730,0.940245
</PATH>
<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-048)" word_cnt="31" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1060" R_T1="1522.081" R_T2="1529.865" word_aux="h_t1+t2,h_conf">
S,"and","then",1522.720+1522.820,0.522186:C,"the","the",1522.820+1523.070,0.999981:C,"idea","idea",1523.070+1523.350,0.999678:C,"(%hesitation)","",,:S,"and","same",1523.600+1523.830,0.460476:C,"by","by",1524.010+1524.200,0.998609:C,"having","having",1524.200+1524.550,1.000000:C,"it","it",1524.550+1524.640,0.994484:C,"in","in",1524.640+1524.790,0.999284:C,"one","one",1524.790+1525.030,0.999092:C,"room","room",1525.030+1525.320,0.998180:C,"by","by",1525.320+1525.520,0.950560:C,"nature","nature",1525.520+1525.920,1.000000:C,"you","you",1525.920+1525.995,0.502026:S,"are","have",1525.995+1526.070,0.502026:S,"going","been",1526.070+1526.180,0.456900:S,"to","it",1526.180+1526.270,0.429642:C,"tend","tend",1526.270+1526.530,0.385235:C,"to","to",1526.530+1526.600,1.000000:C,"get","get",1526.600+1526.820,1.000000:C,"the","the",1526.820+1526.900,0.999229:C,"same","same",1526.900+1527.260,1.000000:C,"people","people",1527.260+1527.740,1.000000:C,"over","over",1527.740+1528.130,1.000000:C,"and","and",1528.130+1528.220,1.000000:C,"over","over",1528.220+1528.600,1.000000:C,"again","again",1528.600+1528.940,1.000000:D,"and",,,:C,"(i-)","it",1529.160+1529.370,0.637337:C,"it","it",1529.370+1529.530,0.550979:C,"is","is",1529.530+1529.690,0.550979
</PATH>
<PATH id="(ME031-049)" word_cnt="28" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1061" R_T1="1530.210" R_T2="1537.575" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"i","i",1530.690+1530.870,1.000000:C,"think","think",1530.870+1531.070,1.000000:C,"we","we",1531.070+1531.180,0.999794:D,"are",,,:C,"still","still",1531.180+1531.450,0.999794:C,"in","in",1531.700+1531.780,0.915802:D,"an",,,:C,"exploratory","exploratory",1531.780+1532.570,1.000000:C,"phase","phase",1532.570+1532.960,0.999004:C,"at","at",1532.960+1533.070,0.999361:C,"this","this",1533.070+1533.240,0.992710:C,"point","point",1533.300+1533.550,1.000000:C,"so","so",1533.620+1533.900,1.000000:C,"i","i",1533.900+1534.050,0.750110:C,"i","i",1534.050+1534.240,1.000000:C,"would","would",1534.240+1534.360,1.000000:C,"go","go",1534.450+1534.630,1.000000:C,"along","along",1534.630+1535.100,0.928876:C,"strongly","strongly",1535.100+1535.670,1.000000:S,"with","was",1535.670+1535.840,0.620322:C,"taking","taking",1536.010+1536.370,1.000000:C,"a","a",1536.370+1536.420,0.998721:C,"chance","chance",1536.420+1536.890,1.000000:C,"on","on",1536.890+1537.010,0.955379:C,"trying","trying",1537.010+1537.290,0.990596:C,"to","to",1537.290+1537.350,1.000000:C,"get","get",1537.350+1537.540,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-068)" word_cnt="8" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1130" R_T1="1651.762" R_T2="1653.702" word_aux="h_t1+t2,h_conf">
C,"you","you",1651.750+1651.870,1.000000:C,"know","know",1651.870+1652.060,1.000000:C,"if","if",1652.060+1652.120,0.999820:C,"you","you",1652.120+1652.230,0.998659:C,"have","have",1652.230+1652.410,0.998826:C,"rooms","rooms",1652.410+1652.740,0.909820:C,"like","like",1652.740+1652.950,0.998442:C,"this","this",1653.060+1653.340,0.997183
</PATH>
<PATH id="(ME031-069)" word_cnt="6" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1132" R_T1="1653.702" R_T2="1655.858" word_aux="h_t1+t2,h_conf">
C,"you","you",1653.870+1653.965,0.906277:C,"are","are",1653.965+1654.060,0.906277:C,"really","really",1654.060+1654.480,0.667969:C,"(y-)","",,:C,"(y-)","",,:C,"(%hesitation)","",,
</PATH>
<PATH id="(ME031-070)" word_cnt="10" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1133" R_T1="1655.858" R_T2="1658.034" word_aux="h_t1+t2,h_conf">
C,"now","now",1655.910+1656.050,0.898604:C,"i","i",1656.050+1656.160,1.000000:C,"do","do",1656.160+1656.240,1.000000:C,"not","not",1656.240+1656.320,1.000000:C,"know","know",1656.320+1656.410,1.000000:C,"how","how",1656.410+1656.550,1.000000:S,"good","put",1656.610+1656.810,1.000000:C,"the","the",1656.810+1656.900,1.000000:C,"signal","signal",1656.900+1657.540,0.999977:C,"is","is",1657.540+1657.660,1.000000
</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-083)" word_cnt="8" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1188" R_T1="1747.305" R_T2="1749.244" word_aux="h_t1+t2,h_conf">
D,"i",,,:C,"i","i",1747.430+1747.690,0.999979:C,"would","would",1747.690+1747.810,0.875766:I,,"not",1747.810+1747.930,0.875766:S,"my","mind",1747.980+1748.280,0.875743:C,"my","my",1748.280+1748.490,0.982853:C,"guess","guess",1748.540+1748.820,0.858970:C,"is","is",1748.820+1748.960,0.959991
</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>
<PATH id="(ME031-090)" word_cnt="9" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1204" R_T1="1794.762" R_T2="1798.105" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"the","the",1795.640+1795.800,1.000000:C,"reason","reason",1795.800+1796.290,1.000000:C,"i","i",1796.290+1796.400,0.978618:C,"am","am",1796.400+1796.510,0.978618:C,"hesitant","hesitant",1796.510+1797.120,1.000000:S,"is","and",1797.120+1797.270,0.979620:C,"the","the",1797.430+1797.540,0.977504:C,"(le-)","less",1797.540+1797.820,0.914416
</PATH>
<PATH id="(ME031-092)" word_cnt="25" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1208" R_T1="1802.910" R_T2="1809.445" word_aux="h_t1+t2,h_conf">
S,"you","in",1802.880+1803.050,0.954097:S,"know","a",1803.050+1803.150,0.922040:C,"p.","p.",1803.150+1803.340,0.999562:S,"z.","c.",1803.340+1803.520,0.999563:C,"m.","m.",1803.520+1803.610,0.992218:C,"microphone","microphone",1803.610+1804.280,1.000000:C,"(break-)","breaking",1804.280+1804.710,0.970186:C,"you","you",1804.710+1804.800,0.871517:C,"know","know",1804.800+1804.940,0.871518:C,"you","you",1804.940+1805.110,1.000000:C,"get","get",1805.110+1805.310,1.000000:C,"four","four",1805.310+1805.800,0.999980:C,"of","of",1805.800+1805.910,1.000000:C,"them","them",1805.910+1806.120,1.000000:S,"you","he",1806.120+1806.310,0.993183:S,"use","used",1806.310+1806.570,0.993183:S,"two","to",1806.570+1806.850,1.000000:C,"one","one",1806.850+1807.060,1.000000:S,"breaks","braciole",1807.060+1807.690,0.580369:S,"you","we",1807.690+1807.775,0.915358:S,"always","had",1807.775+1807.860,0.915358:C,"have","have",1807.860+1808.060,0.999094:S,"a","to",1808.060+1808.120,0.915539:C,"replacement","replacement",1808.120+1808.980,1.000000:C,"ready","ready",1808.980+1809.380,1.000000
</PATH>
<PATH id="(ME031-093)" word_cnt="2" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1212" R_T1="1810.299" R_T2="1810.999" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"(w-)","would",1810.580+1810.680,0.865697
</PATH>
<PATH id="(ME031-094)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1213" R_T1="1811.604" R_T2="1812.005" word_aux="h_t1+t2,h_conf">
S,"yeah","likes",1813.650+1813.920,0.935865
</PATH>
<PATH id="(ME031-095)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1215" R_T1="1815.442" R_T2="1815.909" word_aux="h_t1+t2,h_conf">
S,"%bcack","that",1814.310+1814.460,0.436288
</PATH>
</SPEAKER>
<SPEAKER id="ME011">
<PATH id="(ME011-004)" word_cnt="19" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="892" R_T1="1195.928" R_T2="1199.578" word_aux="h_t1+t2,h_conf">
C,"i","i",1196.020+1196.050,0.999602:C,"mean","mean",1196.050+1196.360,0.999602:D,"you",,,:D,"know",,,:C,"it","it",1196.410+1196.555,0.746005:C,"is","is",1196.555+1196.700,0.746005:C,"not","not",1196.700+1196.820,0.705048:S,"that","really",1196.820+1197.010,0.610007:C,"much","much",1197.180+1197.390,0.999844:C,"equipment","equipment",1197.390+1197.790,1.000000:D,"it",,,:D,"is",,,:S,"only","then",1197.790+1197.980,1.000000:C,"like","like",1197.980+1198.230,0.999351:C,"a","a",1198.230+1198.260,1.000000:C,"couple","couple",1198.260+1198.560,1.000000:C,"of","of",1198.560+1198.620,1.000000:D,"racks",,,:D,"so",,,
</PATH>
<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-011)" word_cnt="2" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="959" R_T1="1337.749" R_T2="1339.356" word_aux="h_t1+t2,h_conf">
D,"yeah",,,:D,"yeah",,,
</PATH>
<PATH id="(ME011-012)" word_cnt="2" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="961" R_T1="1341.420" R_T2="1343.817" word_aux="h_t1+t2,h_conf">
D,"i",,,:C,"see","see",1341.940+1342.110,0.979093
</PATH>
<PATH id="(ME011-013)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="963" R_T1="1346.929" R_T2="1347.154" word_aux="h_t1+t2,h_conf">
S,"yeah","a",1345.520+1345.560,0.942884
</PATH>
<PATH id="(ME011-019)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1000" R_T1="1409.951" R_T2="1410.508" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</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-029)" word_cnt="12" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1059" R_T1="1520.996" R_T2="1523.543" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"know",,,:D,"those",,,:S,"particular","that",1521.040+1521.200,0.689634:S,"acoustics","does",1521.200+1521.345,0.513414:S,"going","not",1521.345+1521.490,0.513414:S,"on","seem",1521.490+1521.630,0.513414:S,"here","to",1521.630+1521.790,0.511239:C,"and","and",1522.410+1522.720,0.937074:D,"stuff",,,:S,"like","of",1523.350+1523.410,0.573363:S,"that","the",1523.410+1523.560,0.917896
</PATH>
<PATH id="(ME011-049)" word_cnt="39" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1159" R_T1="1701.275" R_T2="1709.626" word_aux="h_t1+t2,h_conf">
S,"i","getting",1701.300+1701.630,0.929785:S,"mean","dead",1701.630+1701.805,0.918397:S,"there","end",1701.805+1701.980,0.918397:S,"is","that",1701.980+1702.160,0.999996:S,"there","had",1702.160+1702.340,0.999996:S,"is","with",1702.770+1702.900,1.000000:S,"this","the",1702.900+1702.980,1.000000:C,"funny","funny",1703.070+1703.330,0.999527:C,"thing","thing",1703.330+1703.620,0.916845:C,"if","if",1703.620+1703.750,1.000000:C,"you","you",1703.750+1703.820,1.000000:C,"do","do",1703.820+1704.030,0.990541:C,"have","have",1704.030+1704.220,1.000000:C,"more","more",1704.220+1704.530,1.000000:S,"people","open",1704.790+1705.040,0.637635:S,"than","my",1705.040+1705.180,0.654240:S,"microphones","friends",1705.180+1705.540,0.700168:S,"there","this",1705.540+1705.690,0.613901:C,"is","is",1705.690+1705.840,0.613519:D,"this",,,:C,"funny","funny",1705.840+1706.030,0.663011:C,"status","status",1706.030+1706.500,0.755141:S,"of","was",1706.500+1706.620,0.783699:C,"like","like",1706.620+1706.770,0.999534:D,"who",,,:D,"gets",,,:S,"to","because",1707.110+1707.410,0.960673:C,"have","have",1707.470+1707.620,0.401429:I,,"that",1707.620+1707.720,0.677261:S,"the","makes",1707.720+1707.960,0.679666:S,"microphones","sense",1707.960+1708.220,0.793942:C,"and","and",1708.220+1708.390,0.999769:C,"how","how",1708.390+1708.520,0.999969:D,"that",,,:S,"makes","to",1708.520+1708.580,0.999969:S,"the","make",1708.580+1708.820,1.000000:C,"other","other",1708.820+1708.970,1.000000:C,"people","people",1708.970+1709.260,1.000000:C,"feel","feel",1709.260+1709.550,1.000000
</PATH>
<PATH id="(ME011-050)" word_cnt="15" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1161" R_T1="1710.127" R_T2="1713.092" word_aux="h_t1+t2,h_conf">
C,"but","but",1710.190+1710.430,0.999972:C,"(%hesitation)","",,:C,"you","you",1710.910+1711.010,1.000000:C,"know","know",1711.010+1711.150,1.000000:I,,"and",1711.150+1711.280,0.344310:C,"in","in",1711.380+1711.470,0.378024:D,"it",,,:D,"is",,,:S,"certainly","something",1711.470+1711.850,0.999378:C,"it","it",1712.010+1712.080,0.760624:C,"is","is",1712.080+1712.150,0.760624:C,"still","still",1712.150+1712.300,0.999925:C,"useful","useful",1712.300+1712.610,1.000000:I,,"thing",1712.610+1712.780,0.461047:S,"data","to",1712.780+1712.890,0.586244
</PATH>
<PATH id="(ME011-051)" word_cnt="13" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1162" R_T1="1713.728" R_T2="1715.748" word_aux="h_t1+t2,h_conf">
I,,"six",1713.750+1714.000,0.451300:S,"particularly","a",1714.000+1714.050,0.656465:S,"because","good",1714.050+1714.210,0.656466:S,"you","thing",1714.210+1714.310,0.712364:S,"know","that",1714.310+1714.400,0.719312:C,"you","you",1714.400+1714.460,0.991284:C,"can","can",1714.460+1714.670,0.992125:C,"you","you",1714.670+1714.770,0.999924:C,"can","can",1714.770+1714.900,0.999924:C,"designate","designate",1714.900+1715.230,0.997336:D,"who",,,:S,"is","can",1715.330+1715.560,1.000000:C,"(go-)","",,
</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-060)" word_cnt="25" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1203" R_T1="1790.355" R_T2="1796.293" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"can",,,:D,"not",,,:D,"hear",,,:S,"the","content",1790.570+1791.160,0.991108:C,"difference","difference",1791.160+1791.680,0.642685:C,"between","between",1791.680+1791.960,0.322241:D,"them",,,:C,"you","you",1792.120+1792.180,0.688831:C,"know","know",1792.180+1792.320,0.733533:C,"it","it",1792.320+1792.405,0.991253:C,"is","is",1792.405+1792.490,0.991253:C,"pretty","pretty",1792.490+1792.700,1.000000:S,"hard","hot",1792.700+1793.000,0.856545:C,"i","i",1793.460+1793.490,1.000000:C,"mean","mean",1793.490+1793.720,1.000000:D,"there",,,:D,"probably",,,:S,"are","not",1793.720+1793.860,0.999874:S,"you","that",1793.860+1793.970,1.000000:S,"can","property",1793.970+1794.330,0.833499:S,"probably","i",1794.330+1794.490,1.000000:S,"measure","imagine",1794.730+1795.080,1.000000:C,"it","it",1795.180+1795.250,0.948007:S,"but","is",1795.250+1795.320,0.948007
</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-064)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1218" R_T1="1820.345" R_T2="1820.756" word_aux="h_t1+t2,h_conf">
S,"yeah","and",1818.240+1818.390,0.777220
</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>
<PATH id="(ME011-092)" word_cnt="7" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1415" R_T1="328.948" R_T2="330.173" word_aux="h_t1+t2,h_conf">
D,"he",,,:D,"is",,,:D,"going",,,:C,"to","to",329.100+329.170,0.256126:C,"be","be",329.170+329.250,0.744449:C,"gone","gone",329.250+329.550,0.801078:C,"also","also",329.550+330.000,1.000000
</PATH>
<PATH id="(ME011-123)" word_cnt="16" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1742" R_T1="637.997" R_T2="642.938" word_aux="h_t1+t2,h_conf">
D,"i",,,:S,"mean","it's",638.040+638.200,0.333372:C,"so","so",638.200+638.270,0.232260:C,"do","do",638.270+638.360,0.680092:C,"we","we",638.360+638.470,1.000000:C,"want","want",638.470+638.720,1.000000:C,"to","to",638.720+638.800,0.999973:C,"include","include",638.800+639.440,0.999875:I,,"a",639.440+639.470,0.428253:C,"word","word",639.470+639.740,0.997222:C,"transcripts","transcripts",639.740+640.630,1.000000:I,,"they",641.600+641.760,0.887630:I,,"have",641.760+641.880,0.799082:S,"basically","the",641.880+641.950,0.619712:S,"forced","force",641.950+642.220,0.606543:C,"alignments","alignments",642.220+642.740,0.917131
</PATH>
<PATH id="(ME011-127)" word_cnt="1" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1774" R_T1="703.413" R_T2="703.848" word_aux="h_t1+t2,h_conf">
S,"right","change",703.211+703.511,1.000000
</PATH>
<PATH id="(ME011-128)" word_cnt="1" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1775" R_T1="704.184" R_T2="705.173" word_aux="h_t1+t2,h_conf">
C,"well","well",704.591+704.951,0.999822
</PATH>
<PATH id="(ME011-129)" word_cnt="15" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1776" R_T1="705.540" R_T2="709.029" word_aux="h_t1+t2,h_conf">
C,"it","it",705.660+705.730,0.986628:C,"is","is",705.730+705.800,0.986628:C,"not","not",705.800+705.970,1.000000:C,"really","really",705.970+706.220,0.999870:D,"a",,,:C,"turn","turn",706.220+706.630,0.698644:C,"is","is",706.630+706.800,0.728890:C,"it","it",706.800+706.950,0.853610:C,"the","the",707.660+707.730,0.919113:C,"way","way",707.730+707.930,0.916123:C,"we","we",707.930+708.045,0.905833:C,"are","are",708.045+708.160,0.905833:C,"doing","doing",708.160+708.470,1.000000:C,"it","it",708.470+708.560,0.982625:C,"now","now",709.350+709.500,0.999864
</PATH>
</SPEAKER>
<SPEAKER id="ME013">
<PATH id="(ME013-004)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="923" R_T1="1262.977" R_T2="1264.427" word_aux="h_t1+t2,h_conf">
S,"%bcack","yeah",1263.220+1263.530,0.991049
</PATH>
<PATH id="(ME013-006)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="943" R_T1="1312.009" R_T2="1312.900" word_aux="h_t1+t2,h_conf">
S,"%bcack","environments",1313.840+1314.420,0.557123
</PATH>
<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-014)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1062" R_T1="1530.592" R_T2="1531.284" word_aux="h_t1+t2,h_conf">
S,"yeah","live",1531.450+1531.700,0.915802
</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-027)" word_cnt="20" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1107" R_T1="1613.930" R_T2="1616.994" word_aux="h_t1+t2,h_conf">
D,"but",,,:D,"what",,,:D,"you",,,:S,"would","oh",1613.990+1614.240,0.614077:S,"say","it",1614.240+1614.420,0.614077:S,"is","says",1614.420+1614.720,0.614077:C,"o.","o.",1614.720+1614.850,1.000000:C,"k.","k.",1614.850+1614.980,1.000000:C,"we","we",1614.980+1615.020,1.000000:C,"are","are",1615.020+1615.060,1.000000:C,"going","going",1615.060+1615.180,1.000000:C,"to","to",1615.180+1615.240,1.000000:C,"do","do",1615.240+1615.440,1.000000:D,"those",,,:D,"experiments",,,:S,"with","this",1615.440+1615.580,1.000000:S,"the","experiment",1615.580+1616.020,0.997008:S,"data","that",1616.180+1616.280,0.410549:S,"from","they",1616.280+1616.450,0.410549:C,"here","here",1616.680+1616.870,0.567402
</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-029)" word_cnt="25" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1110" R_T1="1621.660" R_T2="1626.169" word_aux="h_t1+t2,h_conf">
C,"and","and",1621.670+1621.960,1.000000:C,"if","if",1621.960+1622.080,0.999413:C,"you","you",1622.080+1622.200,1.000000:C,"were","were",1622.200+1622.320,1.000000:C,"just","just",1622.380+1622.590,1.000000:C,"using","using",1622.590+1622.830,1.000000:C,"one","one",1622.830+1623.000,0.990125:I,,"this",1623.000+1623.210,0.568163:S,"distant","is",1623.210+1623.270,0.510956:S,"mike","like",1623.370+1623.540,0.623660:C,"o.","o.",1623.590+1623.810,0.924433:C,"k.","k.",1623.810+1624.030,0.924433:D,"it",,,:D,"would",,,:C,"just","just",1624.030+1624.270,0.999180:D,"be",,,:S,"a","the",1624.270+1624.420,0.987776:C,"solo","solo",1624.470+1624.740,0.975659:C,"mike","mike",1624.740+1624.950,0.992371:C,"that","that",1625.010+1625.120,1.000000:C,"we","we",1625.120+1625.260,1.000000:D,"would",,,:C,"have","have",1625.260+1625.510,1.000000:C,"for","for",1625.510+1625.840,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(ME013-038)" word_cnt="1" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1163" R_T1="1713.920" R_T2="1714.215" word_aux="h_t1+t2,h_conf">
C,"(y-)","you",1715.230+1715.330,0.975355
</PATH>
<PATH id="(ME013-039)" word_cnt="6" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1166" R_T1="1718.580" R_T2="1719.781" word_aux="h_t1+t2,h_conf">
S,"especially","just",1718.620+1718.830,0.996904:S,"if","like",1718.830+1718.970,0.904673:C,"you","you",1718.970+1719.030,0.637767:C,"know","know",1719.030+1719.220,0.881402:C,"the","the",1719.220+1719.290,0.958885:C,"people","people",1719.290+1719.620,1.000000
</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-052)" word_cnt="22" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1211" R_T1="1810.220" R_T2="1813.982" word_aux="h_t1+t2,h_conf">
D,"no",,,:S,"you","and",1810.270+1810.370,0.865559:S,"are","i",1810.370+1810.440,0.999019:C,"(ab-)","",,:C,"(ab-)","",,:S,"you","i",1810.440+1810.580,0.999726:S,"are","have",1810.680+1810.810,0.999833:S,"absolutely","happened",1810.810+1811.230,0.999837:C,"(righ-)","",,:C,"i","i",1811.280+1811.350,1.000000:C,"mean","mean",1811.350+1811.510,1.000000:C,"one","one",1811.510+1811.660,1.000000:C,"of","of",1811.660+1811.720,1.000000:C,"the","the",1811.720+1811.780,1.000000:C,"big","big",1811.780+1811.950,1.000000:C,"differences","differences",1811.950+1812.400,1.000000:S,"between","too",1812.400+1812.550,0.995962:C,"expensive","expensive",1812.550+1813.000,0.999196:D,"mikes",,,:D,"and",,,:S,"cheap","like",1813.000+1813.200,0.512963:S,"mikes","she",1813.350+1813.500,0.965586
</PATH>
<PATH id="(ME013-053)" word_cnt="7" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1214" R_T1="1814.283" R_T2="1816.214" word_aux="h_t1+t2,h_conf">
D,"is",,,:C,"the","the",1814.460+1814.530,0.994022:C,"quality","quality",1814.530+1814.910,1.000000:C,"control","control",1814.910+1815.420,1.000000:C,"and","and",1815.480+1815.570,1.000000:C,"and","and",1815.710+1815.900,1.000000:C,"so","so",1815.900+1816.200,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-055)" word_cnt="15" labels="<O,MALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1217" R_T1="1818.230" R_T2="1820.897" word_aux="h_t1+t2,h_conf">
C,"(tho-)","",,:C,"even","even",1818.390+1818.600,1.000000:C,"though","though",1818.600+1818.880,1.000000:C,"you","you",1818.940+1819.040,1.000000:C,"know","know",1819.040+1819.160,1.000000:D,"the",,,:D,"ear",,,:S,"is","yours",1819.240+1819.490,0.916893:C,"pretty","pretty",1819.490+1819.690,1.000000:C,"tolerant","tolerant",1819.690+1820.100,0.566402:D,"of",,,:D,"a",,,:C,"lot","lot",1820.160+1820.400,1.000000:C,"of","of",1820.400+1820.460,1.000000:C,"things","things",1820.460+1820.840,1.000000
</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-063)" word_cnt="18" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1391" R_T1="301.321" R_T2="305.722" word_aux="h_t1+t2,h_conf">
C,"i","i",301.350+301.440,0.995274:C,"guess","guess",301.440+301.640,0.956076:D,"something",,,:S,"implicit","i",301.640+301.680,0.922528:C,"(%hesitation)","",,:S,"what","mean",301.680+301.840,0.922528:C,"you","you",301.840+302.000,0.977313:D,"are",,,:D,"saying",,,:S,"maybe","listen",302.060+302.400,0.907980:S,"you","to",302.400+302.510,0.960204:S,"had","the",302.510+302.890,0.981134:S,"commented","attribute",303.110+303.670,0.981190:S,"to","comes",303.670+304.060,0.879129:C,"people","people",304.060+304.310,0.913838:C,"separately","separately",304.310+304.770,1.000000:C,"but","but",304.770+305.050,0.999876:S,"(%hesitation)","the",305.050+305.240,1.000000
</PATH>
<PATH id="(ME013-064)" word_cnt="15" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1393" R_T1="305.722" R_T2="309.057" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"i",,,:D,"do",,,:D,"not",,,:S,"know","no",306.220+306.350,1.000000:S,"if","for",306.350+306.450,1.000000:C,"everybody","everybody",306.450+306.740,1.000000:C,"knows","knows",306.740+307.000,1.000000:C,"but","but",307.000+307.140,1.000000:C,"but","but",307.230+307.470,1.000000:C,"adam","adam",307.470+307.790,0.998511:D,"passed",,,:D,"his",,,:S,"quals","else",307.980+308.250,0.544305:S,"yay","calls",308.250+308.630,0.991026
</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-070)" word_cnt="7" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1417" R_T1="330.544" R_T2="332.490" word_aux="h_t1+t2,h_conf">
C,"if","if",330.500+330.710,0.791359:C,"it","it",330.710+330.950,0.962407:C,"is","is",330.950+331.190,0.962407:C,"things","things",331.190+331.670,1.000000:C,"that","that",331.670+331.840,0.904940:D,"we",,,:S,"are","were",332.140+332.390,0.732722
</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-080)" word_cnt="20" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1453" R_T1="358.852" R_T2="362.727" word_aux="h_t1+t2,h_conf">
D,"i",,,:S,"guess","because",358.840+359.100,0.923383:C,"the","the",359.100+359.170,0.999998:C,"other","other",359.170+359.320,1.000000:C,"agenda","agenda",359.320+359.620,1.000000:C,"item","item",359.620+359.900,1.000000:C,"i","i",359.900+359.970,0.989297:C,"was","was",359.970+360.200,0.976324:C,"this","this",360.200+360.560,0.997372:D,"is",,,:C,"actually","actually",360.560+360.820,1.000000:C,"very","very",360.820+360.990,1.000000:C,"short","short",360.990+361.270,1.000000:C,"i","i",361.270+361.310,0.887688:C,"was","was",361.310+361.450,0.999242:C,"just","just",361.450+361.580,0.999242:C,"going","going",361.580+361.740,1.000000:C,"to","to",361.740+361.800,1.000000:C,"ask","ask",361.800+362.170,1.000000:S,"(%hesitation)","about",362.220+362.530,0.804530
</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-097)" word_cnt="38" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1528" R_T1="421.192" R_T2="428.337" word_aux="h_t1+t2,h_conf">
C,"i","i",421.191+421.221,0.954353:C,"mean","mean",421.221+421.421,0.955169:D,"it",,,:S,"happened","i",421.471+421.561,0.970282:S,"to","kept",421.561+421.811,0.883494:C,"me","me",421.811+421.961,0.961981:C,"twice","twice",421.961+422.391,0.999999:C,"for","for",422.391+422.481,0.999014:C,"the","the",422.481+422.581,1.000000:C,"same","same",422.581+422.831,1.000000:C,"conference","conference",422.831+423.281,1.000000:C,"and","and",423.281+423.401,0.528584:C,"so","so",423.401+423.641,0.698101:S,"i","and",423.641+423.781,0.542947:S,"so","for",423.781+423.891,0.945768:C,"the","the",423.891+423.971,1.000000:C,"first","first",423.971+424.251,1.000000:C,"time","time",424.251+424.571,1.000000:S,"i","this",424.651+424.821,0.816468:S,"sent","in",424.821+424.971,0.928064:S,"it","the",424.971+425.031,0.945910:C,"back","back",425.151+425.421,0.976292:C,"and","and",426.061+426.151,0.622898:D,"said",,,:D,"you",,,:D,"know",,,:D,"i",,,:S,"really","we",426.151+426.271,0.982289:C,"can","can",426.271+426.381,0.986766:C,"not","not",426.381+426.491,0.986766:C,"do","do",426.491+426.651,0.999994:C,"this","this",426.651+426.891,0.999948:C,"because","because",426.891+427.361,1.000000:D,"you",,,:D,"know",,,:D,"it",,,:D,"is",,,:D,"me",,,
</PATH>
<PATH id="(ME013-113)" word_cnt="8" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1603" R_T1="496.780" R_T2="498.068" word_aux="h_t1+t2,h_conf">
C,"oh","oh",496.720+496.920,0.955944:C,"i","i",496.920+496.990,0.999987:C,"have","have",496.990+497.095,0.992379:C,"not","not",497.095+497.200,0.992379:C,"seen","seen",497.200+497.400,0.999999:D,"the",,,:D,"agenda",,,:C,"yet","yet",497.480+497.910,0.999999
</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>
<PATH id="(ME013-133)" word_cnt="8" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1678" R_T1="571.900" R_T2="574.208" word_aux="h_t1+t2,h_conf">
D,"so",,,:C,"i","i",572.070+572.120,1.000000:C,"think","think",572.120+572.370,1.000000:C,"that","that",572.580+572.910,0.999653:C,"(%hesitation)","",,:D,"i",,,:D,"will",,,:C,"probably","probably",573.510+574.010,0.998725
</PATH>
<PATH id="(ME013-134)" word_cnt="5" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1680" R_T1="575.270" R_T2="576.814" word_aux="h_t1+t2,h_conf">
S,"borrow","probably",575.210+575.620,0.740269:S,"heavily","go",575.620+575.760,0.485224:C,"from","from",576.000+576.250,0.999343:D,"it",,,:D,"yeah",,,
</PATH>
</SPEAKER>
<SPEAKER id="FN054">
<PATH id="(FN054-007)" word_cnt="1" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1005" R_T1="1417.668" R_T2="1418.234" word_aux="h_t1+t2,h_conf">
S,"%hesitation","the",1411.980+1412.170,0.819225
</PATH>
<PATH id="(FN054-013)" word_cnt="7" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1041" R_T1="1484.586" R_T2="1487.360" word_aux="h_t1+t2,h_conf">
S,"who","we",1485.970+1486.040,0.695370:C,"are","are",1486.040+1486.110,0.695370:C,"in","in",1486.110+1486.270,0.697920:D,"there",,,:C,"the","the",1486.270+1486.370,0.999691:D,"conference",,,:S,"rooms","room",1486.900+1487.250,1.000000
</PATH>
<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>
<PATH id="(FN054-019)" word_cnt="18" labels="<O,FEMALE,I1>" file="ICSI_20000807-1000_D_NONE" channel="1" sequence="1131" R_T1="1652.722" R_T2="1656.394" word_aux="h_t1+t2,h_conf">
D,"yeah",,,:D,"it",,,:D,"is",,,:D,"a",,,:D,"yeah",,,:D,"you",,,:D,"you",,,:S,"will","do",1654.480+1654.575,0.646829:C,"not","not",1654.575+1654.670,0.646829:D,"cover",,,:D,"yeah",,,:D,"it",,,:S,"will","want",1654.670+1654.790,0.626889:S,"not","to",1654.790+1654.850,0.626899:C,"be","be",1655.350+1655.460,0.770130:D,"able",,,:C,"to","to",1656.550+1656.610,0.999999:D,"cover",,,
</PATH>
</SPEAKER>
<SPEAKER id="FE060">
<PATH id="(FE060-003)" word_cnt="7" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1245" R_T1="130.680" R_T2="133.171" word_aux="h_t1+t2,h_conf">
D,"and",,,:C,"(%hesitation)","",,:D,"so",,,:D,"things",,,:D,"are",,,:D,"moving",,,:D,"along",,,
</PATH>
<PATH id="(FE060-008)" word_cnt="10" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1275" R_T1="161.835" R_T2="164.760" word_aux="h_t1+t2,h_conf">
C,"but","but",161.911+162.101,0.999999:C,"that","that",162.101+162.341,1.000000:C,"was","was",162.341+162.491,1.000000:C,"obviously","obviously",162.491+163.091,1.000000:C,"only","only",163.091+163.311,1.000000:C,"one","one",163.311+163.481,1.000000:C,"of","of",163.481+163.561,1.000000:S,"their","the",163.561+163.661,1.000000:C,"transcribers","transcribers",163.661+164.421,1.000000:C,"and","and",164.421+164.611,0.937937
</PATH>
<PATH id="(FE060-011)" word_cnt="11" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1286" R_T1="174.888" R_T2="178.427" word_aux="h_t1+t2,h_conf">
S,"in","and",174.980+175.290,0.864892:C,"(%hesitation)","",,:C,"in","in",175.730+175.890,0.968326:C,"in","in",176.100+176.230,0.284906:C,"format","format",176.230+176.790,0.625833:C,"that","that",176.790+176.950,0.993260:C,"they","they",176.950+177.110,1.000000:C,"are","are",177.110+177.500,1.000000:C,"we","we",177.500+177.740,0.984535:C,"(i-)","it",179.360+179.520,0.634025:C,"(%hesitation)","",,
</PATH>
<PATH id="(FE060-012)" word_cnt="16" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1289" R_T1="178.427" R_T2="184.988" word_aux="h_t1+t2,h_conf">
I,,"chopped",179.000+179.360,0.919346:D,"chuck",,,:D,"did",,,:S,"send","seven",179.520+179.910,0.601398:S,"them","all",180.170+180.400,1.000000:C,"our","our",180.400+180.770,1.000000:S,"suggestions","suggestion",180.870+181.560,1.000000:S,"about","of",181.780+181.940,0.502632:S,"(%hesitation)","ballot",181.940+182.550,0.908254:C,"small","small",182.990+183.270,0.999771:C,"ways","ways",183.270+183.590,0.998156:C,"that","that",183.590+183.700,1.000000:C,"they","they",183.700+183.880,1.000000:C,"could","could",183.880+184.070,0.970409:C,"make","make",184.120+184.390,0.971017:D,"the",,,
</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>
<PATH id="(MN014-005)" word_cnt="21" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1315" R_T1="209.128" R_T2="215.818" word_aux="h_t1+t2,h_conf">
D,"that",,,:S,"is","couple",209.180+209.460,0.473423:S,"sometimes","of",209.460+209.580,0.480906:C,"very","very",209.680+209.970,0.831377:C,"confusing","confusing",209.970+210.460,0.947955:S,"when","whether",210.460+210.750,0.969657:S,"there","it",210.750+210.855,0.969657:C,"is","is",210.855+210.960,0.969657:C,"like","like",210.960+211.180,0.914448:C,"when","when",211.260+211.470,0.901760:C,"the","the",211.470+211.630,0.984091:C,"speech","speech",211.630+211.990,1.000000:C,"nonspeech","nonspeech",212.190+212.650,1.000000:C,"detector","detector",212.650+213.150,1.000000:S,"detects","checked",213.790+214.070,0.342315:C,"speech","speech",214.070+214.380,0.873313:D,"in",,,:S,"in","engine",214.380+214.670,0.873288:S,"two","through",214.670+214.870,0.829180:S,"different","the",214.870+214.950,0.830821:S,"channels","control",214.950+215.580,0.882888
</PATH>
<PATH id="(MN014-018)" word_cnt="5" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1384" R_T1="292.660" R_T2="293.457" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"am",,,:D,"not",,,:S,"sure","coming",292.660+292.960,0.519933:S,"%hesitation","from",292.960+293.140,0.674179
</PATH>
<PATH id="(MN014-024)" word_cnt="5" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1435" R_T1="347.632" R_T2="348.598" word_aux="h_t1+t2,h_conf">
I,,"i",347.790+347.860,0.915493:S,"(%hesitation)","do",347.860+347.945,0.914807:S,"end","not",347.945+348.030,0.914807:S,"of","remember",348.030+348.300,0.915595:S,"april","from",348.300+348.520,0.997113
</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-008)" word_cnt="1" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1529" R_T1="426.015" R_T2="426.549" word_aux="h_t1+t2,h_conf">
S,"%hesitation","we",428.050+428.240,0.358290
</PATH>
<PATH id="(MN017-012)" word_cnt="1" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1604" R_T1="497.570" R_T2="498.020" word_aux="h_t1+t2,h_conf">
S,"yeah","it",497.400+497.480,0.987814
</PATH>
<PATH id="(MN017-014)" word_cnt="20" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1610" R_T1="502.690" R_T2="508.188" word_aux="h_t1+t2,h_conf">
I,,"what",502.720+502.920,1.000000:S,"for","about",502.920+503.220,1.000000:C,"the","the",503.220+503.330,0.971831:D,"last",,,:D,"day",,,:C,"(%hesitation)","",,:D,"there",,,:D,"is",,,:S,"a","the",503.640+503.850,1.000000:C,"(m-)","",,:C,"(%hesitation)","",,:S,"there","the",503.850+503.980,1.000000:S,"is","does",504.920+505.130,0.358140:S,"a","does",505.750+505.980,0.963704:C,"talk","talk",505.980+506.330,0.894982:D,"by",,,:D,"a",,,:S,"certain","about",506.330+506.510,0.960430:S,"nelson","the",506.510+506.670,0.672201:S,"morgan","no",507.400+507.860,0.699477
</PATH>
<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="ME018">
<PATH id="(ME018-023)" word_cnt="2" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1677" R_T1="571.741" R_T2="572.309" word_aux="h_t1+t2,h_conf">
D,"o.",,,:D,"k.",,,
</PATH>
<PATH id="(ME018-024)" word_cnt="6" labels="<O,MALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1679" R_T1="574.752" R_T2="576.777" word_aux="h_t1+t2,h_conf">
S,"just","away",575.760+576.000,0.798114:D,"grab",,,:D,"all",,,:D,"the",,,:D,"slides",,,:S,"yeah","him",576.410+576.600,0.327033
</PATH>
</SPEAKER>
<SPEAKER id="FE008">
<PATH id="(FE008-026)" word_cnt="28" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1748" R_T1="647.740" R_T2="653.841" word_aux="h_t1+t2,h_conf">
C,"i","i",647.950+648.080,1.000000:C,"think","think",648.080+648.390,1.000000:C,"i","i",648.390+648.510,0.999907:C,"i","i",648.510+648.610,1.000000:C,"was","was",648.610+648.720,0.992689:C,"going","going",648.720+648.860,0.992689:I,,"to",648.860+648.920,0.992689:C,"actually","actually",648.920+649.270,1.000000:S,"raise","brings",649.270+649.520,0.806878:C,"that","that",649.520+649.750,0.991199:C,"that","that",649.830+650.000,1.000000:C,"issue","issue",650.000+650.290,1.000000:C,"because","because",650.290+650.580,1.000000:I,,"it",650.580+650.660,0.549170:I,,"but",650.660+650.770,0.548129:C,"i","i",650.770+650.800,0.999962:C,"know","know",650.800+650.930,1.000000:C,"that","that",650.930+651.110,1.000000:I,,"the",651.110+651.210,0.996847:I,,"way",651.210+651.340,0.785639:S,"rowena","in",651.340+651.430,0.785639:C,"and","and",651.430+651.620,0.941180:C,"i","i",651.700+651.790,1.000000:C,"would","would",651.790+652.000,1.000000:C,"really","really",652.000+652.390,1.000000:C,"benefit","benefit",652.390+652.890,1.000000:C,"from","from",652.970+653.100,1.000000:C,"having","having",653.260+653.600,0.999995
</PATH>
<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-028)" word_cnt="47" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1751" R_T1="656.801" R_T2="667.593" word_aux="h_t1+t2,h_conf">
C,"and","and",656.840+657.010,1.000000:C,"i","i",657.010+657.130,1.000000:C,"did","did",657.130+657.285,0.812682:I,,"not",657.285+657.440,0.812682:C,"i","i",657.440+657.600,1.000000:S,"used","use",657.600+657.810,1.000000:C,"the","the",657.810+657.970,1.000000:C,"s.","s.",657.970+658.110,1.000000:C,"t.","t.",658.110+658.250,1.000000:C,"m.","m.",658.250+658.420,1.000000:C,"format","format",658.420+658.860,1.000000:C,"(%hesitation)","",,:C,"as","as",659.030+659.360,1.000000:C,"an","an",659.360+659.440,1.000000:C,"approximation","approximation",659.440+660.190,1.000000:C,"to","to",660.190+660.260,1.000000:C,"see","see",660.260+660.490,1.000000:C,"if","if",660.490+660.710,1.000000:C,"if","if",660.710+661.060,1.000000:C,"i","i",661.060+661.160,1.000000:C,"could","could",661.160+661.300,0.983422:C,"use","use",661.300+661.620,1.000000:C,"the","the",661.620+661.870,1.000000:C,"interface","interface",661.870+662.320,1.000000:C,"tool","tool",662.320+662.580,0.999807:C,"with","with",662.580+662.700,0.999761:C,"that","that",662.700+662.910,1.000000:C,"many","many",662.910+663.240,0.998499:C,"segmentations","segmentations",663.240+664.150,0.999998:C,"and","and",664.150+664.330,0.851223:D,"if",,,:D,"it",,,:S,"would","to",664.410+664.510,0.916134:C,"be","be",664.600+664.760,0.999993:C,"too","too",664.760+664.900,0.999457:C,"slow","slow",664.900+665.170,0.999944:C,"for","for",665.170+665.280,1.000000:C,"that","that",665.280+665.560,1.000000:C,"and","and",665.560+665.650,0.657007:C,"it","it",665.650+665.720,0.657084:C,"was","was",665.720+665.910,1.000000:D,"it",,,:C,"was","was",666.320+666.470,0.999918:C,"quite","quite",666.470+666.710,1.000000:C,"doable","doable",666.710+667.090,1.000000:D,"for",,,:S,"that","the",667.150+667.240,0.278718
</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>
<PATH id="(FE008-036)" word_cnt="19" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1773" R_T1="700.550" R_T2="705.410" word_aux="h_t1+t2,h_conf">
D,"the",,,:D,"turn",,,:S,"units","be",700.571+700.821,0.974700:S,"more","turning",700.821+701.261,0.999998:C,"explicit","explicit",701.651+702.191,1.000000:D,"which",,,:D,"is",,,:D,"done",,,:D,"in",,,:D,"a",,,:D,"lot",,,:D,"of",,,:D,"annotation",,,:D,"and",,,:D,"a",,,:D,"lot",,,:S,"of","just",702.191+702.401,1.000000:S,"transcription","do",702.401+702.496,0.970208:S,"methods","not",702.496+702.591,0.970208
</PATH>
<PATH id="(FE008-037)" word_cnt="1" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1777" R_T1="707.644" R_T2="708.068" word_aux="h_t1+t2,h_conf">
S,"well","now",708.560+708.870,0.765337
</PATH>
<PATH id="(FE008-038)" word_cnt="6" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1778" R_T1="708.601" R_T2="710.482" word_aux="h_t1+t2,h_conf">
S,"no","on",709.500+709.620,0.707232:C,"right","right",709.620+709.830,0.997296:C,"now","now",709.830+709.890,0.994947:D,"it",,,:D,"is",,,:D,"not",,,
</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>
<PATH id="(FE016-043)" word_cnt="23" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1853" R_T1="793.525" R_T2="798.775" word_aux="h_t1+t2,h_conf">
C,"first","first",793.700+794.000,0.854852:C,"the","the",794.080+794.190,0.999830:C,"beginning","beginning",794.190+794.610,1.000000:C,"of","of",794.610+794.680,1.000000:C,"the","the",794.680+794.750,1.000000:C,"first","first",794.750+795.090,1.000000:C,"word","word",795.090+795.480,1.000000:S,"and","in",795.480+795.580,1.000000:C,"the","the",795.580+795.740,1.000000:C,"end","end",795.780+796.000,1.000000:C,"of","of",796.000+796.110,1.000000:C,"the","the",796.110+796.180,0.999829:C,"last","last",796.180+796.500,1.000000:C,"word","word",796.500+796.830,0.999912:C,"is","is",796.910+797.100,0.644803:C,"where","where",797.100+797.310,0.989999:C,"the","the",797.310+797.400,0.999992:C,"time","time",797.400+797.660,1.000000:C,"boundaries","boundaries",797.660+798.010,1.000000:C,"are","are",798.010+798.170,0.955199:C,"for","for",798.170+798.290,1.000000:C,"that","that",798.290+798.450,0.895153:D,"unit",,,
</PATH>
<PATH id="(FE016-044)" word_cnt="12" labels="<O,FEMALE,I2>" file="ICSI_20011030-1030_D_NONE" channel="1" sequence="1856" R_T1="798.775" R_T2="801.974" word_aux="h_t1+t2,h_conf">
D,"so",,,:D,"we",,,:D,"just",,,:D,"in",,,:D,"the",,,:D,"word",,,:S,"string","this",799.070+799.360,0.394888:C,"know","know",799.460+799.590,0.350011:D,"where",,,:S,"the","marie",799.590+799.840,0.544194:S,"punctuation","sitting",799.840+800.370,0.382925:S,"is","right",800.500+800.750,0.825669
</PATH>
</SPEAKER>
<SPEAKER id="001">
<PATH id="(001-005)" word_cnt="15" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1869" R_T1="1338.594" R_T2="1341.675" word_aux="h_t1+t2,h_conf">
D,"did",,,:D,"you",,,:S,"go","digit",1338.670+1338.950,0.458413:S,"up","awful",1338.950+1339.240,0.531806:S,"along","on",1339.240+1339.400,0.999998:C,"the","the",1339.400+1339.460,1.000000:C,"north","north",1339.460+1339.760,1.000000:C,"side","side",1339.760+1340.290,1.000000:C,"or","or",1340.290+1340.420,0.991928:D,"i",,,:D,"mean",,,:D,"i",,,:D,"am",,,:D,"curious",,,:D,"as",,,
</PATH>
<PATH id="(001-006)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1871" R_T1="1347.981" R_T2="1348.501" word_aux="h_t1+t2,h_conf">
S,"%bcack","out",1344.810+1344.970,0.890223
</PATH>
<PATH id="(001-007)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1875" R_T1="1359.272" R_T2="1359.731" word_aux="h_t1+t2,h_conf">
S,"%bcack","so",1358.930+1359.090,0.985332
</PATH>
<PATH id="(001-010)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1882" R_T1="1368.206" R_T2="1371.294" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"do","do",1368.630+1368.750,0.992393:C,"you","you",1368.750+1368.810,0.996291:C,"have","have",1368.810+1368.900,0.962457:C,"any","any",1368.900+1369.100,0.967639:S,"experiences","pictures",1369.100+1369.710,0.366977:C,"from","from",1369.710+1369.910,0.998767:D,"that",,,:C,"that","that",1369.910+1370.090,0.999994:S,"stick","this",1370.090+1370.250,0.650622:S,"out","to",1370.250+1370.350,0.967994:S,"in","come",1370.350+1370.630,0.664125:S,"your","to",1370.630+1370.700,0.649707:C,"mind","mind",1370.700+1371.130,0.918537
</PATH>
<PATH id="(001-011)" word_cnt="4" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1885" R_T1="1371.992" R_T2="1372.774" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"know",,,:D,"some",,,:C,"(s-)","stop",1373.550+1373.880,0.875985
</PATH>
<PATH id="(001-012)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1894" R_T1="1400.305" R_T2="1400.883" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(001-017)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1911" R_T1="1424.945" R_T2="1425.405" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(001-018)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1915" R_T1="1431.526" R_T2="1431.934" word_aux="h_t1+t2,h_conf">
S,"%bcack","french",1433.070+1433.410,1.000000
</PATH>
<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-025)" word_cnt="7" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1941" R_T1="1476.437" R_T2="1478.630" word_aux="h_t1+t2,h_conf">
D,"an",,,:C,"animal","animal",1476.620+1477.030,0.664624:D,"crawl",,,:D,"in",,,:D,"your",,,:S,"tent","cost",1477.080+1477.410,0.741667:C,"or","or",1477.930+1478.160,0.999690
</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-040)" word_cnt="10" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2011" R_T1="1611.218" R_T2="1614.050" word_aux="h_t1+t2,h_conf">
C,"which","which",1611.330+1611.520,1.000000:C,"is","is",1611.520+1611.650,0.993179:C,"back","back",1611.840+1611.960,0.317723:S,"behind","at",1611.960+1612.070,0.570178:C,"people's","people's",1612.070+1612.330,0.996889:C,"houses","houses",1612.330+1612.750,1.000000:C,"but","but",1612.750+1612.870,0.425969:C,"nobody","nobody",1612.870+1613.110,0.656936:C,"complains","complains",1613.110+1613.690,0.657179:D,"and",,,
</PATH>
<PATH id="(001-041)" word_cnt="13" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2013" R_T1="1614.075" R_T2="1616.439" word_aux="h_t1+t2,h_conf">
D,"the",,,:D,"dogs",,,:D,"do",,,:D,"not",,,:S,"usually","it's",1614.220+1614.390,0.332183:S,"bark","also",1614.390+1614.790,0.999136:S,"so","two",1614.790+1614.970,0.272409:S,"it","parts",1614.970+1615.290,0.618262:S,"is","was",1615.290+1615.440,0.790566:C,"pretty","pretty",1615.440+1615.700,0.999826:C,"it","it",1615.910+1615.960,0.323663:C,"is","is",1615.960+1616.010,0.323663:S,"cool","school",1616.010+1616.350,0.620702
</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-053)" word_cnt="10" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2031" R_T1="1659.836" R_T2="1663.220" word_aux="h_t1+t2,h_conf">
D,"and",,,:D,"he",,,:S,"veered","your",1660.120+1660.600,1.000000:S,"away","way",1660.600+1661.010,1.000000:C,"and","and",1661.010+1661.120,1.000000:D,"he",,,:D,"kept",,,:D,"lurching",,,:D,"kept",,,:D,"attacking",,,
</PATH>
<PATH id="(001-054)" word_cnt="20" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2033" R_T1="1663.275" R_T2="1666.451" word_aux="h_t1+t2,h_conf">
C,"he","he",1661.120+1661.220,0.999978:S,"did","cat",1661.220+1661.540,1.000000:S,"not","arching",1662.000+1662.480,1.000000:S,"actually","acting",1662.790+1663.210,0.999982:S,"bite","it",1663.390+1663.670,1.000000:S,"me","seems",1663.670+1663.860,1.000000:S,"but","like",1663.860+1664.130,1.000000:S,"every","there",1664.130+1664.300,1.000000:S,"time","is",1664.300+1664.360,0.999993:S,"he","we",1664.360+1664.530,1.000000:S,"came","can",1664.530+1664.720,1.000000:C,"close","close",1664.720+1664.940,1.000000:D,"i",,,:D,"swung",,,:S,"hard","that's",1664.940+1665.180,0.999999:S,"at","one",1665.180+1665.370,0.680237:S,"him","part",1665.370+1665.770,1.000000:S,"with","of",1665.770+1665.860,1.000000:C,"the","the",1665.860+1665.950,0.999999:D,"bag",,,
</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-092)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2174" R_T1="1892.005" R_T2="1892.566" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(001-093)" word_cnt="13" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2178" R_T1="1900.559" R_T2="1903.722" word_aux="h_t1+t2,h_conf">
D,"did",,,:C,"you","you",1900.770+1900.860,0.495930:C,"see","see",1900.860+1901.050,0.973998:C,"anything","anything",1901.050+1901.340,1.000000:C,"else","else",1901.340+1901.730,1.000000:S,"when","in",1902.180+1902.250,0.828723:S,"you","your",1902.250+1902.590,0.850683:S,"were","the",1902.590+1902.650,0.565903:S,"reading","guy",1902.650+1902.930,0.631496:S,"meters","said",1902.930+1903.200,0.650619:S,"like","lot",1903.200+1903.460,0.388012:S,"beside","states",1903.460+1904.160,0.736948:S,"dogs","to",1904.160+1904.230,0.831106
</PATH>
<PATH id="(001-094)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2182" R_T1="1904.113" R_T2="1904.606" word_aux="h_t1+t2,h_conf">
S,"yeah","death",1904.230+1904.520,0.874123
</PATH>
<PATH id="(001-096)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2204" R_T1="1953.529" R_T2="1954.024" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(001-098)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2221" R_T1="1366.650" R_T2="1367.175" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(001-099)" word_cnt="13" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2223" R_T1="1369.325" R_T2="1372.625" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:C,"(%hesitation)","",,:S,"not","and",1367.100+1367.250,0.534768:S,"as","see",1367.250+1367.450,0.929313:S,"familiar","what",1367.450+1367.650,0.931977:S,"as","might",1367.810+1367.990,0.646278:S,"you","be",1367.990+1368.120,0.640287:S,"are","i",1369.780+1369.890,0.631333:C,"(sure)","",,:C,"(as)","",,:C,"(%hesitation)","",,:C,"(how)","",,:C,"(many)","",,
</PATH>
<PATH id="(001-100)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2225" R_T1="1375.200" R_T2="1376.050" word_aux="h_t1+t2,h_conf">
S,"%bcack","am",1369.890+1370.000,0.631333
</PATH>
<PATH id="(001-101)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2229" R_T1="1384.825" R_T2="1385.225" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(001-102)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2234" R_T1="1395.000" R_T2="1395.325" word_aux="h_t1+t2,h_conf">
S,"%bcack","fields",1394.110+1394.420,0.181980
</PATH>
<PATH id="(001-106)" word_cnt="2" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2262" R_T1="1449.350" R_T2="1450.125" word_aux="h_t1+t2,h_conf">
D,"yes",,,:D,"%bcack",,,
</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-108)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2272" R_T1="1468.375" R_T2="1469.100" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(001-109)" word_cnt="4" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2273" R_T1="1471.300" R_T2="1472.975" word_aux="h_t1+t2,h_conf">
D,"the",,,:D,"plot",,,:D,"grows",,,:D,"thicker",,,
</PATH>
<PATH id="(001-110)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2275" R_T1="1473.600" R_T2="1474.050" word_aux="h_t1+t2,h_conf">
D,"right",,,
</PATH>
<PATH id="(001-111)" word_cnt="15" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2278" R_T1="1477.950" R_T2="1481.250" word_aux="h_t1+t2,h_conf">
D,"well",,,:D,"they",,,:D,"may",,,:D,"be",,,:D,"exploring",,,:C,"it","it",1476.940+1477.120,0.590553:D,"whether",,,:D,"they",,,:D,"are",,,:D,"publishing",,,:D,"is",,,:D,"a",,,:D,"different",,,:D,"question",,,:D,"%bcack",,,
</PATH>
<PATH id="(001-112)" word_cnt="2" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2281" R_T1="1482.400" R_T2="1483.950" word_aux="h_t1+t2,h_conf">
D,"yup",,,:D,"yup",,,
</PATH>
<PATH id="(001-114)" word_cnt="6" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2289" R_T1="1499.850" R_T2="1502.125" word_aux="h_t1+t2,h_conf">
D,"see",,,:D,"this",,,:D,"is",,,:S,"interesting","should",1500.400+1500.625,0.663574:C,"(%hesitation)","",,:C,"(%hesitation)","",,
</PATH>
<PATH id="(001-115)" word_cnt="12" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2291" R_T1="1502.700" R_T2="1505.375" word_aux="h_t1+t2,h_conf">
C,"(yo-)","",,:D,"you",,,:C,"(m-)","much",1503.490+1503.710,0.999768:C,"(t-)","",,:D,"mentioned",,,:D,"a",,,:D,"minute",,,:D,"or",,,:S,"so","move",1503.710+1503.990,0.445450:S,"ago","north",1503.990+1504.250,0.446202:S,"about","slope",1504.250+1504.500,0.629408:S,"the","of",1504.500+1504.680,0.732052
</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-119)" word_cnt="8" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2298" R_T1="1516.250" R_T2="1518.775" word_aux="h_t1+t2,h_conf">
D,"subject",,,:D,"to",,,:D,"the",,,:S,"bias","so",1516.470+1516.540,0.940404:S,"that","this",1516.540+1516.650,0.593311:S,"you","is",1516.650+1516.740,0.792630:S,"see","a",1516.810+1516.910,0.810939:S,"in","bar",1516.910+1517.130,0.874528
</PATH>
<PATH id="(001-120)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2301" R_T1="1521.725" R_T2="1522.250" word_aux="h_t1+t2,h_conf">
S,"%bcack","in",1522.030+1522.130,0.342791
</PATH>
<PATH id="(001-122)" word_cnt="2" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2311" R_T1="1537.975" R_T2="1538.550" word_aux="h_t1+t2,h_conf">
D,"o.",,,:D,"k.",,,
</PATH>
<PATH id="(001-125)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2320" R_T1="1554.050" R_T2="1554.575" word_aux="h_t1+t2,h_conf">
S,"%bcack","if",1552.460+1552.620,0.529558
</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>
<PATH id="(001-132)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2348" R_T1="1597.750" R_T2="1598.250" word_aux="h_t1+t2,h_conf">
S,"%bcack","things",1597.590+1597.890,0.530009
</PATH>
<PATH id="(001-133)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2357" R_T1="1624.325" R_T2="1624.850" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(001-136)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2496" R_T1="1911.625" R_T2="1912.150" word_aux="h_t1+t2,h_conf">
S,"%bcack","i",1912.000+1912.200,0.490643
</PATH>
<PATH id="(001-137)" word_cnt="1" labels="<O,MALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2513" R_T1="1951.175" R_T2="1951.900" word_aux="h_t1+t2,h_conf">
S,"%bcack","i",1949.380+1949.430,0.996032
</PATH>
</SPEAKER>
<SPEAKER id="002">
<PATH id="(002-004)" word_cnt="30" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1870" R_T1="1340.000" R_T2="1348.100" word_aux="h_t1+t2,h_conf">
S,"yeah","when",1340.420+1340.540,0.979798:C,"we","we",1340.670+1340.750,0.982459:C,"started","started",1340.750+1341.270,1.000000:C,"we","we",1341.270+1341.530,1.000000:C,"went","went",1341.530+1341.760,0.996425:C,"down","down",1341.760+1342.170,1.000000:C,"(%hesitation)","",,:D,"we",,,:D,"started",,,:S,"we","with",1342.890+1343.240,0.413791:S,"left","it",1343.240+1343.350,0.413791:C,"in","in",1343.350+1343.430,0.993244:C,"january","january",1343.430+1344.150,1.000000:C,"so","so",1344.150+1344.310,0.999996:C,"we","we",1344.310+1344.420,1.000000:C,"started","started",1344.420+1344.810,1.000000:S,"down","for",1344.970+1345.390,0.540411:S,"florida","a",1345.390+1345.420,0.480753:C,"way","way",1345.420+1345.610,0.705133:C,"of","of",1345.610+1345.690,1.000000:C,"course","course",1345.740+1346.200,1.000000:D,"and",,,:S,"then","graduate",1346.320+1346.780,0.998396:S,"gradually","work",1346.780+1346.980,0.959138:S,"worked","for",1346.980+1347.080,0.519770:S,"our","work",1347.080+1347.350,0.956925:S,"way","was",1347.350+1347.520,0.953804:S,"across","to",1347.520+1347.600,0.928187:S,"the","set",1347.600+1347.830,0.994823:S,"south","up",1347.830+1348.020,0.994823
</PATH>
<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-007)" word_cnt="21" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1874" R_T1="1354.625" R_T2="1359.325" word_aux="h_t1+t2,h_conf">
D,"into",,,:D,"minnesota",,,:D,"and",,,:S,"all","interviews",1354.630+1355.220,1.000000:S,"them","of",1355.220+1355.400,1.000000:S,"we","the",1355.400+1355.480,1.000000:S,"went","moving",1355.480+1356.130,1.000000:S,"into","to",1356.130+1356.220,1.000000:C,"canada","canada",1356.220+1356.800,1.000000:C,"up","up",1356.800+1356.960,0.997976:I,,"and",1356.960+1357.110,0.886163:S,"around","on",1357.110+1357.210,0.850700:C,"the","the",1357.210+1357.300,0.936226:C,"other","other",1357.300+1357.410,0.850700:C,"side","side",1357.410+1357.700,0.852537:C,"of","of",1357.700+1357.760,0.936244:C,"the","the",1357.760+1357.840,1.000000:C,"rockies","rockies",1357.840+1358.360,1.000000:C,"the","the",1358.360+1358.420,1.000000:C,"canadian","canadian",1358.420+1358.930,0.949241:S,"side","i",1359.090+1359.270,0.999899
</PATH>
<PATH id="(002-008)" word_cnt="16" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1876" R_T1="1359.600" R_T2="1363.575" word_aux="h_t1+t2,h_conf">
C,"came","came",1359.610+1359.810,1.000000:C,"back","back",1359.810+1360.080,1.000000:D,"down",,,:S,"through","to",1360.080+1360.140,0.510933:S,"the","hanson",1360.140+1360.500,0.504320:C,"pacific","pacific",1360.500+1360.980,1.000000:C,"north","north",1360.980+1361.275,1.000000:C,"west","west",1361.275+1361.570,1.000000:D,"and",,,:S,"california","californians",1361.640+1362.650,0.743942:S,"and","back",1362.650+1362.850,0.819722:S,"then","to",1362.850+1362.910,0.512088:S,"back","clothes",1362.910+1363.210,0.512088:S,"across","in",1363.210+1363.310,0.556803:C,"the","the",1363.310+1363.410,0.727342:D,"middle",,,
</PATH>
<PATH id="(002-011)" word_cnt="36" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1884" R_T1="1371.475" R_T2="1378.550" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"(y-)","",,:S,"a","there's",1372.280+1372.450,0.439638:S,"lot","lots",1372.450+1372.780,0.454423:S,"but","of",1372.780+1372.840,0.459232:C,"just","just",1372.840+1373.150,0.608605:S,"well","a",1373.150+1373.260,0.526219:S,"we","little",1373.260+1373.550,0.527975:S,"stopped","to",1373.880+1374.010,0.589438:S,"in","think",1374.010+1374.290,0.855397:S,"vegas","it",1374.290+1374.360,0.470538:S,"we","should",1374.360+1374.510,0.470538:S,"got","get",1374.510+1374.690,0.615141:C,"jobs","jobs",1374.690+1375.200,0.615141:D,"we",,,:C,"worked","worked",1375.320+1375.560,0.589991:C,"in","in",1375.560+1375.630,0.728284:C,"vegas","vegas",1375.630+1376.070,0.764720:D,"we",,,:D,"were",,,:D,"going",,,:S,"to","will",1376.070+1376.180,0.828641:S,"live","go",1376.180+1376.380,0.828677:C,"there","there",1376.380+1376.720,0.895463:C,"for","for",1376.720+1376.790,1.000000:C,"a","a",1376.790+1376.820,0.999947:C,"while","while",1376.820+1377.130,1.000000:C,"but","but",1377.130+1377.380,0.999987:D,"after",,,:D,"a",,,:D,"month",,,:D,"we",,,:S,"got","them",1377.380+1377.610,0.960161:S,"tired","up",1377.610+1377.730,0.753379:S,"of","the",1377.730+1377.800,0.971030:S,"that","guitar",1377.800+1378.260,0.997356
</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-017)" word_cnt="19" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1891" R_T1="1394.100" R_T2="1397.575" word_aux="h_t1+t2,h_conf">
S,"door","so",1394.240+1394.340,0.273224:C,"one","one",1394.340+1394.600,0.999930:C,"day","day",1394.600+1394.780,0.999929:D,"and",,,:C,"i","i",1394.780+1394.910,0.892259:C,"met","met",1394.910+1395.120,0.892159:I,,"hers",1395.120+1395.430,0.637934:S,"her","you",1395.430+1395.530,0.792484:S,"she","cannot",1395.630+1395.890,0.792484:S,"was","at",1395.890+1396.090,0.473316:S,"campaigning","the",1396.090+1396.170,0.534964:S,"for","time",1396.170+1396.480,0.938513:S,"tom","and",1396.480+1396.610,0.648744:S,"hayden","even",1396.610+1396.820,0.686203:S,"then","and",1396.820+1396.950,0.660922:C,"he","he",1396.950+1397.040,0.999739:C,"was","was",1397.040+1397.160,1.000000:C,"like","like",1397.160+1397.330,1.000000:S,"a","what",1397.330+1397.480,0.647978
</PATH>
<PATH id="(002-018)" word_cnt="9" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1893" R_T1="1398.275" R_T2="1401.400" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"(%hesitation)","",,:S,"radical","rack",1398.710+1399.100,0.722665:S,"he","once",1399.100+1399.320,0.362923:S,"was","this",1399.320+1399.480,0.400414:S,"running","month",1399.480+1399.800,0.765892:S,"for","or",1399.800+1399.830,0.811975:C,"something","something",1399.830+1400.230,0.803420:C,"(%hesitation)","",,
</PATH>
<PATH id="(002-025)" word_cnt="9" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1909" R_T1="1418.375" R_T2="1421.775" word_aux="h_t1+t2,h_conf">
D,"oh",,,:S,"yeah","the",1419.360+1419.700,0.581691:S,"a","the",1419.700+1419.880,0.674692:S,"lot","the",1419.880+1420.290,0.940314:C,"but","but",1420.650+1420.810,1.000000:C,"mainly","mainly",1420.810+1421.250,0.999971:D,"the",,,:C,"the","the",1421.460+1421.560,1.000000:C,"best","best",1421.560+1421.810,1.000000
</PATH>
<PATH id="(002-026)" word_cnt="19" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1910" R_T1="1421.775" R_T2="1425.650" word_aux="h_t1+t2,h_conf">
C,"part","part",1421.810+1422.100,0.539896:C,"of","of",1422.100+1422.210,0.927532:D,"the",,,:D,"trip",,,:C,"was","was",1422.210+1422.360,0.999720:D,"we",,,:C,"made","made",1422.360+1422.550,0.993529:C,"a","a",1422.550+1422.600,1.000000:C,"lot","lot",1422.600+1422.820,1.000000:C,"of","of",1422.820+1422.880,0.999773:C,"friends","friends",1422.930+1423.260,0.998630:C,"that","that",1423.450+1423.580,1.000000:C,"we","we",1423.580+1423.780,0.999980:C,"saw","saw",1423.780+1424.140,0.990703:C,"for","for",1424.140+1424.290,0.993176:C,"years","years",1424.290+1424.650,1.000000:C,"later","later",1424.650+1424.950,1.000000:D,"you",,,:S,"know","p",1425.040+1425.320,0.270165
</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-028)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1914" R_T1="1431.525" R_T2="1434.175" word_aux="h_t1+t2,h_conf">
C,"and","and",1431.710+1432.010,0.999033:C,"and","and",1432.060+1432.200,0.999714:C,"that","that",1432.200+1432.320,1.000000:C,"is","is",1432.320+1432.440,1.000000:C,"pretty","pretty",1432.440+1432.650,1.000000:D,"rare",,,:S,"to","weird",1432.650+1432.840,0.695952:C,"have","have",1432.840+1433.020,0.993421:C,"a","a",1433.020+1433.070,0.965338:S,"friendship","in",1433.410+1433.520,1.000000:S,"with","some",1433.520+1433.700,1.000000:S,"somebody","ways",1433.700+1433.920,1.000000:S,"that","it",1433.920+1434.030,1.000000:C,"is","is",1434.030+1434.140,1.000000
</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-033)" word_cnt="18" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1923" R_T1="1446.325" R_T2="1450.425" word_aux="h_t1+t2,h_conf">
C,"and","and",1446.500+1446.600,0.957562:D,"then",,,:C,"we","we",1446.600+1446.680,0.976926:S,"said","say",1446.680+1446.840,0.778833:C,"good","good",1446.840+1447.045,0.992237:C,"bye","bye",1447.045+1447.250,0.992237:D,"to",,,:D,"them",,,:C,"and","and",1447.250+1447.370,0.932851:C,"we","we",1447.710+1447.800,0.999297:C,"ran","ran",1447.800+1448.070,0.988175:C,"into","into",1448.070+1448.240,0.820623:C,"them","them",1448.240+1448.410,0.999664:C,"again","again",1448.410+1448.950,0.999999:S,"in","on",1449.500+1449.640,0.933962:C,"the","the",1449.640+1449.700,0.999594:C,"west","west",1449.700+1450.000,1.000000:C,"coast","coast",1450.000+1450.370,1.000000
</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-037)" word_cnt="18" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1930" R_T1="1457.725" R_T2="1461.900" word_aux="h_t1+t2,h_conf">
S,"good","you",1458.280+1458.380,0.405603:S,"years","are",1458.380+1458.480,0.405603:S,"back","like",1458.720+1458.930,0.817251:S,"then","that",1458.930+1459.060,0.787878:C,"it","it",1459.060+1459.120,0.499331:C,"was","was",1459.120+1459.230,0.999964:C,"like","like",1459.230+1459.530,1.000000:D,"gas",,,:S,"was","this",1459.530+1459.700,0.324121:S,"like","is",1459.700+1459.820,0.423305:S,"forty","four",1459.820+1460.030,0.524843:C,"six","six",1460.030+1460.400,1.000000:C,"nine","nine",1460.400+1460.620,0.526730:S,"a","now",1460.620+1460.680,0.473270:C,"gallon","gallon",1460.680+1461.110,0.494650:D,"and",,,:D,"you",,,:D,"know",,,
</PATH>
<PATH id="(002-040)" word_cnt="20" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1942" R_T1="1478.000" R_T2="1482.375" word_aux="h_t1+t2,h_conf">
C,"(ya-)","",,:S,"oh","ten",1477.410+1477.730,0.995812:S,"yeah","hell",1478.160+1478.450,0.999419:C,"yeah","yeah",1478.450+1478.850,0.998109:S,"we","it",1478.850+1478.980,0.880931:S,"had","was",1478.980+1479.110,0.880931:C,"a","a",1479.290+1479.340,0.382035:C,"(l-)","",,:D,"yeah",,,:D,"in",,,:S,"fact","the",1479.860+1480.080,0.411255:S,"in","second",1480.080+1480.460,0.650631:C,"yellowstone","yellowstone",1480.460+1481.030,0.635544:C,"we","we",1481.030+1481.160,0.557897:D,"had",,,:D,"a",,,:D,"thing",,,:S,"with","as",1481.160+1481.500,0.523417:C,"a","a",1481.500+1481.540,0.894160:S,"bear","motivator",1481.540+1482.260,0.912830
</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-047)" word_cnt="19" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1949" R_T1="1504.225" R_T2="1507.325" word_aux="h_t1+t2,h_conf">
D,"in",,,:D,"the",,,:D,"car",,,:D,"and",,,:S,"we","club",1504.390+1504.670,0.517005:S,"heard","or",1504.670+1504.870,0.860927:S,"this","just",1504.870+1505.070,0.998260:C,"noise","noise",1505.070+1505.370,0.922711:C,"and","and",1505.370+1505.460,0.922711:C,"we","we",1505.460+1505.550,0.926228:S,"looked","walk",1505.550+1505.750,0.732570:C,"up","up",1505.750+1505.880,1.000000:D,"there",,,:S,"was","to",1505.880+1505.970,1.000000:S,"a","the",1506.040+1506.210,1.000000:C,"bear","bear",1506.210+1506.580,0.463948:D,"outside",,,:S,"the","at",1506.580+1506.720,0.750213:S,"car","seven",1506.720+1506.890,0.744668
</PATH>
<PATH id="(002-048)" word_cnt="19" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1951" R_T1="1507.550" R_T2="1511.525" word_aux="h_t1+t2,h_conf">
S,"and","o'clock",1506.890+1507.370,0.750213:C,"so","so",1508.350+1508.510,0.657943:D,"we",,,:D,"rolled",,,:D,"up",,,:D,"the",,,:D,"windows",,,:D,"and",,,:D,"we",,,:S,"panicked","reluctantly",1508.660+1509.180,0.930689:S,"and","this",1509.180+1509.380,0.922899:S,"he","tactic",1509.610+1510.090,0.911171:C,"was","was",1510.160+1510.300,0.533620:S,"walking","walk",1510.300+1510.560,1.000000:C,"around","around",1510.560+1510.810,1.000000:C,"the","the",1510.810+1510.870,0.726815:C,"car","car",1510.870+1511.450,0.731093:D,"and",,,:D,"like",,,
</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-051)" word_cnt="27" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1955" R_T1="1517.425" R_T2="1522.150" word_aux="h_t1+t2,h_conf">
D,"the",,,:D,"car",,,:D,"and",,,:S,"came","clark",1517.610+1518.020,0.977780:S,"out","in",1518.020+1518.090,0.922293:S,"his","that",1518.090+1518.180,0.922218:S,"prints","trade",1518.470+1518.640,0.661504:S,"were","for",1518.640+1518.700,0.960397:C,"all","all",1518.930+1519.050,0.960875:D,"over",,,:C,"the","the",1519.150+1519.220,0.900753:D,"you",,,:S,"know","with",1519.250+1519.350,0.892534:S,"the","a",1519.700+1519.770,0.919755:C,"car","car",1519.990+1520.380,0.926849:D,"i",,,:D,"do",,,:D,"not",,,:D,"know",,,:D,"if",,,:S,"he","let",1520.500+1520.620,0.926226:S,"was","me",1520.620+1520.730,0.926226:S,"leaning","look",1521.330+1521.500,0.999999:C,"(out)","",,:S,"looking","at",1521.500+1521.560,0.999999:S,"in","it",1521.560+1521.620,0.997510:S,"or","and",1521.620+1521.770,0.742935
</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-056)" word_cnt="6" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1965" R_T1="1531.275" R_T2="1532.975" word_aux="h_t1+t2,h_conf">
C,"and","and",1531.840+1531.940,0.485838:D,"another",,,:D,"time",,,:D,"we",,,:S,"went","not",1531.940+1532.170,0.776019:C,"out","out",1532.610+1532.940,0.991750
</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-058)" word_cnt="24" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1969" R_T1="1537.675" R_T2="1541.950" word_aux="h_t1+t2,h_conf">
D,"and",,,:D,"we",,,:D,"got",,,:S,"around","kind",1537.930+1538.140,0.386925:S,"the","out",1538.140+1538.290,0.435080:C,"front","front",1538.290+1538.610,0.561262:D,"of",,,:D,"the",,,:D,"tent",,,:S,"we","time",1538.610+1538.860,0.937720:S,"saw","so",1538.860+1539.040,0.999438:S,"something","some",1539.040+1539.240,0.996011:C,"had","had",1539.240+1539.420,0.998069:C,"been","been",1539.420+1539.540,0.999998:C,"in","in",1539.540+1539.670,1.000000:C,"the","the",1539.670+1539.750,1.000000:S,"cooler","corner",1539.750+1540.240,0.962828:C,"and","and",1540.240+1540.330,0.912386:S,"there","it",1540.330+1540.390,0.904422:C,"was","was",1540.390+1540.510,0.955484:I,,"ooh",1541.160+1541.360,0.985312:I,,"that",1541.360+1541.520,0.893976:S,"food","we",1541.520+1541.650,0.521596:S,"everywhere","would",1541.650+1541.780,0.802883
</PATH>
<PATH id="(002-059)" word_cnt="2" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1971" R_T1="1542.375" R_T2="1543.375" word_aux="h_t1+t2,h_conf">
C,"and","and",1542.470+1542.850,1.000000:C,"(%hesitation)","",,
</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-083)" word_cnt="13" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2066" R_T1="1719.300" R_T2="1722.550" word_aux="h_t1+t2,h_conf">
C,"i","i",1719.580+1719.680,1.000000:C,"guess","guess",1719.680+1719.860,0.999849:S,"it","he",1719.860+1719.940,0.855288:C,"goes","goes",1719.940+1720.180,0.971171:C,"away","away",1720.180+1720.560,0.977508:C,"when","when",1720.560+1720.930,0.641151:C,"you","you",1720.930+1721.050,1.000000:C,"know","know",1721.050+1721.210,0.999716:C,"the","the",1721.210+1721.370,0.999934:D,"odor",,,:S,"goes","other",1721.370+1721.690,0.999987:S,"away","is",1721.690+1721.810,0.354661:S,"but","do",1721.810+1721.870,0.333736
</PATH>
<PATH id="(002-084)" word_cnt="23" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2069" R_T1="1723.975" R_T2="1728.100" word_aux="h_t1+t2,h_conf">
S,"a","it's",1724.110+1724.210,0.714770:S,"dog","all",1724.210+1724.370,0.537079:S,"can","to",1724.370+1724.480,0.891041:S,"be","the",1724.480+1724.700,0.966040:S,"a","next",1724.700+1725.020,0.999656:S,"nasty","if",1725.020+1725.160,0.869608:C,"people","people",1725.400+1725.680,0.996428:D,"do",,,:D,"not",,,:C,"you","you",1725.900+1725.990,0.907252:C,"know","know",1725.990+1726.100,0.907252:C,"they","they",1726.100+1726.210,0.914031:C,"take","take",1726.210+1726.390,0.846101:D,"them",,,:D,"for",,,:D,"granted",,,:C,"a","a",1726.390+1726.440,0.997497:S,"dog","radical",1726.440+1727.110,0.997762:S,"can","could",1727.110+1727.220,1.000000:C,"be","be",1727.220+1727.320,1.000000:I,,"in",1727.320+1727.460,0.984169:S,"a","the",1727.460+1727.560,0.984169:S,"nasty","fifties",1727.560+1727.980,0.984169
</PATH>
<PATH id="(002-087)" word_cnt="6" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2077" R_T1="1738.200" R_T2="1740.375" word_aux="h_t1+t2,h_conf">
C,"i","i",1738.780+1738.940,1.000000:C,"know","know",1738.940+1739.140,0.997594:C,"i","i",1739.140+1739.310,0.957772:C,"i","i",1739.310+1739.530,0.857428:C,"read","read",1739.530+1739.770,0.920462:C,"meters","meters",1739.770+1740.270,0.994118
</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-093)" word_cnt="20" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2092" R_T1="1766.425" R_T2="1770.325" word_aux="h_t1+t2,h_conf">
C,"and","and",1766.510+1766.770,1.000000:C,"(%hesitation)","",,:C,"i","i",1766.770+1766.920,0.999979:C,"had","had",1766.920+1767.150,0.999943:S,"one","a",1767.280+1767.310,0.929077:S,"day","monday",1767.310+1767.590,0.981044:C,"a","a",1767.590+1767.630,0.991431:C,"couple","couple",1767.630+1767.930,0.974325:D,"of",,,:D,"them",,,:D,"got",,,:S,"me","one",1767.930+1768.100,0.884714:S,"by","copy",1768.100+1768.440,0.962469:S,"the","but",1768.440+1768.650,0.986152:C,"i","i",1768.650+1768.910,0.999740:D,"had",,,:C,"steel","steel",1769.020+1769.380,1.000000:C,"toed","toed",1769.380+1769.620,1.000000:C,"boots","boots",1769.620+1769.940,1.000000:C,"on","on",1769.940+1770.120,0.998604
</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-095)" word_cnt="12" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2094" R_T1="1774.250" R_T2="1776.325" word_aux="h_t1+t2,h_conf">
C,"and","and",1774.260+1774.420,1.000000:S,"i","that",1774.420+1774.510,0.755221:C,"was","was",1774.510+1774.620,1.000000:D,"holding",,,:D,"onto",,,:D,"the",,,:D,"fence",,,:S,"and","almost",1774.620+1775.000,0.758428:S,"they","this",1775.390+1775.500,0.212140:S,"were","it",1775.500+1775.580,0.321270:S,"like","really",1775.580+1775.800,0.907388:S,"dragging","object",1775.800+1776.230,0.816585
</PATH>
<PATH id="(002-096)" word_cnt="13" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2097" R_T1="1776.925" R_T2="1779.575" word_aux="h_t1+t2,h_conf">
C,"and","and",1777.120+1777.210,0.496547:C,"this","this",1777.210+1777.370,0.822145:C,"guy","guy",1777.370+1777.630,0.787886:C,"(ca-)","",,:D,"came",,,:D,"out",,,:D,"and",,,:D,"was",,,:S,"like","he",1778.100+1778.240,0.469889:S,"telling","may",1778.240+1778.400,0.454675:S,"me","most",1778.550+1778.750,0.386095:S,"oh","time",1778.750+1779.120,0.999938:C,"i","i",1779.120+1779.580,0.999998
</PATH>
<PATH id="(002-097)" word_cnt="22" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2098" R_T1="1779.575" R_T2="1784.475" word_aux="h_t1+t2,h_conf">
C,"called","called",1779.610+1779.930,1.000000:D,"them",,,:C,"and","and",1779.930+1780.070,0.999680:C,"told","told",1780.070+1780.350,0.999982:C,"them","them",1780.350+1780.520,0.944861:C,"not","not",1780.520+1780.720,1.000000:C,"to","to",1780.720+1780.790,1.000000:C,"let","let",1780.790+1780.970,1.000000:S,"anyone","it",1780.970+1781.100,0.999983:C,"come","come",1781.210+1781.370,1.000000:C,"back","back",1781.370+1781.600,1.000000:S,"here","on",1781.680+1781.770,0.733006:C,"but","but",1781.770+1781.910,0.466406:D,"you",,,:S,"know","from",1782.130+1782.380,0.530103:C,"the","the",1782.380+1782.570,0.533423:D,"way",,,:S,"things","with",1782.570+1782.790,0.953824:S,"are","them",1782.790+1782.940,0.953676:S,"done","i",1783.220+1783.300,0.461240:S,"no","am",1783.300+1783.380,0.461240:C,"communication","communication",1783.490+1784.220,0.963041
</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-129)" word_cnt="9" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2173" R_T1="1891.625" R_T2="1893.700" word_aux="h_t1+t2,h_conf">
C,"you","you",1891.680+1891.820,1.000000:C,"know","know",1891.820+1892.060,1.000000:C,"and","and",1892.250+1892.340,0.923934:D,"get",,,:D,"back",,,:S,"it","that",1892.340+1892.610,0.997250:C,"worked","worked",1892.760+1893.020,0.999907:S,"out","up",1893.020+1893.200,0.626482:S,"perfect","for",1893.200+1893.410,0.999996
</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-131)" word_cnt="3" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2176" R_T1="1897.925" R_T2="1900.175" word_aux="h_t1+t2,h_conf">
S,"nobody","that",1898.190+1898.370,0.620863:S,"said","we",1898.370+1898.530,0.782654:C,"anything","anything",1898.750+1899.120,0.999870
</PATH>
<PATH id="(002-134)" word_cnt="6" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2181" R_T1="1902.425" R_T2="1904.625" word_aux="h_t1+t2,h_conf">
D,"guys",,,:D,"got",,,:D,"bit",,,:S,"by","we",1901.730+1901.870,1.000000:S,"snakes","read",1901.870+1902.180,0.832611:C,"(%hesitation)","",,
</PATH>
<PATH id="(002-135)" word_cnt="9" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2183" R_T1="1904.750" R_T2="1907.525" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"but","but",1905.220+1905.350,0.918427:C,"none","none",1905.350+1905.520,0.997435:S,"turned","of",1905.520+1905.580,0.997018:S,"out","them",1905.580+1905.670,0.997053:C,"to","to",1905.670+1905.790,0.998784:S,"be","that",1905.790+1905.990,0.613679:S,"poisonous","was",1906.260+1906.510,0.550697:S,"(%hesitation)","in",1906.510+1906.570,0.494221
</PATH>
<PATH id="(002-137)" word_cnt="3" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2190" R_T1="1916.925" R_T2="1917.975" word_aux="h_t1+t2,h_conf">
I,,"if",1916.910+1917.120,0.571235:S,"and","if",1917.120+1917.240,0.825443:S,"(%hesitation)","you",1917.240+1917.310,0.612396
</PATH>
<PATH id="(002-138)" word_cnt="4" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2194" R_T1="1928.400" R_T2="1929.875" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"did",,,:D,"mention",,,:D,"that",,,
</PATH>
<PATH id="(002-139)" word_cnt="7" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2200" R_T1="1943.125" R_T2="1944.750" word_aux="h_t1+t2,h_conf">
C,"it","it",1943.330+1943.460,0.668245:C,"takes","takes",1943.460+1943.730,0.466974:S,"you","it",1943.730+1943.820,0.293867:C,"over","over",1943.820+1944.130,0.618096:C,"it","it",1944.130+1944.195,0.595064:C,"is","is",1944.195+1944.260,0.595064:C,"just","just",1944.260+1944.470,0.632235
</PATH>
<PATH id="(002-140)" word_cnt="8" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2202" R_T1="1944.950" R_T2="1947.075" word_aux="h_t1+t2,h_conf">
C,"like","like",1945.350+1945.600,1.000000:D,"i",,,:C,"you","you",1945.820+1946.020,0.972293:C,"get","get",1946.020+1946.200,0.999948:C,"to","to",1946.200+1946.290,0.971623:C,"like","like",1946.290+1946.610,0.999196:C,"it","it",1946.610+1946.710,0.993066:C,"but","but",1946.710+1946.980,0.991526
</PATH>
<PATH id="(002-141)" word_cnt="27" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2203" R_T1="1947.325" R_T2="1953.650" word_aux="h_t1+t2,h_conf">
C,"i","i",1947.420+1947.500,1.000000:C,"think","think",1947.500+1947.800,0.999995:C,"like","like",1947.800+1948.080,0.993882:C,"i","i",1948.080+1948.220,0.999999:C,"was","was",1948.220+1948.370,1.000000:C,"reading","reading",1948.370+1948.620,1.000000:C,"about","about",1948.620+1948.860,1.000000:D,"the",,,:C,"psychology","psychology",1948.860+1949.460,1.000000:D,"of",,,:C,"color","color",1949.460+1949.820,0.721822:D,"and",,,:S,"they","disagreements",1949.820+1950.590,0.988201:S,"said","the",1950.590+1950.650,0.998840:S,"green","rest",1950.650+1951.010,0.998912:S,"is","of",1951.010+1951.080,0.998912:S,"a","the",1951.080+1951.140,0.995909:S,"rested","call",1951.140+1951.440,0.653285:S,"color","it",1951.440+1951.530,0.653285:C,"but","but",1951.530+1951.650,0.882950:S,"like","with",1951.650+1951.780,0.494430:C,"too","too",1951.780+1952.010,1.000000:C,"much","much",1952.010+1952.370,1.000000:D,"of",,,:C,"it","it",1952.690+1952.810,0.874767:S,"creates","is",1952.810+1952.930,0.874767:C,"anxiety","anxiety",1952.930+1953.580,0.712782
</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>
<PATH id="(002-143)" word_cnt="15" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2206" R_T1="1957.175" R_T2="1960.250" word_aux="h_t1+t2,h_conf">
C,"and","and",1957.340+1957.460,0.629270:S,"i","it's",1957.460+1957.610,0.469677:C,"just","just",1957.610+1957.780,0.999318:D,"got",,,:S,"tired","that's",1957.780+1958.000,0.656062:S,"of","harder",1958.000+1958.400,0.770566:S,"every","would",1958.400+1958.730,0.444741:S,"day","be",1958.730+1958.860,0.872248:S,"being","a",1958.860+1958.930,0.609973:C,"perfect","perfect",1958.930+1959.410,0.654738:D,"almost",,,:D,"you",,,:D,"know",,,:D,"it",,,:S,"is","moment's",1959.410+1959.800,0.823540
</PATH>
<PATH id="(002-144)" word_cnt="11" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2208" R_T1="1960.275" R_T2="1963.750" word_aux="h_t1+t2,h_conf">
S,"you","notice",1959.800+1960.100,0.826559:S,"know","if",1960.530+1960.590,0.449860:C,"you","you",1960.590+1960.650,0.467097:C,"have","have",1960.650+1960.740,0.629403:C,"a","a",1960.740+1960.800,0.851116:C,"little","little",1960.800+1961.000,0.999149:C,"rainy","rainy",1961.000+1961.400,0.992451:C,"season","season",1961.400+1961.790,0.999892:D,"about",,,:S,"september","benefit",1961.890+1962.360,0.989430:C,"but","but",1963.300+1963.430,0.977328
</PATH>
</SPEAKER>
<SPEAKER id="003">
<PATH id="(003-008)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1908" R_T1="1418.325" R_T2="1419.300" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<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-011)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1924" R_T1="1449.100" R_T2="1450.175" word_aux="h_t1+t2,h_conf">
S,"%hesitation","then",1447.370+1447.580,0.866402
</PATH>
<PATH id="(003-013)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1931" R_T1="1457.775" R_T2="1458.500" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(003-018)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1950" R_T1="1507.250" R_T2="1508.025" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(003-023)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="1966" R_T1="1531.550" R_T2="1532.950" word_aux="h_t1+t2,h_conf">
S,"%hesitation","somebody",1532.170+1532.610,0.546819
</PATH>
<PATH id="(003-039)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2012" R_T1="1613.775" R_T2="1614.475" word_aux="h_t1+t2,h_conf">
S,"%hesitation","not",1611.650+1611.840,0.453982
</PATH>
<PATH id="(003-044)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2032" R_T1="1661.925" R_T2="1663.375" word_aux="h_t1+t2,h_conf">
S,"%hesitation","back",1665.950+1666.350,0.999998
</PATH>
<PATH id="(003-057)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2065" R_T1="1719.125" R_T2="1720.100" word_aux="h_t1+t2,h_conf">
S,"wow","way",1721.870+1722.140,0.430938
</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-063)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2078" R_T1="1738.400" R_T2="1739.225" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(003-067)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2091" R_T1="1766.350" R_T2="1767.600" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(003-070)" word_cnt="2" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2099" R_T1="1783.000" R_T2="1784.500" word_aux="h_t1+t2,h_conf">
S,"yeah","will",1781.100+1781.210,0.999983:S,"right","to",1783.380+1783.490,0.232309
</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-094)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2177" R_T1="1899.000" R_T2="1900.125" word_aux="h_t1+t2,h_conf">
S,"%hesitation","say",1898.530+1898.750,0.494744
</PATH>
<PATH id="(003-095)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2184" R_T1="1906.800" R_T2="1907.900" word_aux="h_t1+t2,h_conf">
S,"%hesitation","this",1906.570+1906.780,0.728061
</PATH>
<PATH id="(003-098)" word_cnt="5" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2189" R_T1="1916.675" R_T2="1918.425" word_aux="h_t1+t2,h_conf">
S,"used","have",1917.310+1917.410,0.538529:C,"to","to",1917.410+1917.470,0.518838:S,"get","figure",1917.470+1917.790,0.527500:S,"the","out",1917.790+1917.980,0.527500:C,"(%hesitation)","",,
</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-101)" word_cnt="18" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2193" R_T1="1924.200" R_T2="1928.675" word_aux="h_t1+t2,h_conf">
S,"going","coming",1924.320+1924.580,0.605024:S,"down","up",1924.580+1924.710,0.605030:C,"for","for",1924.710+1924.800,0.998525:C,"two","two",1924.800+1925.020,1.000000:S,"week","weeks",1925.020+1925.260,1.000000:C,"vacation","vacation",1925.260+1925.880,1.000000:D,"and",,,:D,"i",,,:D,"ended",,,:D,"up",,,:D,"staying",,,:D,"six",,,:S,"months","in",1926.090+1926.260,0.650622:S,"i","abstract",1926.260+1926.760,0.283436:S,"liked","spencer's",1926.760+1927.120,0.711009:S,"it","mom",1927.120+1927.340,0.859130:S,"so","talks",1927.580+1928.080,0.915446:S,"much","image",1928.790+1929.220,0.999987
</PATH>
<PATH id="(003-102)" word_cnt="2" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2195" R_T1="1929.350" R_T2="1930.475" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",1929.470+1929.880,0.986518:C,"just","just",1929.980+1930.290,1.000000
</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-107)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2201" R_T1="1944.125" R_T2="1945.575" word_aux="h_t1+t2,h_conf">
S,"yeah","that",1945.600+1945.820,0.744067
</PATH>
<PATH id="(003-108)" word_cnt="1" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2207" R_T1="1959.675" R_T2="1960.775" word_aux="h_t1+t2,h_conf">
S,"%bcack","temper",1962.540+1963.100,0.837457
</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>
<PATH id="(003-115)" word_cnt="14" labels="<O,MALE,L1>" file="LDC_20011121-1700_D_NONE" channel="1" sequence="2217" R_T1="1982.150" R_T2="1986.750" word_aux="h_t1+t2,h_conf">
D,"and",,,:D,"it",,,:D,"was",,,:D,"a",,,:S,"blizzard","of",1982.810+1983.000,0.349341:S,"up","wizard",1983.000+1983.470,0.607788:S,"here","o.",1983.470+1983.655,0.674223:S,"man","k.",1983.655+1983.840,0.674223:S,"let","i",1985.000+1985.090,0.646017:S,"me","have",1985.090+1985.200,0.996485:S,"get","a",1985.200+1985.280,0.999318:S,"back","major",1985.280+1985.540,0.999964:S,"down","effect",1985.540+1985.890,0.999973:S,"there","on",1986.010+1986.130,0.999973
</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-002)" word_cnt="14" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2222" R_T1="1367.025" R_T2="1369.575" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"is",,,:D,"the",,,:C,"(oi-)","",,:C,"you","you",1367.650+1367.810,0.929243:D,"know",,,:C,"(abou-)","",,:C,"(y-)","",,:C,"you","you",1368.120+1368.340,0.573588:C,"you","you",1368.340+1368.550,0.983393:C,"familiar","familiar",1368.550+1368.880,1.000000:C,"with","with",1368.880+1368.990,0.999989:C,"that","that",1368.990+1369.240,0.999732:C,"one","one",1369.240+1369.420,0.999743
</PATH>
<PATH id="(004-003)" word_cnt="18" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2224" R_T1="1371.325" R_T2="1376.175" word_aux="h_t1+t2,h_conf">
S,"well","sorry",1370.000+1370.230,0.646315:S,"you","for",1370.230+1370.350,0.873979:S,"heard","flavor",1371.370+1371.850,0.858715:S,"it","or",1371.850+1371.980,0.839808:C,"a","a",1371.980+1372.020,0.997372:C,"little","little",1372.020+1372.250,0.999996:C,"bit","bit",1372.250+1372.410,0.999990:C,"you","you",1372.660+1372.810,1.000000:C,"know","know",1372.810+1373.080,1.000000:C,"that","that",1373.080+1373.240,0.705365:S,"the","people",1373.240+1373.520,0.999284:S,"oil","l.",1373.520+1373.840,0.999993:S,"the","p.",1373.840+1374.060,0.999993:S,"the","c.",1374.100+1374.280,0.999893:S,"company","companies",1374.370+1374.780,0.996555:S,"unocal","account",1374.930+1375.400,1.000000:C,"was","was",1375.400+1375.550,1.000000:C,"involved","involved",1375.550+1376.140,1.000000
</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-006)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2228" R_T1="1383.775" R_T2="1384.925" word_aux="h_t1+t2,h_conf">
C,"oh","oh",1383.930+1384.130,0.570061:C,"that","that",1384.130+1384.225,0.949357:C,"is","is",1384.225+1384.320,0.949357:C,"important","important",1384.320+1384.730,0.988452
</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-010)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2233" R_T1="1392.200" R_T2="1395.075" word_aux="h_t1+t2,h_conf">
C,"nobody","nobody",1392.270+1392.620,1.000000:C,"knows","knows",1392.620+1392.900,1.000000:C,"who","who",1393.140+1393.295,0.878010:C,"is","is",1393.295+1393.450,0.878010:C,"in","in",1393.740+1394.110,0.999778:S,"delta","but",1394.420+1394.550,0.567862:S,"oil","what",1394.550+1394.900,0.929814
</PATH>
<PATH id="(004-011)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2235" R_T1="1395.950" R_T2="1397.725" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"because","because",1396.120+1396.270,0.325064:S,"unocal","he",1396.270+1396.380,0.313014:C,"is","is",1396.380+1396.490,0.313014:S,"a","accounts",1396.490+1397.000,0.792173:C,"public","public",1397.000+1397.410,0.997455:D,"firm",,,
</PATH>
<PATH id="(004-012)" word_cnt="13" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2237" R_T1="1398.000" R_T2="1400.625" word_aux="h_t1+t2,h_conf">
S,"you","or",1397.410+1397.530,0.503335:S,"can","and",1398.290+1398.380,0.512650:C,"get","get",1398.380+1398.510,0.836217:C,"information","information",1398.510+1399.010,0.976885:D,"but",,,:D,"you",,,:D,"can",,,:D,"not",,,:S,"find","came",1399.130+1399.320,0.977489:S,"anything","finding",1399.320+1399.720,0.649400:S,"about","that",1399.720+1399.900,0.948776:S,"delta","sounds",1399.900+1400.100,0.490556:S,"oil","a",1400.100+1400.160,0.800245
</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-029)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2261" R_T1="1449.000" R_T2="1449.800" word_aux="h_t1+t2,h_conf">
D,"do",,,:S,"you","even",1449.130+1449.430,0.691584:S,"remember","an",1449.430+1449.570,0.382207:S,"that","awesome",1449.570+1450.010,0.408895
</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-037)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2271" R_T1="1468.125" R_T2="1472.175" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"when",,,:D,"i",,,
</PATH>
<PATH id="(004-038)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2274" R_T1="1472.500" R_T2="1473.800" word_aux="h_t1+t2,h_conf">
C,"that","that",1472.670+1472.860,0.987528:D,"is",,,:D,"what",,,:D,"i",,,:D,"am",,,:D,"trying",,,:S,"to","sometimes",1472.860+1473.290,0.754361:C,"say","say",1473.290+1473.770,1.000000
</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-040)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2277" R_T1="1476.425" R_T2="1477.975" word_aux="h_t1+t2,h_conf">
C,"you","you",1476.490+1476.660,0.946492:C,"hear","hear",1476.660+1476.940,0.600879:D,"anything",,,:C,"about","about",1477.120+1477.370,0.531718:C,"(tha-)","",,:D,"any",,,:D,"of",,,:C,"that","that",1477.370+1477.540,0.531296
</PATH>
<PATH id="(004-041)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2279" R_T1="1479.350" R_T2="1479.928" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(004-042)" word_cnt="14" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2280" R_T1="1480.047" R_T2="1482.575" word_aux="h_t1+t2,h_conf">
C,"that","that",1480.250+1480.370,0.979976:C,"is","is",1480.370+1480.490,0.979976:C,"what","what",1480.490+1480.580,0.976489:C,"i","i",1480.580+1480.615,0.938960:C,"am","am",1480.615+1480.650,0.938960:C,"saying","saying",1480.650+1481.030,0.938962:C,"you","you",1481.030+1481.180,0.997573:C,"(thi-)","think",1481.230+1481.360,0.962504:C,"you","you",1481.360+1481.500,0.997474:C,"hear","hear",1481.500+1481.640,0.997008:C,"that","that",1481.680+1481.840,0.964095:D,"on",,,:D,"the",,,:D,"news",,,
</PATH>
<PATH id="(004-043)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2282" R_T1="1482.750" R_T2="1484.675" word_aux="h_t1+t2,h_conf">
D,"are",,,:D,"you",,,:D,"hearing",,,:D,"any",,,:D,"of",,,:D,"this",,,
</PATH>
<PATH id="(004-047)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2290" R_T1="1499.950" R_T2="1500.437" word_aux="h_t1+t2,h_conf">
S,"%bcack","not",1500.625+1500.850,0.663574
</PATH>
<PATH id="(004-050)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2303" R_T1="1523.875" R_T2="1527.397" word_aux="h_t1+t2,h_conf">
D,"there",,,:S,"is","and",1523.910+1524.040,0.568194:S,"one","those",1524.040+1524.240,0.586107:S,"qualification","long",1524.240+1524.620,0.667851:S,"you","patient",1524.690+1525.070,0.577773:C,"should","should",1525.070+1525.250,0.993631:C,"tell","tell",1525.250+1525.540,0.999999:S,"him","them",1525.540+1525.660,0.785232:C,"she","she",1525.840+1526.120,0.826870:D,"is",,,:D,"not",,,:C,"hooked","hooked",1526.320+1526.560,0.801810:C,"up","up",1526.560+1526.650,0.846628:C,"to","to",1526.650+1526.770,0.994893:C,"the","the",1526.770+1526.890,0.854703:C,"internet","internet",1526.890+1527.260,0.850559
</PATH>
<PATH id="(004-052)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2308" R_T1="1534.965" R_T2="1535.163" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(004-053)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2309" R_T1="1536.326" R_T2="1536.762" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(004-058)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2331" R_T1="1569.800" R_T2="1573.625" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",1569.930+1570.240,0.998305:C,"but","but",1570.240+1570.340,0.917012:C,"there","there",1570.340+1570.420,0.944101:C,"is","is",1570.420+1570.500,0.944101:C,"something","something",1570.500+1570.840,1.000000:C,"else","else",1570.840+1571.100,1.000000:S,"i","and",1571.100+1571.220,0.898789:S,"mean","he",1571.220+1571.335,0.884863:S,"you","is",1571.335+1571.450,0.884863:S,"start","not",1571.450+1571.690,0.748582:C,"with","with",1571.690+1571.790,0.993187:D,"a",,,:C,"more","more",1571.920+1572.080,1.000000:C,"sophisticated","sophisticated",1572.080+1572.650,1.000000:C,"skeptical","skeptical",1572.650+1573.140,1.000000:C,"outlook","outlook",1573.140+1573.540,0.736352
</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-066)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2347" R_T1="1596.600" R_T2="1598.825" word_aux="h_t1+t2,h_conf">
S,"the","these",1596.730+1596.900,0.496746:C,"official","official",1596.900+1597.370,0.525596:S,"lines","and",1597.890+1597.990,0.536634:S,"as","is",1597.990+1598.170,0.545903:C,"true","true",1598.170+1598.700,1.000000
</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-071)" word_cnt="35" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2353" R_T1="1615.050" R_T2="1621.450" word_aux="h_t1+t2,h_conf">
C,"that","that",1615.240+1615.405,0.999992:C,"is","is",1615.405+1615.570,0.999992:C,"what","what",1615.570+1615.690,0.999951:C,"i","i",1615.690+1615.770,1.000000:C,"can","can",1615.770+1615.910,0.983160:C,"not","not",1615.910+1616.050,0.983160:C,"understand","understand",1616.050+1616.560,0.999977:C,"and","and",1616.560+1616.650,0.593797:I,,"we",1616.650+1616.720,0.545297:S,"when","need",1616.720+1616.860,0.627420:S,"you","we",1616.860+1616.960,0.974385:S,"when","need",1616.960+1617.100,0.974600:C,"you","you",1617.100+1617.180,0.964859:D,"hear",,,:S,"those","know",1617.180+1617.370,0.964585:C,"people","people",1617.370+1617.650,1.000000:S,"call","cool",1617.650+1617.930,0.999918:C,"when","when",1617.930+1618.050,0.999916:C,"you","you",1618.050+1618.140,0.998108:D,"do",,,:S,"hear","doing",1618.140+1618.520,1.000000:C,"those","those",1618.520+1618.680,1.000000:C,"people","people",1618.680+1618.920,0.997426:S,"call","cool",1618.920+1619.170,0.527078:S,"in","and",1619.170+1619.280,0.905973:C,"sometimes","sometimes",1619.280+1619.760,1.000000:D,"to",,,:D,"some",,,:C,"of","of",1620.050+1620.170,1.000000:C,"these","these",1620.170+1620.340,1.000000:C,"programs","programs",1620.400+1620.850,1.000000:C,"and","and",1620.850+1621.000,0.994488:C,"it","it",1621.000+1621.085,0.994740:C,"is","is",1621.085+1621.170,0.994740:C,"like","like",1621.170+1621.410,0.999682
</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-073)" word_cnt="18" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2356" R_T1="1622.950" R_T2="1628.191" word_aux="h_t1+t2,h_conf">
S,"have","had",1623.130+1623.280,0.558374:C,"accepted","accepted",1623.280+1623.730,0.579369:C,"everything","everything",1623.730+1624.080,0.493108:D,"that",,,:D,"is",,,:D,"been",,,:D,"told",,,:D,"them",,,:D,"you",,,:D,"know",,,:D,"and",,,:D,"you",,,:D,"think",,,:D,"how",,,:D,"can",,,:D,"they",,,:D,"be",,,:D,"that",,,
</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-078)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2365" R_T1="1646.100" R_T2="1647.285" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"mean",,,:D,"when",,,:S,"you","to",1646.600+1646.690,0.988862:S,"were","be",1646.690+1646.900,0.999994:S,"younger","under",1646.900+1647.190,0.999994
</PATH>
<PATH id="(004-080)" word_cnt="10" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2369" R_T1="1653.950" R_T2="1656.439" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",1654.070+1654.400,0.461670:D,"but",,,:C,"i","i",1654.400+1654.500,0.702081:D,"mean",,,:C,"it","it",1654.730+1654.860,0.327328:C,"came","came",1654.860+1655.150,0.929639:C,"in","in",1655.150+1655.260,0.937363:D,"what",,,:D,"one",,,:D,"point",,,
</PATH>
<PATH id="(004-081)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2372" R_T1="1659.000" R_T2="1659.375" word_aux="h_t1+t2,h_conf">
S,"right","in",1657.840+1657.950,0.525946
</PATH>
<PATH id="(004-082)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2375" R_T1="1664.550" R_T2="1666.069" word_aux="h_t1+t2,h_conf">
C,"that","that",1665.110+1665.430,0.907057:S,"did","if",1665.750+1665.860,0.926181:C,"not","not",1668.310+1668.550,0.656270:C,"have","have",1669.190+1669.310,0.999976:D,"the",,,:D,"t.",,,:D,"v.",,,
</PATH>
<PATH id="(004-083)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2377" R_T1="1666.446" R_T2="1667.550" word_aux="h_t1+t2,h_conf">
D,"when",,,:D,"you",,,:D,"were",,,:D,"young",,,
</PATH>
<PATH id="(004-084)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2380" R_T1="1676.325" R_T2="1677.000" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",1676.420+1676.870,0.678715
</PATH>
<PATH id="(004-085)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2387" R_T1="1692.850" R_T2="1693.575" word_aux="h_t1+t2,h_conf">
I,,"he",1692.990+1693.130,0.999847:S,"yeah","had",1693.130+1693.320,0.971189:S,"but","like",1693.320+1693.460,0.807242
</PATH>
<PATH id="(004-086)" word_cnt="19" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2389" R_T1="1694.375" R_T2="1699.775" word_aux="h_t1+t2,h_conf">
D,"t.",,,:D,"v.",,,:D,"has",,,:D,"been",,,:C,"(c-)","",,:D,"i",,,:D,"mean",,,:D,"remember",,,:D,"came",,,:D,"on",,,:D,"and",,,:D,"said",,,:D,"it",,,:S,"was","only",1694.610+1694.870,0.551556:C,"the","the",1698.090+1698.170,1.000000:D,"vast",,,:D,"wasteland",,,:D,"and",,,:D,"then",,,
</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-093)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2401" R_T1="1719.875" R_T2="1721.625" word_aux="h_t1+t2,h_conf">
S,"yeah","place",1717.260+1717.570,0.378827:C,"but","but",1720.130+1720.320,0.697534:D,"now",,,:C,"they","they",1720.320+1720.450,0.868385:C,"still","still",1720.950+1721.400,1.000000
</PATH>
<PATH id="(004-094)" word_cnt="9" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2409" R_T1="1744.150" R_T2="1748.725" word_aux="h_t1+t2,h_conf">
D,"well",,,:D,"that",,,:D,"is",,,:D,"a",,,:S,"kind","but",1743.560+1743.770,0.531098:S,"of","but",1744.320+1744.470,0.325901:S,"an","good",1744.470+1744.610,0.279528:S,"understatement","it",1745.550+1745.710,0.297523:S,"actually","to",1745.940+1746.030,0.695744
</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-097)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2421" R_T1="1776.825" R_T2="1779.950" word_aux="h_t1+t2,h_conf">
C,"i","i",1777.120+1777.410,0.878583:D,"can",,,:S,"not","cancel",1777.970+1778.530,0.799783:S,"follow","actually",1778.990+1779.390,0.782184:S,"that","my",1779.850+1780.000,0.999747
</PATH>
<PATH id="(004-098)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2423" R_T1="1780.181" R_T2="1780.406" word_aux="h_t1+t2,h_conf">
S,"%hesitation","office",1780.080+1780.310,0.999742
</PATH>
<PATH id="(004-099)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2424" R_T1="1780.875" R_T2="1782.725" word_aux="h_t1+t2,h_conf">
C,"i","i",1781.040+1781.280,0.999984:D,"mean",,,:C,"i","i",1781.280+1781.390,0.999991:C,"can","can",1781.390+1781.515,0.997943:C,"not","not",1781.515+1781.640,0.997943:D,"follow",,,:D,"that",,,:S,"from","on",1781.920+1782.030,0.996530
</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-105)" word_cnt="14" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2430" R_T1="1796.750" R_T2="1799.275" word_aux="h_t1+t2,h_conf">
D,"no",,,:S,"event","not",1796.880+1797.040,0.382904:C,"(tha-)","",,:S,"i","even",1797.090+1797.380,0.365603:C,"i","i",1797.380+1797.790,0.999957:C,"mean","mean",1797.790+1798.030,0.998993:D,"the",,,:D,"only",,,:D,"thing",,,:D,"i",,,:S,"could","new",1798.030+1798.220,0.650286:S,"say","ones",1798.220+1798.620,0.803871:S,"is","as",1798.620+1798.800,0.910183:C,"well","well",1798.800+1799.200,1.000000
</PATH>
<PATH id="(004-106)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2432" R_T1="1800.275" R_T2="1801.550" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"i",,,:D,"do",,,:D,"not",,,
</PATH>
<PATH id="(004-107)" word_cnt="14" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2434" R_T1="1803.550" R_T2="1806.275" word_aux="h_t1+t2,h_conf">
D,"oh",,,:D,"yeah",,,:D,"they",,,:D,"say",,,:C,"that","that",1804.350+1804.550,1.000000:C,"that","that",1804.550+1804.650,1.000000:C,"is","is",1804.650+1804.750,1.000000:C,"right","right",1804.750+1804.970,1.000000:D,"that",,,:D,"is",,,:D,"what",,,:D,"they",,,:D,"say",,,:D,"%hesitation",,,
</PATH>
<PATH id="(004-108)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2436" R_T1="1806.675" R_T2="1809.150" word_aux="h_t1+t2,h_conf">
S,"that'","exactly",1805.310+1805.700,0.999968:S,"right","i",1806.580+1806.660,0.932676:S,"that","would",1806.660+1806.810,0.999703:S,"is","i",1806.810+1806.960,1.000000:C,"exactly","exactly",1807.770+1808.290,0.999992:C,"what","what",1808.290+1808.430,0.999991:S,"they","able",1808.530+1808.720,0.995001:S,"say","to",1808.720+1808.780,0.995001
</PATH>
<PATH id="(004-109)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2438" R_T1="1810.000" R_T2="1813.350" word_aux="h_t1+t2,h_conf">
S,"that","i",1808.780+1808.970,0.999970:S,"is","it",1810.000+1810.150,0.612090:C,"right","right",1810.380+1810.710,0.882962:D,"they",,,:D,"start",,,:D,"with",,,:S,"that","out",1813.000+1813.090,0.889265
</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-111)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2442" R_T1="1815.026" R_T2="1815.184" word_aux="h_t1+t2,h_conf">
S,"%hesitation","there",1814.550+1814.890,0.613761
</PATH>
<PATH id="(004-114)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2447" R_T1="1825.720" R_T2="1825.879" word_aux="h_t1+t2,h_conf">
S,"%hesitation","get",1817.560+1817.820,0.929254
</PATH>
<PATH id="(004-116)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2450" R_T1="1828.304" R_T2="1828.602" word_aux="h_t1+t2,h_conf">
S,"(o.","too",1826.190+1826.340,0.317144:S,"k.)","in",1827.820+1827.970,0.997450
</PATH>
<PATH id="(004-117)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2452" R_T1="1830.750" R_T2="1833.100" word_aux="h_t1+t2,h_conf">
C,"this","this",1830.900+1831.200,1.000000:C,"is","is",1831.200+1831.320,0.996561:C,"true","true",1831.320+1831.610,1.000000:C,"though","though",1831.610+1831.870,0.533953:C,"this","this",1832.060+1832.200,0.921364:D,"is",,,:D,"the",,,:D,"line",,,
</PATH>
<PATH id="(004-118)" word_cnt="22" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2454" R_T1="1834.025" R_T2="1838.125" word_aux="h_t1+t2,h_conf">
D,"well",,,:D,"you",,,:D,"what",,,:D,"it",,,:D,"is",,,:D,"it",,,:C,"is","is",1832.200+1832.320,0.918830:S,"a","some",1833.440+1833.700,0.584799:S,"it","time",1833.700+1833.960,0.584799:C,"is","is",1834.590+1834.800,0.379874:S,"a","to",1835.090+1835.170,0.384974:C,"(lo-)","",,:S,"yeah","get",1836.100+1836.290,0.999979:S,"and","out",1836.290+1836.440,0.999979:S,"it","of",1836.440+1836.530,0.999979:S,"is","focus",1836.530+1837.000,0.971827:C,"a","a",1837.000+1837.060,0.965473:C,"(lo-)","lot",1837.060+1837.460,0.872925:D,"it",,,:D,"is",,,:D,"a",,,:D,"logic",,,
</PATH>
<PATH id="(004-119)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2455" R_T1="1838.375" R_T2="1840.525" word_aux="h_t1+t2,h_conf">
S,"that","i",1839.770+1839.930,0.485832:S,"all","am",1839.930+1840.090,0.485832:S,"that","dead",1840.400+1840.780,0.523000:S,"ties","at",1841.040+1841.240,0.995898:S,"in","the",1841.240+1841.330,0.965847
</PATH>
<PATH id="(004-120)" word_cnt="12" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2457" R_T1="1840.975" R_T2="1844.800" word_aux="h_t1+t2,h_conf">
S,"it","time",1841.330+1841.590,0.984237:C,"it","it",1841.690+1841.770,0.410277:D,"ties",,,:D,"in",,,:C,"it","it",1842.010+1842.110,0.999965:C,"is","is",1842.110+1842.210,0.999965:C,"the","the",1842.210+1842.270,1.000000:C,"same","same",1842.270+1842.580,1.000000:C,"kind","kind",1842.580+1843.110,1.000000:C,"of","of",1843.110+1843.250,1.000000:C,"logical","logical",1843.590+1844.150,0.999764:C,"system","system",1844.150+1844.610,0.961395
</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-122)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2460" R_T1="1847.300" R_T2="1850.000" word_aux="h_t1+t2,h_conf">
D,"it",,,:D,"is",,,:D,"a",,,:S,"logic","i",1847.310+1847.520,1.000000:S,"that","do",1847.520+1847.630,0.999965:C,"goes","goes",1848.710+1849.090,0.975727:C,"into","into",1849.290+1849.690,0.997603
</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-124)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2463" R_T1="1852.825" R_T2="1854.900" word_aux="h_t1+t2,h_conf">
S,"religious","not",1852.910+1853.300,0.975049:S,"(fanaticis-)","in",1853.400+1853.490,0.999659:S,"yeah","terms",1853.580+1853.850,0.999659:S,"religious","of",1853.850+1853.910,0.999659:S,"(fana-)","you",1853.910+1854.060,1.000000:I,,"stuff",1854.400+1854.670,0.987908:I,,"that",1854.670+1854.850,0.999573
</PATH>
<PATH id="(004-125)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2465" R_T1="1855.250" R_T2="1856.050" word_aux="h_t1+t2,h_conf">
S,"yeah","know",1854.060+1854.170,1.000000:C,"the","the",1854.280+1854.400,0.999660:S,"(%hesitation)","things",1854.850+1855.090,1.000000
</PATH>
<PATH id="(004-126)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2466" R_T1="1856.550" R_T2="1857.175" word_aux="h_t1+t2,h_conf">
C,"you","you",1856.650+1856.780,0.999977:C,"know","know",1856.780+1856.930,0.999977
</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-131)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2477" R_T1="1874.025" R_T2="1876.625" word_aux="h_t1+t2,h_conf">
D,"yeah",,,:D,"but",,,:D,"%hesitation",,,:C,"(b-)","",,:D,"but",,,:D,"but",,,
</PATH>
<PATH id="(004-132)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2479" R_T1="1877.400" R_T2="1879.075" word_aux="h_t1+t2,h_conf">
D,"yeah",,,:D,"%hesitation",,,:S,"%hesitation","out",1874.280+1874.450,0.926680:S,"but","and",1874.450+1874.540,0.495049
</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-136)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2484" R_T1="1883.275" R_T2="1884.967" word_aux="h_t1+t2,h_conf">
D,"what",,,:D,"the",,,:D,"issues",,,
</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-139)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2489" R_T1="1890.400" R_T2="1892.150" word_aux="h_t1+t2,h_conf">
C,"i","i",1890.570+1890.670,0.997051:C,"mean","mean",1890.670+1890.870,0.997051:D,"in",,,:C,"in","in",1891.320+1891.490,0.996050:C,"other","other",1891.490+1891.680,0.997741:C,"words","words",1891.680+1892.080,0.998117
</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-144)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2495" R_T1="1909.100" R_T2="1911.702" word_aux="h_t1+t2,h_conf">
C,"by","by",1909.170+1909.400,0.995657:C,"people","people",1909.400+1909.730,0.999979:C,"doing","doing",1909.730+1910.110,1.000000:C,"research","research",1910.110+1910.720,1.000000:D,"who",,,:S,"are","where",1910.720+1910.950,0.871766:C,"journalists","journalists",1910.950+1911.700,0.999378
</PATH>
<PATH id="(004-145)" word_cnt="14" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2497" R_T1="1911.975" R_T2="1916.800" word_aux="h_t1+t2,h_conf">
S,"either","their",1912.200+1912.350,0.606184:S,"independent","independence",1912.350+1913.010,0.671503:S,"or","from",1913.010+1913.170,0.741231:C,"not","not",1913.170+1913.400,0.729133:S,"(i-)","at",1913.400+1913.510,0.346784:S,"(%hesitation)","the",1913.510+1913.600,0.346995:C,"(tha-)","that",1913.600+1913.760,0.663598:S,"that","have",1913.760+1913.880,0.662285:S,"is","been",1913.880+1914.120,0.663557:C,"either","either",1914.160+1914.420,0.670271:C,"working","working",1914.660+1915.190,1.000000:C,"for","for",1915.410+1915.900,0.993099:S,"(%hesitation)","for",1916.140+1916.200,0.850343:C,"various","various",1916.200+1916.800,0.950223
</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-148)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2500" R_T1="1920.525" R_T2="1923.125" word_aux="h_t1+t2,h_conf">
S,"or","were",1920.610+1920.830,0.528367:C,"independent","independent",1920.830+1921.330,1.000000:D,"journalists",,,:D,"in",,,:C,"(fa-)","",,:D,"what",,,:D,"a",,,:D,"minute",,,:D,"wait",,,:D,"a",,,:C,"(m-)","",,
</PATH>
<PATH id="(004-149)" word_cnt="10" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2502" R_T1="1923.525" R_T2="1925.125" word_aux="h_t1+t2,h_conf">
S,"but","journalist",1921.330+1921.880,1.000000:S,"but","like",1921.880+1922.070,0.322377:S,"wait","did",1922.070+1922.360,0.559075:S,"a","i",1922.360+1922.480,0.323188:S,"minute","say",1923.360+1923.600,0.999001:S,"they","i",1923.600+1923.890,0.710973:S,"are","there",1924.210+1924.390,0.716992:C,"on","on",1924.390+1924.590,0.994135:C,"the","the",1924.590+1924.700,0.711182:C,"net","net",1924.700+1925.040,0.711182
</PATH>
<PATH id="(004-150)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2504" R_T1="1925.300" R_T2="1925.725" word_aux="h_t1+t2,h_conf">
D,"right",,,
</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-152)" word_cnt="23" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2507" R_T1="1935.475" R_T2="1940.350" word_aux="h_t1+t2,h_conf">
D,"there",,,:D,"are",,,:D,"some",,,:D,"books",,,:S,"there","and",1935.550+1935.700,0.970443:S,"is","so",1935.700+1935.830,0.962467:S,"a","by",1935.830+1936.030,0.999895:S,"book","physical",1936.140+1936.660,1.000000:C,"coming","coming",1936.660+1937.010,1.000000:C,"out","out",1937.010+1937.230,0.504774:S,"a","the",1937.230+1937.290,0.643243:C,"french","french",1937.290+1937.580,1.000000:C,"book","book",1937.580+1937.740,0.968184:S,"some","of",1937.930+1937.990,0.974588:C,"french","french",1937.990+1938.350,1.000000:D,"authors",,,:D,"that",,,:D,"is",,,:C,"the","the",1938.350+1938.480,0.999833:S,"thing","french",1938.480+1938.790,1.000000:S,"i","what",1938.790+1938.990,0.782713:S,"showed","the",1939.210+1939.270,0.906083:S,"you","admission",1939.550+1939.930,0.900933
</PATH>
<PATH id="(004-153)" word_cnt="22" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2510" R_T1="1940.850" R_T2="1946.200" word_aux="h_t1+t2,h_conf">
C,"and","and",1941.010+1941.370,0.999909:C,"and","and",1941.440+1941.620,0.999211:C,"it","it",1941.620+1941.680,0.935570:C,"is","is",1941.680+1941.740,0.935570:C,"also","also",1941.740+1942.300,0.951473:D,"on",,,:C,"yeah","yeah",1942.580+1942.760,0.992029:C,"and","and",1942.760+1942.870,0.827730:C,"it","it",1942.870+1942.945,0.945542:C,"is","is",1942.945+1943.020,0.945542:C,"like","like",1943.020+1943.210,0.999719:C,"in","in",1943.210+1943.280,0.941125:C,"the","the",1943.280+1943.390,0.999906:C,"french","french",1943.390+1943.820,1.000000:C,"news","news",1944.010+1944.350,0.986845:D,"some",,,:S,"of","from",1944.530+1944.710,0.954925:C,"the","the",1944.710+1944.840,0.999774:C,"news","news",1944.840+1945.170,1.000000:D,"broadcasts",,,:C,"if","if",1945.750+1945.900,1.000000:C,"you","you",1945.900+1946.130,1.000000
</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-155)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2512" R_T1="1948.275" R_T2="1951.253" word_aux="h_t1+t2,h_conf">
C,"it","it",1948.330+1948.480,0.841108:C,"is","is",1948.480+1948.630,0.841108:C,"here","here",1948.630+1949.200,1.000000:I,,"so",1949.290+1949.380,1.000000:S,"but","do",1949.430+1949.535,0.996032:S,"(%hesitation)","not",1949.535+1949.640,0.996032:S,"only","think",1949.640+1949.850,0.996032:C,"basically","basically",1949.850+1950.410,1.000000:C,"on","on",1950.410+1950.630,0.999997:C,"the","the",1950.630+1950.720,0.997113:C,"net","net",1950.720+1951.040,0.999183
</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-158)" word_cnt="9" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2517" R_T1="1959.525" R_T2="1961.524" word_aux="h_t1+t2,h_conf">
D,"but",,,:C,"(bu-)","",,:D,"but",,,:D,"wait",,,:C,"(%hesitation)","",,:C,"(%hesitation)","",,:C,"(%hesitation)","",,:D,"%hesitation",,,:D,"%hesitation",,,
</PATH>
<PATH id="(004-159)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2519" R_T1="1962.850" R_T2="1964.950" word_aux="h_t1+t2,h_conf">
D,"wait",,,:D,"no",,,:D,"no",,,:D,"wait",,,:D,"a",,,:D,"minute",,,:C,"so","so",1964.410+1964.840,0.997347
</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-161)" word_cnt="15" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2521" R_T1="1969.025" R_T2="1973.800" word_aux="h_t1+t2,h_conf">
C,"the","the",1969.090+1969.190,0.999895:C,"ones","ones",1969.190+1969.650,0.886805:C,"that","that",1969.650+1969.970,0.888664:C,"give","give",1969.970+1970.240,0.640475:C,"this","this",1970.240+1970.430,0.872802:C,"(informa-)","information",1970.430+1971.050,0.872802:C,"give","give",1971.050+1971.310,0.981945:C,"information","information",1971.310+1972.000,1.000000:C,"to","to",1972.000+1972.110,1.000000:C,"these","these",1972.110+1972.360,1.000000:C,"people","people",1972.360+1972.680,1.000000:D,"we",,,:S,"are","were",1972.680+1972.820,1.000000:S,"taking","talking",1972.820+1973.270,1.000000:C,"about","about",1973.270+1973.630,1.000000
</PATH>
<PATH id="(004-162)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2523" R_T1="1974.650" R_T2="1976.325" word_aux="h_t1+t2,h_conf">
C,"(by)","",,:C,"(who)","",,:D,"think",,,:S,"they","i",1973.900+1973.950,0.552996:S,"are","was",1973.950+1974.070,0.407248:S,"informed","and",1974.160+1974.260,0.559991
</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-178)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2541" R_T1="2018.523" R_T2="2018.986" word_aux="h_t1+t2,h_conf">
D,"all",,,:D,"right",,,
</PATH>
<PATH id="(004-179)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2542" R_T1="2019.416" R_T2="2019.773" word_aux="h_t1+t2,h_conf">
S,"%bcack","i",2019.190+2019.285,0.854495
</PATH>
<PATH id="(004-180)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2543" R_T1="2019.931" R_T2="2020.447" word_aux="h_t1+t2,h_conf">
C,"(%bcack)","",,
</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>
<PATH id="(004-184)" word_cnt="29" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2548" R_T1="2032.100" R_T2="2036.151" word_aux="h_t1+t2,h_conf">
S,"well","why",2032.230+2032.400,0.684984:S,"as","do",2032.400+2032.480,0.702908:C,"you","you",2032.480+2032.560,0.939907:C,"say","say",2032.560+2032.730,0.954218:D,"you",,,:D,"know",,,:C,"when","when",2032.730+2032.860,0.999903:C,"they","they",2032.860+2032.980,0.999998:C,"come","come",2032.980+2033.160,1.000000:C,"up","up",2033.160+2033.300,1.000000:C,"with","with",2033.300+2033.400,0.998702:C,"this","this",2033.400+2033.580,0.994272:C,"is","is",2033.580+2033.670,0.989216:C,"the","the",2033.670+2033.730,1.000000:C,"greatest","greatest",2033.730+2034.040,1.000000:C,"country","country",2034.040+2034.460,1.000000:D,"and",,,:D,"it",,,:C,"is","is",2034.460+2034.550,0.603438:D,"the",,,:C,"most","most",2034.550+2034.780,0.706901:D,"wonderful",,,:D,"country",,,:D,"in",,,:D,"the",,,:S,"world","wanted",2034.780+2034.980,0.618029:C,"and","and",2036.460+2036.600,0.346549:D,"that",,,:D,"stuff",,,
</PATH>
<PATH id="(004-185)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2550" R_T1="2036.997" R_T2="2037.135" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(004-186)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2552" R_T1="2037.777" R_T2="2037.962" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(004-187)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2553" R_T1="2038.025" R_T2="2039.175" word_aux="h_t1+t2,h_conf">
D,"this",,,:D,"is",,,:C,"(%hesitation)","",,:D,"yeah",,,
</PATH>
<PATH id="(004-188)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2554" R_T1="2040.250" R_T2="2043.600" word_aux="h_t1+t2,h_conf">
D,"well",,,:D,"that",,,:S,"other","probably",2037.570+2037.940,0.624957:C,"part","part",2041.360+2041.610,0.995922:C,"is","is",2041.610+2041.730,0.995321:C,"truly","truly",2041.830+2042.160,1.000000:I,,"o.",2042.290+2042.510,0.732739:S,"alienated","k.",2042.510+2042.730,0.732739:S,"for","so",2042.730+2042.820,0.732739:C,"good","good",2042.820+2043.030,0.999312:C,"reasons","reasons",2043.030+2043.610,0.986822
</PATH>
<PATH id="(004-189)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2557" R_T1="2047.450" R_T2="2048.966" word_aux="h_t1+t2,h_conf">
D,"they",,,:D,"think",,,:C,"they","they",2047.660+2047.860,0.996444:D,"are",,,:D,"powerless",,,
</PATH>
<PATH id="(004-190)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2559" R_T1="2051.280" R_T2="2054.475" word_aux="h_t1+t2,h_conf">
D,"that",,,:C,"is","is",2053.545+2053.670,0.800690:S,"right","are",2055.720+2055.750,0.999422
</PATH>
</SPEAKER>
<SPEAKER id="005">
<PATH id="(005-000)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2236" R_T1="1397.650" R_T2="1398.675" word_aux="h_t1+t2,h_conf">
S,"%bcack","lot",1400.160+1400.470,0.841055
</PATH>
<PATH id="(005-008)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2299" R_T1="1517.725" R_T2="1520.100" word_aux="h_t1+t2,h_conf">
S,"oh","all",1518.070+1518.220,0.476074:C,"you","you",1518.220+1518.350,0.690899:C,"have","have",1518.350+1518.520,0.990492:D,"to",,,:S,"read","three",1518.520+1518.810,0.989018:S,"foreign","five",1518.810+1519.070,1.000000:C,"newspapers","newspapers",1519.070+1519.840,1.000000
</PATH>
<PATH id="(005-009)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2300" R_T1="1520.250" R_T2="1522.050" word_aux="h_t1+t2,h_conf">
C,"from","from",1520.590+1520.810,0.981739:C,"various","various",1520.810+1521.180,1.000000:C,"places","places",1521.180+1521.700,1.000000
</PATH>
<PATH id="(005-010)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2302" R_T1="1522.325" R_T2="1525.025" word_aux="h_t1+t2,h_conf">
C,"around","around",1522.590+1522.870,1.000000:C,"five","five",1522.870+1523.300,1.000000:D,"you",,,:S,"know","that",1526.120+1526.320,0.377706
</PATH>
<PATH id="(005-012)" word_cnt="18" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2307" R_T1="1532.377" R_T2="1536.350" word_aux="h_t1+t2,h_conf">
C,"i","i",1532.620+1532.790,1.000000:C,"do","do",1532.790+1532.870,1.000000:C,"not","not",1532.870+1532.950,1.000000:C,"have","have",1532.950+1533.070,0.600838:S,"any","i",1533.070+1533.290,0.996457:C,"i","i",1533.290+1533.450,1.000000:C,"have","have",1533.450+1533.600,0.977651:C,"a","a",1533.600+1533.690,0.977651:C,"i","i",1533.780+1533.880,0.950822:C,"have","have",1533.880+1534.010,0.950822:C,"a","a",1534.010+1534.060,0.953993:C,"walk","walk",1534.060+1534.330,1.000000:C,"around","around",1534.330+1534.580,1.000000:C,"telephone","telephone",1534.580+1535.090,1.000000:C,"that","that",1535.090+1535.200,1.000000:C,"is","is",1535.200+1535.310,1.000000:C,"about","about",1535.310+1535.640,1.000000:C,"as","as",1535.640+1535.860,0.990325
</PATH>
<PATH id="(005-013)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2310" R_T1="1536.931" R_T2="1538.200" word_aux="h_t1+t2,h_conf">
C,"modern","modern",1537.010+1537.420,0.939786:C,"as","as",1537.420+1537.550,0.923084:C,"i","i",1537.550+1537.740,0.999859:C,"get","get",1537.740+1538.020,0.881555
</PATH>
<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-018)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2319" R_T1="1550.675" R_T2="1554.178" word_aux="h_t1+t2,h_conf">
C,"listen","listen",1550.830+1551.100,0.970979:C,"to","to",1551.100+1551.200,0.999609:C,"the","the",1551.200+1551.290,0.999999:C,"news","news",1551.290+1551.720,0.997237:I,,"the",1551.820+1551.910,0.484636:C,"other","other",1551.910+1552.080,0.598360:C,"news","news",1552.080+1552.460,0.596708:C,"you","you",1552.620+1552.690,0.529558:D,"have",,,:D,"to",,,:C,"listen","listen",1552.690+1552.890,0.721789:C,"to","to",1552.890+1552.950,0.721496:D,"the",,,:D,"short",,,:S,"wave","shortwave",1552.950+1553.410,0.844493:C,"radio","radio",1553.410+1554.110,1.000000
</PATH>
<PATH id="(005-019)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2321" R_T1="1554.525" R_T2="1555.725" word_aux="h_t1+t2,h_conf">
S,"yeah","and",1554.780+1554.900,0.979917:C,"that","that",1554.900+1554.995,0.850167:C,"is","is",1554.995+1555.090,0.850167:C,"how","how",1555.090+1555.240,0.878790:C,"you","you",1555.240+1555.540,0.999591
</PATH>
<PATH id="(005-023)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2332" R_T1="1570.284" R_T2="1570.560" word_aux="h_t1+t2,h_conf">
S,"yeah","the",1571.790+1571.920,0.635802
</PATH>
<PATH id="(005-029)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2360" R_T1="1634.513" R_T2="1637.475" word_aux="h_t1+t2,h_conf">
S,"that","and",1634.820+1635.020,0.847099:C,"flat","flat",1635.020+1635.490,0.946443:D,"medium",,,:S,"called","media",1635.490+1636.050,0.529962:S,"television","mission",1636.900+1637.420,0.818181
</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-031)" word_cnt="3" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2364" R_T1="1645.816" R_T2="1646.822" word_aux="h_t1+t2,h_conf">
C,"do","do",1645.850+1646.000,0.999990:C,"you","you",1646.000+1646.070,0.999991:C,"remember","remember",1646.120+1646.600,0.987118
</PATH>
<PATH id="(005-032)" word_cnt="20" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2366" R_T1="1648.544" R_T2="1652.486" word_aux="h_t1+t2,h_conf">
S,"raised","right",1648.670+1649.080,1.000000:C,"that","that",1649.230+1649.365,0.984411:C,"is","is",1649.365+1649.500,0.984411:D,"one",,,:D,"when",,,:S,"you","what",1649.500+1649.670,0.968573:S,"are","your",1649.670+1649.800,0.958816:C,"little","little",1649.800+1650.120,0.975464:D,"and",,,:D,"you",,,:C,"(n-)","",,:C,"you","you",1650.310+1650.480,0.999916:C,"know","know",1650.480+1650.590,0.999879:C,"you","you",1650.590+1650.670,0.999541:C,"get","get",1650.670+1650.820,0.999283:C,"older","older",1650.820+1651.290,0.999283:C,"that","that",1651.290+1651.410,0.982428:C,"is","is",1651.410+1651.530,0.982428:S,"called","all",1651.530+1651.780,0.976367:S,"raised","right",1651.780+1652.210,0.979014
</PATH>
<PATH id="(005-033)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2368" R_T1="1652.716" R_T2="1654.929" word_aux="h_t1+t2,h_conf">
S,"but","with",1652.810+1652.995,0.833290:S,"now","out",1652.995+1653.180,0.833290:C,"television","television",1653.180+1653.920,0.957192:C,"(televis-)","",,
</PATH>
<PATH id="(005-034)" word_cnt="2" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2370" R_T1="1655.567" R_T2="1656.825" word_aux="h_t1+t2,h_conf">
C,"nineteen","nineteen",1655.660+1656.180,1.000000:C,"fifty","fifty",1656.180+1656.660,0.976308
</PATH>
<PATH id="(005-035)" word_cnt="10" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2371" R_T1="1656.973" R_T2="1660.815" word_aux="h_t1+t2,h_conf">
C,"television","television",1657.050+1657.600,0.999964:C,"came","came",1657.600+1657.840,0.999326:S,"into","to",1657.950+1658.020,0.517285:C,"the","the",1658.020+1658.180,0.999338:C,"average","average",1658.180+1658.580,1.000000:C,"household","household",1658.580+1659.150,1.000000:C,"nineteen","nineteen",1659.420+1659.890,1.000000:C,"fifty","fifty",1659.890+1660.290,0.998107:C,"or","or",1660.290+1660.390,0.994471:C,"so","so",1660.390+1660.780,1.000000
</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-037)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2374" R_T1="1664.019" R_T2="1665.000" word_aux="h_t1+t2,h_conf">
C,"at","at",1664.140+1664.250,0.997320:C,"that","that",1664.250+1664.480,1.000000:C,"point","point",1664.480+1664.960,0.998475:I,,"is",1664.960+1665.110,0.842367
</PATH>
<PATH id="(005-038)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2376" R_T1="1665.786" R_T2="1667.392" word_aux="h_t1+t2,h_conf">
S,"that","they",1665.860+1666.050,0.687074:C,"did","did",1666.050+1666.220,0.993410:C,"not","not",1666.220+1666.670,1.000000:S,"have","like",1666.670+1666.790,0.999981:S,"t.","a",1666.790+1666.850,0.504383:S,"v.","young",1666.850+1667.370,0.587033
</PATH>
<PATH id="(005-039)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2378" R_T1="1667.469" R_T2="1671.400" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",1667.540+1667.710,0.972197:D,"when",,,:S,"i","well",1667.710+1668.000,0.971478:S,"was","we",1668.000+1668.090,0.405870:S,"young","should",1668.090+1668.310,0.621015:C,"right","right",1668.550+1668.870,0.991012:C,"and","and",1668.870+1669.040,0.996169:C,"we","we",1669.040+1669.190,1.000000:D,"and",,,:C,"not","not",1669.310+1669.610,0.996464:C,"every","every",1669.610+1669.790,1.000000:C,"household","household",1669.790+1670.230,0.623407:S,"had","a",1670.230+1670.300,0.285141:C,"t.","t.",1670.300+1670.550,0.945248:C,"v.","v.",1670.550+1670.760,0.945232:C,"anyway","anyway",1670.830+1671.240,1.000000
</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-041)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2381" R_T1="1676.766" R_T2="1679.625" word_aux="h_t1+t2,h_conf">
C,"so","so",1676.870+1677.200,0.999249:C,"that","that",1677.200+1677.520,0.645422:I,,"and",1677.670+1677.960,0.614236:S,"had","he",1677.960+1678.100,0.359629:S,"became","came",1678.100+1678.480,0.678504:C,"the","the",1678.480+1678.600,0.596740:C,"third","third",1678.660+1678.940,0.999741:S,"parent","paragraph",1678.940+1679.430,0.779108
</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-046)" word_cnt="9" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2386" R_T1="1690.636" R_T2="1692.975" word_aux="h_t1+t2,h_conf">
D,"the",,,:S,"third","o.",1690.990+1691.255,0.976618:S,"parent","k.",1691.255+1691.520,0.976618:C,"i","i",1691.870+1691.970,1.000000:C,"think","think",1691.970+1692.150,1.000000:C,"that","that",1692.150+1692.280,0.999973:C,"is","is",1692.280+1692.410,0.999973:C,"the","the",1692.410+1692.480,0.999957:C,"one","one",1692.480+1692.690,0.999989
</PATH>
<PATH id="(005-047)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2388" R_T1="1693.901" R_T2="1697.675" word_aux="h_t1+t2,h_conf">
C,"so","so",1693.990+1694.230,1.000000:C,"they","they",1694.230+1694.480,0.957590:S,"believe","have",1694.920+1695.110,0.327007:S,"that","any",1695.260+1695.490,0.674000:S,"that","validation",1695.490+1696.270,0.671088:C,"television","television",1696.270+1696.740,0.675736:S,"tells","o.",1696.740+1696.985,0.950593:S,"you","k.",1696.985+1697.230,0.950593:S,"what","this",1697.590+1697.690,1.000000:C,"is","is",1697.870+1697.990,1.000000:S,"so","best",1698.170+1698.510,1.000000
</PATH>
<PATH id="(005-048)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2390" R_T1="1699.219" R_T2="1699.900" word_aux="h_t1+t2,h_conf">
S,"%bcack","way",1698.510+1698.700,0.982266
</PATH>
<PATH id="(005-051)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2400" R_T1="1716.884" R_T2="1720.272" word_aux="h_t1+t2,h_conf">
C,"that","that",1716.920+1717.055,0.998964:C,"is","is",1717.055+1717.190,0.998964:S,"before","four",1717.570+1717.780,0.500781:C,"people","people",1717.780+1718.090,1.000000:C,"develop","develop",1718.090+1718.480,0.993405:S,"their","the",1718.480+1718.620,0.757784:C,"cognitive","cognitive",1718.620+1719.100,0.885752:C,"skills","skills",1719.210+1719.610,0.885752:S,"and","will",1720.040+1720.130,0.458492:D,"all",,,:S,"that","they",1720.720+1720.950,1.000000
</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-058)" word_cnt="14" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2408" R_T1="1740.796" R_T2="1745.253" word_aux="h_t1+t2,h_conf">
S,"and","in",1740.820+1740.950,0.783431:C,"that","that",1740.950+1741.090,0.952499:C,"the","the",1741.090+1741.180,0.999993:C,"government","government",1741.180+1741.800,1.000000:C,"our","our",1741.990+1742.140,1.000000:C,"government","government",1742.140+1742.740,0.993077:C,"does","does",1742.740+1742.950,0.986533:C,"not","not",1743.100+1743.210,0.978375:C,"have","have",1743.210+1743.370,0.978373:C,"our","our",1743.370+1743.560,0.356786:S,"best","go",1746.030+1746.190,0.816529:S,"interest","to",1746.190+1746.390,0.862225:S,"at","this",1746.390+1746.600,0.726999:S,"heart","that",1746.600+1746.740,0.738793
</PATH>
<PATH id="(005-059)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2410" R_T1="1746.597" R_T2="1750.408" word_aux="h_t1+t2,h_conf">
C,"if","if",1746.740+1746.890,0.739801:C,"we","we",1746.890+1747.100,0.735324:D,"start",,,:S,"beginning","started",1747.200+1747.570,0.735324:S,"to","into",1747.870+1748.170,0.740997:S,"think","thinking",1748.170+1748.530,0.532991:C,"about","about",1748.530+1748.830,1.000000:C,"those","those",1748.830+1749.020,0.999944:C,"kinds","kinds",1749.140+1749.590,1.000000:C,"of","of",1749.590+1749.700,1.000000:C,"things","things",1750.010+1750.280,1.000000
</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-068)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2422" R_T1="1778.885" R_T2="1781.221" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"is",,,:C,"(becau-)","",,:C,"(%hesitation)","",,:D,"well",,,:C,"(d-)","",,:S,"never","the",1782.030+1782.100,0.714743:S,"mind","crew",1782.180+1782.420,0.716112
</PATH>
<PATH id="(005-069)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2431" R_T1="1799.032" R_T2="1800.750" word_aux="h_t1+t2,h_conf">
C,"well","well",1799.450+1799.760,0.999700:D,"look",,,:S,"at","it",1799.760+1799.930,0.885328:C,"this","this",1799.930+1800.110,0.876121
</PATH>
<PATH id="(005-070)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2433" R_T1="1800.984" R_T2="1804.726" word_aux="h_t1+t2,h_conf">
D,"look",,,:D,"at",,,:C,"this","this",1801.400+1801.590,1.000000:C,"is","is",1801.590+1801.670,0.999986:D,"not",,,:C,"america","america",1801.880+1802.420,1.000000:C,"the","the",1802.420+1802.530,1.000000:C,"best","best",1802.530+1802.850,1.000000:C,"place","place",1802.850+1803.190,1.000000:C,"in","in",1803.190+1803.250,1.000000:C,"the","the",1803.720+1803.810,1.000000:C,"world","world",1803.810+1803.970,1.000000:C,"are","are",1805.750+1805.950,1.000000:D,"not",,,:D,"we",,,:C,"(won-)","wonderful",1805.950+1806.580,1.000000
</PATH>
<PATH id="(005-071)" word_cnt="13" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2435" R_T1="1804.772" R_T2="1808.936" word_aux="h_t1+t2,h_conf">
S,"see","recommend",1807.230+1807.660,1.000000:S,"and","him",1807.660+1807.770,0.438753:S,"we","you",1808.430+1808.480,0.901251:C,"are","are",1808.480+1808.530,0.901251:S,"wonderful","i",1808.970+1809.130,1.000000:S,"and","knew",1809.130+1809.390,1.000000:C,"we","we",1809.390+1809.460,0.933987:D,"are",,,:D,"americans",,,:D,"are",,,:D,"the",,,:D,"best",,,:D,"people",,,
</PATH>
<PATH id="(005-072)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2437" R_T1="1808.936" R_T2="1810.704" word_aux="h_t1+t2,h_conf">
D,"and",,,:D,"you",,,:C,"know","know",1809.460+1809.750,0.999943:C,"when","when",1809.750+1810.000,0.999705:S,"the","comes",1810.150+1810.380,0.586452:D,"american",,,
</PATH>
<PATH id="(005-073)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2439" R_T1="1810.757" R_T2="1813.654" word_aux="h_t1+t2,h_conf">
D,"when",,,:S,"the","base",1810.710+1811.025,0.886799:S,"american","line",1811.025+1811.340,0.886799:S,"army","and",1811.340+1811.630,1.000000:C,"takes","takes",1812.590+1813.000,1.000000:C,"over","over",1813.170+1813.590,1.000000
</PATH>
<PATH id="(005-074)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2441" R_T1="1814.469" R_T2="1816.559" word_aux="h_t1+t2,h_conf">
D,"they",,,:D,"re",,,:C,"(ha-)","",,:S,"the","that",1815.300+1815.490,0.914126:C,"people","people",1815.490+1815.840,1.000000:C,"are","are",1815.840+1815.980,0.993438:C,"happy","happy",1815.980+1816.490,1.000000
</PATH>
<PATH id="(005-075)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2443" R_T1="1816.751" R_T2="1819.279" word_aux="h_t1+t2,h_conf">
C,"because","because",1816.880+1817.350,0.999999:C,"they","they",1817.350+1817.560,0.999945:S,"give","can",1817.820+1818.190,0.997229:S,"candy","you",1818.190+1818.300,0.999985:S,"to","get",1818.300+1818.490,0.997016:C,"the","the",1818.490+1818.570,0.997214:C,"children","children",1818.570+1819.100,0.999954
</PATH>
<PATH id="(005-076)" word_cnt="21" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2445" R_T1="1819.440" R_T2="1825.856" word_aux="h_t1+t2,h_conf">
C,"and","and",1819.510+1819.910,1.000000:C,"they","they",1819.910+1820.130,1.000000:C,"take","take",1820.130+1820.420,1.000000:C,"care","care",1820.420+1820.710,1.000000:C,"of","of",1820.710+1820.770,1.000000:S,"(%hesitation)","and",1820.770+1820.900,0.979054:C,"there","there",1820.900+1821.130,0.915016:C,"has","has",1821.130+1821.350,1.000000:C,"not","not",1821.350+1821.570,1.000000:C,"been","been",1821.570+1821.760,1.000000:C,"an","an",1821.760+1821.870,1.000000:C,"army","army",1821.940+1822.260,1.000000:C,"officer","officer",1822.260+1822.820,1.000000:S,"that","this",1822.820+1823.000,1.000000:S,"has","is",1823.000+1823.190,1.000000:C,"done","done",1823.190+1823.420,1.000000:S,"anything","and",1824.130+1824.370,0.790089:C,"that","that",1824.370+1824.520,0.995205:C,"has","has",1824.520+1824.690,0.999984:C,"been","been",1824.740+1825.020,1.000000:C,"nasty","nasty",1825.020+1825.750,0.630903
</PATH>
<PATH id="(005-077)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2448" R_T1="1825.856" R_T2="1828.484" word_aux="h_t1+t2,h_conf">
C,"to","to",1825.970+1826.190,0.390578:S,"the","that",1826.340+1826.570,0.979093:C,"people","people",1826.570+1826.930,1.000000:C,"that","that",1826.930+1827.140,1.000000:C,"they","they",1827.140+1827.530,1.000000:C,"have","have",1827.690+1827.820,1.000000:S,"invade","date",1827.970+1828.380,0.929340
</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-079)" word_cnt="10" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2453" R_T1="1832.349" R_T2="1836.060" word_aux="h_t1+t2,h_conf">
C,"so","so",1832.470+1832.660,0.982214:D,"now",,,:S,"you","nice",1832.660+1833.090,0.750845:C,"that","that",1833.090+1833.440,0.486277:D,"is",,,:D,"the",,,:D,"line",,,:D,"this",,,:D,"patriotism",,,:S,"line","too",1837.460+1837.570,0.847151
</PATH>
<PATH id="(005-080)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2456" R_T1="1838.381" R_T2="1841.070" word_aux="h_t1+t2,h_conf">
D,"and",,,:D,"you",,,:D,"have",,,:S,"to","i",1838.490+1838.600,0.979000:C,"think","think",1839.290+1839.720,0.745136:D,"world",,,:D,"wide",,,:S,"then","says",1841.770+1841.930,0.531284
</PATH>
<PATH id="(005-081)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2459" R_T1="1847.033" R_T2="1848.354" word_aux="h_t1+t2,h_conf">
S,"yeah","not",1847.630+1847.740,0.999965:S,"sure","want",1847.740+1848.040,0.994456:S,"it","to",1848.040+1848.120,0.841374:S,"is","extract",1848.160+1848.710,0.454211
</PATH>
<PATH id="(005-082)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2462" R_T1="1852.819" R_T2="1853.433" word_aux="h_t1+t2,h_conf">
S,"god","off",1855.090+1855.350,0.999843
</PATH>
<PATH id="(005-083)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2464" R_T1="1854.455" R_T2="1856.545" word_aux="h_t1+t2,h_conf">
S,"accepting","you",1855.350+1855.500,0.635558:S,"(go-)","know",1855.500+1855.650,0.379024:S,"right","the",1855.650+1855.760,0.999796:C,"same","same",1855.760+1856.000,0.999760:C,"idea","idea",1856.000+1856.460,0.999760
</PATH>
<PATH id="(005-084)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2467" R_T1="1856.615" R_T2="1861.050" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"accept",,,:S,"god","that",1857.020+1857.250,1.000000:C,"and","and",1857.850+1858.050,1.000000:C,"the","the",1858.050+1858.180,0.792639:C,"government","government",1858.230+1858.640,1.000000:C,"and","and",1858.640+1858.790,0.988550:C,"even","even",1858.790+1859.040,0.985405:C,"in","in",1859.040+1859.180,0.998646:C,"god","god",1859.180+1859.460,1.000000:C,"we","we",1859.460+1859.590,1.000000:C,"trust","trust",1859.590+1859.900,1.000000:S,"(is)","the",1859.900+1860.090,1.000000:S,"on","arm",1860.090+1860.300,0.543947:C,"our","our",1860.300+1860.470,0.730797:C,"money","money",1860.470+1860.850,0.994101
</PATH>
<PATH id="(005-085)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2468" R_T1="1861.356" R_T2="1863.300" word_aux="h_t1+t2,h_conf">
C,"you","you",1861.410+1861.520,0.910118:I,,"have",1861.520+1861.610,0.969124:I,,"to",1861.610+1861.700,0.835591:S,"accept","have",1861.700+1861.970,0.748742:S,"all","a",1861.970+1862.020,0.485390:S,"of","law",1862.020+1862.330,0.655297:C,"that","that",1862.330+1862.720,0.999905:S,"see","say",1862.860+1863.170,0.991251
</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-088)" word_cnt="13" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2476" R_T1="1872.804" R_T2="1876.131" word_aux="h_t1+t2,h_conf">
D,"five",,,:D,"per",,,:S,"cent","that",1873.410+1873.740,0.939326:S,"are","part",1873.740+1873.930,0.521712:C,"going","going",1873.930+1874.280,0.999997:S,"to","put",1874.540+1874.650,0.500072:S,"accept","that",1874.650+1874.810,0.967360:C,"no","no",1874.810+1874.910,0.999792:C,"matter","matter",1874.910+1875.210,1.000000:C,"what","what",1875.210+1875.420,1.000000:C,"you","you",1875.420+1875.570,0.997455:S,"tell","can",1875.570+1875.840,0.834743:S,"them","not",1875.840+1876.110,0.834743
</PATH>
<PATH id="(005-089)" word_cnt="11" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2478" R_T1="1876.270" R_T2="1879.028" word_aux="h_t1+t2,h_conf">
S,"they","we",1876.300+1876.480,0.431266:S,"just","did",1876.480+1876.730,0.879591:C,"take","take",1876.730+1877.000,0.999945:C,"it","it",1877.000+1877.080,0.999887:C,"right","right",1877.080+1877.350,0.997582:D,"in",,,:C,"and","and",1877.970+1878.080,1.000000:D,"spit",,,:D,"it",,,:C,"right","right",1878.210+1878.590,0.981138:S,"out","now",1878.590+1878.820,0.537429
</PATH>
<PATH id="(005-090)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2483" R_T1="1883.047" R_T2="1885.191" word_aux="h_t1+t2,h_conf">
S,"the","then",1883.270+1883.470,0.943703:S,"media","i",1883.630+1883.730,0.993965:S,"capitalizes","am",1883.890+1884.430,0.956550:S,"on","to",1884.430+1884.530,0.615542:S,"that","some",1884.620+1884.850,0.787890
</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-092)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2488" R_T1="1889.302" R_T2="1890.500" word_aux="h_t1+t2,h_conf">
C,"oh","oh",1889.370+1889.540,1.000000:C,"yeah","yeah",1889.540+1889.710,1.000000:C,"that","that",1889.710+1889.820,1.000000:C,"is","is",1889.820+1889.930,1.000000:C,"true","true",1889.930+1890.110,0.999219:S,"too","if",1890.870+1891.000,0.245460
</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-094)" word_cnt="7" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2501" R_T1="1921.804" R_T2="1924.348" word_aux="h_t1+t2,h_conf">
S,"but","i",1922.480+1922.510,0.995823:S,"you","did",1922.510+1922.670,0.700752:S,"have","way",1922.730+1922.990,0.570969:C,"to","to",1922.990+1923.110,0.570969:D,"be",,,:D,"interested",,,:D,"h.",,,
</PATH>
<PATH id="(005-095)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2503" R_T1="1925.101" R_T2="1925.516" word_aux="h_t1+t2,h_conf">
C,"right","right",1925.150+1925.780,1.000000
</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-097)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2508" R_T1="1935.475" R_T2="1936.165" word_aux="h_t1+t2,h_conf">
D,"but",,,
</PATH>
<PATH id="(005-098)" word_cnt="4" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2509" R_T1="1939.646" R_T2="1940.925" word_aux="h_t1+t2,h_conf">
D,"you",,,:D,"are",,,:S,"right","broadcast",1945.170+1945.690,0.908396:S,"right","it",1945.690+1945.750,0.503745
</PATH>
<PATH id="(005-099)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2516" R_T1="1958.618" R_T2="1960.623" word_aux="h_t1+t2,h_conf">
D,"but",,,:D,"what",,,:D,"gives",,,:D,"you",,,:D,"that",,,:S,"idea","well",1958.790+1958.930,0.534290
</PATH>
<PATH id="(005-100)" word_cnt="13" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2518" R_T1="1960.623" R_T2="1963.520" word_aux="h_t1+t2,h_conf">
S,"what","why",1958.930+1959.070,0.591941:S,"even","i",1959.920+1960.170,0.857866:S,"gives","believe",1960.170+1960.450,0.574828:C,"that","that",1961.140+1961.340,0.593641:D,"idea",,,:D,"to",,,:S,"even","i",1961.340+1961.480,0.989342:S,"look","them",1961.940+1962.060,0.480692:C,"in","in",1962.590+1962.720,0.761999:D,"the",,,:S,"net","and",1962.720+1962.850,0.597507:S,"for","is",1963.870+1963.940,0.403300:S,"that","it",1963.990+1964.320,0.748123
</PATH>
<PATH id="(005-101)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2522" R_T1="1973.447" R_T2="1975.325" word_aux="h_t1+t2,h_conf">
C,"right","right",1973.630+1973.900,0.401744:S,"who","therefore",1974.260+1974.890,0.919108:S,"think","rises",1974.890+1975.270,0.759701:S,"they","that",1975.270+1975.490,0.772215:C,"are","are",1975.490+1975.630,0.411869:S,"informed","important",1975.630+1976.240,0.937891
</PATH>
<PATH id="(005-102)" word_cnt="1" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2524" R_T1="1976.114" R_T2="1976.644" word_aux="h_t1+t2,h_conf">
S,"right","or",1976.240+1976.360,0.375910
</PATH>
<PATH id="(005-103)" word_cnt="15" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2540" R_T1="2018.444" R_T2="2021.740" word_aux="h_t1+t2,h_conf">
S,"but","well",2018.510+2018.650,0.906157:C,"why","why",2018.650+2019.120,0.784968:S,"is","am",2019.285+2019.380,0.854495:S,"the","at",2019.380+2019.510,0.905801:C,"(ma-)","",,:S,"but","my",2019.510+2019.700,0.991506:C,"(b-)","byline",2019.700+2020.310,0.991541:D,"why",,,:S,"does","on",2020.310+2020.450,0.738553:S,"not","some",2020.450+2020.620,0.785827:S,"the","a",2020.620+2020.670,0.617569:C,"man","man",2020.670+2020.970,0.999833:C,"on","on",2020.970+2021.110,0.999846:C,"the","the",2021.110+2021.200,0.999846:C,"street","street",2021.200+2021.680,0.999972
</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-105)" word_cnt="8" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2549" R_T1="2035.356" R_T2="2037.546" word_aux="h_t1+t2,h_conf">
D,"fifty",,,:D,"two",,,:D,"per",,,:D,"cent",,,:D,"of",,,:C,"the","the",2036.600+2036.670,0.429578:C,"people","people",2036.670+2037.130,0.606048:S,"vote","will",2037.440+2037.570,0.372619
</PATH>
<PATH id="(005-106)" word_cnt="13" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2551" R_T1="2037.546" R_T2="2040.550" word_aux="h_t1+t2,h_conf">
D,"only",,,:D,"fifty",,,:C,"(what)","",,:C,"(is)","",,:C,"(it)","",,:S,"fifty","does",2038.360+2038.470,0.856780:S,"two","not",2038.470+2038.580,0.856780:S,"or","work",2039.150+2039.370,0.995717:C,"forty","forty",2039.370+2039.610,0.495059:D,"eight",,,:C,"or","or",2039.920+2040.020,0.870779:C,"what","what",2040.020+2040.250,1.000000:C,"ever","ever",2040.250+2040.480,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>
<PATH id="(005-108)" word_cnt="5" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2556" R_T1="2047.412" R_T2="2048.800" word_aux="h_t1+t2,h_conf">
C,"what","what",2047.470+2047.660,0.941350:D,"is",,,:S,"the","take",2047.860+2048.100,0.879515:S,"good","all",2048.410+2048.580,0.827660:S,"reason","this",2048.580+2048.800,0.827660
</PATH>
<PATH id="(005-109)" word_cnt="6" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2558" R_T1="2050.340" R_T2="2052.115" word_aux="h_t1+t2,h_conf">
C,"well","well",2050.450+2050.610,1.000000:C,"they","they",2050.610+2050.710,0.999314:D,"are",,,:D,"powerless",,,:D,"if",,,:C,"(th-)","",,
</PATH>
<PATH id="(005-110)" word_cnt="16" labels="<O,FEMALE,L2>" file="LDC_20011207-1800_D_NONE" channel="1" sequence="2560" R_T1="2052.230" R_T2="2057.200" word_aux="h_t1+t2,h_conf">
D,"but",,,:C,"they","they",2052.730+2052.900,0.999066:C,"are","are",2052.970+2053.220,0.999795:C,"but","but",2053.220+2053.340,1.000000:D,"they",,,:S,"are","there",2053.420+2053.545,0.800690:C,"but","but",2053.780+2053.900,0.999997:D,"they",,,:S,"are","i",2053.900+2053.930,0.560861:S,"powerless","think",2053.930+2054.120,0.560861:C,"if","if",2055.250+2055.360,1.000000:C,"they","they",2055.400+2055.510,1.000000:S,"allow","allowed",2055.750+2056.120,0.749242:C,"this","this",2056.120+2056.240,0.430642:D,"to",,,:S,"be","today",2056.410+2056.720,0.739161
</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-006)" word_cnt="9" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2574" R_T1="21.100" R_T2="24.425" word_aux="h_t1+t2,h_conf">
C,"and","and",21.171+21.751,1.000000:C,"(%hesitation)","",,:S,"today","to",22.051+22.191,0.993995:S,"i","the",22.191+22.251,0.982848:S,"just","edge",22.251+22.561,0.986678:C,"actually","actually",22.790+23.340,1.000000:C,"i","i",23.810+23.910,0.993050:C,"got","got",23.910+24.190,0.995358:C,"it","it",24.190+24.380,0.996526
</PATH>
<PATH id="(032-008)" word_cnt="5" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2580" R_T1="29.700" R_T2="32.050" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"of","of",30.671+31.071,1.000000:C,"of","of",31.161+31.371,1.000000:C,"the","the",31.431+31.751,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(032-009)" word_cnt="19" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2582" R_T1="32.150" R_T2="35.700" word_aux="h_t1+t2,h_conf">
C,"the","the",32.221+32.441,1.000000:C,"the","the",32.441+32.521,1.000000:I,,"class",32.521+32.891,1.000000:I,,"plus",32.891+33.211,0.999938:S,"glass","do",33.211+33.321,1.000000:S,"box","you",33.321+33.401,1.000000:S,"data","know",33.401+33.491,1.000000:C,"what","what",33.491+33.661,1.000000:C,"i","i",33.661+33.706,0.861359:C,"am","am",33.706+33.751,0.861359:S,"going","what",33.751+33.871,0.917363:S,"to","i",33.871+33.951,0.652351:C,"do","do",33.951+34.221,0.734988:C,"now","now",34.221+34.691,1.000000:C,"is","is",34.691+35.071,0.999799:C,"i","i",35.071+35.136,0.999799:C,"am","am",35.136+35.201,0.999799:C,"going","going",35.201+35.391,1.000000:C,"to","to",35.501+35.571,1.000000
</PATH>
<PATH id="(032-010)" word_cnt="8" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2584" R_T1="35.700" R_T2="38.975" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:S,"try","trying",36.461+36.801,0.966591:S,"and","to",36.801+36.861,0.996491:C,"interface","interface",36.861+37.421,1.000000:C,"that","that",37.421+37.671,0.990955:S,"with","would",37.671+37.891,0.971169:S,"the","be",38.131+38.431,0.960725: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-012)" word_cnt="16" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2586" R_T1="42.350" R_T2="46.725" word_aux="h_t1+t2,h_conf">
C,"read","read",42.511+42.771,1.000000:C,"stuff","stuff",42.771+43.081,1.000000:C,"into","into",43.081+43.401,1.000000:C,"like","like",43.401+43.591,1.000000:C,"a","a",43.591+43.631,0.999999:C,"text","text",43.631+43.991,1.000000:C,"file","file",43.991+44.421,1.000000:C,"and","and",44.421+44.511,1.000000:C,"then","then",44.511+44.661,1.000000:S,"import","with",44.951+45.101,0.834484:C,"that","that",45.101+45.291,0.999987:C,"text","text",45.291+45.571,1.000000:C,"file","file",45.571+45.841,1.000000:D,"into",,,:C,"the","the",45.961+46.051,0.622320:C,"program","program",46.051+46.581,1.000000
</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-014)" word_cnt="7" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2589" R_T1="49.875" R_T2="52.425" word_aux="h_t1+t2,h_conf">
C,"and","and",49.891+50.171,1.000000:C,"and","and",50.611+50.751,0.639073:C,"does","does",50.821+51.006,0.994695:S,"it","not",51.006+51.191,0.994695:C,"automatically","automatically",51.191+51.851,1.000000:D,"with",,,:S,"out","l.",52.091+52.251,0.733823
</PATH>
<PATH id="(032-017)" word_cnt="11" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2597" R_T1="61.850" R_T2="66.550" word_aux="h_t1+t2,h_conf">
S,"java","other",62.040+62.280,1.000000:C,"data","data",62.280+62.545,1.000000:C,"base","base",62.545+62.810,1.000000:C,"controls","controls",62.810+63.650,1.000000:C,"(%hesitation)","",,:C,"that","that",64.130+64.280,0.827208:C,"some","some",64.620+64.830,0.961116:C,"classes","classes",64.830+65.380,1.000000:C,"you","you",65.380+65.550,0.996153:C,"can","can",65.550+65.840,1.000000:S,"include","conclude",65.840+66.470,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-030)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2636" R_T1="123.050" R_T2="123.850" word_aux="h_t1+t2,h_conf">
S,"o.","would",124.170+124.300,0.948798:S,"k.","see",125.630+125.760,0.981515
</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-034)" word_cnt="7" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2644" R_T1="136.500" R_T2="139.925" word_aux="h_t1+t2,h_conf">
D,"the",,,:S,"the","these",136.730+137.030,0.840881:C,"characters","characters",137.220+138.090,1.000000:C,"(%hesitation)","",,:C,"like","like",138.990+139.210,1.000000:D,"getting",,,:S,"some","it's",139.320+139.670,0.999993
</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-036)" word_cnt="17" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2648" R_T1="142.650" R_T2="146.725" word_aux="h_t1+t2,h_conf">
C,"for","for",142.760+142.890,1.000000:C,"(th-)","the",142.890+142.960,0.998928:C,"for","for",143.060+143.190,1.000000:C,"the","the",143.190+143.250,1.000000:C,"most","most",143.250+143.500,1.000000:C,"part","part",143.500+143.710,1.000000:C,"like","like",143.710+143.880,0.999987:C,"the","the",143.880+143.940,0.999882:S,"text","tax",143.940+144.230,0.835107:C,"comes","comes",144.230+144.510,0.999987:C,"up","up",144.510+144.800,0.999989:D,"in",,,:C,"a","a",144.800+144.860,0.878098:C,"very","very",145.250+145.590,0.875872:C,"nice","nice",145.590+145.860,0.870711:C,"readable","readable",145.860+146.210,0.985081:C,"manner","manner",146.210+146.640,0.999660
</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>
<PATH id="(032-056)" word_cnt="15" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2681" R_T1="226.950" R_T2="231.325" word_aux="h_t1+t2,h_conf">
C,"and","and",227.031+227.231,0.701596:S,"g.","g",227.231+227.691,1.000000:C,"so","so",227.861+228.111,1.000000:C,"it","it",228.111+228.201,0.916085:S,"will","all",228.201+228.321,0.916085:S,"capitalize","capitalized",228.321+229.021,0.916085:S,"the","a",229.021+229.061,0.830428:C,"letter","letter",229.061+229.491,1.000000:D,"or",,,:S,"if","work",229.791+230.091,1.000000:C,"you","you",230.091+230.201,1.000000:D,"hit",,,:S,"shift","did",230.201+230.351,0.972393:S,"and","shifting",230.351+230.931,0.994202:C,"like","like",230.931+231.121,1.000000
</PATH>
<PATH id="(032-057)" word_cnt="15" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2683" R_T1="231.350" R_T2="234.725" word_aux="h_t1+t2,h_conf">
C,"let","let",231.421+231.521,1.000000:C,"us","us",231.521+231.621,1.000000:C,"say","say",231.621+231.801,1.000000:C,"three","three",231.801+232.231,1.000000:C,"if","if",232.231+232.311,1.000000:C,"you","you",232.311+232.371,1.000000:C,"want","want",232.371+232.591,1.000000:C,"the","the",232.591+232.671,0.995103:C,"pound","pound",232.671+233.031,1.000000:C,"sign","sign",233.031+233.311,1.000000:D,"it",,,:C,"will","will",233.711+233.901,1.000000:C,"do","do",233.901+234.091,1.000000:C,"that","that",234.091+234.421,1.000000:D,"too",,,
</PATH>
<PATH id="(032-059)" word_cnt="13" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2688" R_T1="237.825" R_T2="241.425" word_aux="h_t1+t2,h_conf">
C,"so","so",237.981+238.341,1.000000:C,"just","just",238.431+238.641,1.000000:C,"to","to",238.641+238.761,1.000000:C,"make","make",238.761+238.951,1.000000:C,"things","things",238.991+239.241,1.000000:C,"readable","readable",239.241+239.661,1.000000:C,"and","and",239.661+239.831,1.000000:C,"give","give",240.151+240.311,1.000000:C,"people","people",240.311+240.601,1.000000:C,"an","an",240.601+240.661,1.000000:C,"idea","idea",240.661+241.091,1.000000:D,"of",,,:C,"what","what",241.181+241.391,1.000000
</PATH>
<PATH id="(032-062)" word_cnt="7" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2696" R_T1="249.150" R_T2="251.925" word_aux="h_t1+t2,h_conf">
C,"(massi-)","",,:S,"a","if",249.971+250.131,0.889010:S,"huge","each",250.131+250.331,0.904430:C,"column","column",250.331+250.831,1.000000:C,"of","of",251.091+251.241,1.000000:C,"data","data",251.241+251.581,1.000000:D,"that",,,
</PATH>
<PATH id="(032-063)" word_cnt="13" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2698" R_T1="251.925" R_T2="254.750" word_aux="h_t1+t2,h_conf">
D,"that",,,:D,"will",,,:S,"take","it",251.671+251.821,1.000000:S,"you","contains",252.031+252.531,1.000000:C,"a","a",252.621+252.661,1.000000:C,"long","long",252.661+252.921,1.000000:C,"time","time",252.921+253.191,1.000000:C,"to","to",253.191+253.301,1.000000:D,"parse",,,:S,"through","parses",253.301+253.791,0.906235:S,"because","and",253.791+253.881,0.642463:C,"there","there",254.161+254.341,1.000000:C,"is","is",254.341+254.521,1.000000
</PATH>
<PATH id="(032-064)" word_cnt="13" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2699" R_T1="254.750" R_T2="260.375" word_aux="h_t1+t2,h_conf">
C,"a","a",254.871+254.901,1.000000:C,"whole","whole",254.901+255.081,1.000000:C,"bunch","bunch",255.081+255.301,1.000000:C,"of","of",255.301+255.381,1.000000:I,,"non",255.431+255.821,1.000000:S,"nonsensical","sensical",256.401+256.861,1.000000:C,"characters","characters",256.901+257.541,1.000000:D,"and",,,:D,"mouse",,,:S,"movements","nelson's",257.641+258.101,1.000000:S,"interlaced","it",258.741+258.861,1.000000:S,"throughout","to",258.861+258.991,1.000000:S,"it","me",259.221+259.401,0.862431
</PATH>
<PATH id="(032-065)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2715" R_T1="292.400" R_T2="293.375" word_aux="h_t1+t2,h_conf">
S,"%bcack","it's",294.680+294.850,0.601040
</PATH>
<PATH id="(032-067)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2736" R_T1="334.650" R_T2="335.725" word_aux="h_t1+t2,h_conf">
S,"right","to",335.890+336.020,0.923921
</PATH>
<PATH id="(032-070)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2763" R_T1="373.850" R_T2="374.425" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(032-076)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2810" R_T1="470.450" R_T2="471.800" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(032-077)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2813" R_T1="477.500" R_T2="478.850" word_aux="h_t1+t2,h_conf">
S,"(interesting)","a",477.750+477.970,0.366156
</PATH>
<PATH id="(032-078)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2817" R_T1="483.950" R_T2="484.575" word_aux="h_t1+t2,h_conf">
S,"%bcack","a",482.180+482.350,0.826746
</PATH>
</SPEAKER>
<SPEAKER id="054">
<PATH id="(054-008)" word_cnt="8" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2620" R_T1="98.400" R_T2="100.495" word_aux="h_t1+t2,h_conf">
D,"once",,,:D,"he",,,:S,"is","what",98.611+98.801,0.990410:S,"connected","they",98.981+99.081,0.990410:S,"he","make",99.081+99.311,0.990405:S,"can","you",99.461+99.561,0.990405:C,"do","do",99.561+99.681,0.990410:S,"anything","is",99.961+100.321,1.000000
</PATH>
<PATH id="(054-009)" word_cnt="12" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2622" R_T1="100.565" R_T2="103.415" word_aux="h_t1+t2,h_conf">
C,"in","in",100.681+100.891,1.000000:S,"java","doubt",100.891+101.231,1.000000:C,"that","that",101.231+101.371,0.997284:S,"he","you",101.371+101.471,0.992402:S,"can","could",101.471+101.621,0.851740:C,"do","do",101.621+101.831,1.000000:D,"in",,,:S,"s.","if",101.831+102.331,0.994561:S,"q.","you",102.331+102.441,0.994561:S,"l.","of",102.441+102.581,0.994561:S,"query","queries",102.581+103.001,0.997284:S,"so","about",103.001+103.231,0.997284
</PATH>
<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>
<PATH id="(054-022)" word_cnt="19" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2880" R_T1="588.025" R_T2="592.675" word_aux="h_t1+t2,h_conf">
C,"i","i",588.181+588.271,1.000000:C,"have","have",588.271+588.361,1.000000:D,"done",,,:S,"this","been",588.361+588.511,1.000000:S,"on","a",588.511+588.591,0.966943:S,"my","problem",588.591+588.931,1.000000:S,"macs","mac",588.931+589.301,1.000000:C,"but","but",589.461+589.711,1.000000:D,"there",,,:D,"are",,,:S,"instances","yeah",589.991+590.181,0.999994:S,"where","if",590.181+590.371,0.961958:S,"you","we",590.481+590.801,1.000000:C,"can","can",590.801+590.961,0.976034:C,"have","have",590.961+591.211,1.000000:C,"like","like",591.211+591.411,1.000000:C,"two","two",591.411+591.641,0.999971:S,"screens","putting",591.701+592.051,1.000000:C,"together","together",592.051+592.481,1.000000
</PATH>
<PATH id="(054-025)" word_cnt="16" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2886" R_T1="598.325" R_T2="602.425" word_aux="h_t1+t2,h_conf">
C,"both","both",598.451+598.781,1.000000:C,"of","of",598.781+598.971,1.000000:S,"them","it",598.971+599.171,0.999859:C,"and","and",599.171+599.421,1.000000:C,"it","it",599.421+599.601,1.000000:I,,"read",599.761+599.981,0.867817:S,"is","anything",599.981+600.411,0.607459:S,"registering","well",600.481+600.661,0.997892:S,"somewhere","we",600.661+600.921,0.997892:C,"would","would",600.921+601.101,1.000000:C,"that","that",601.101+601.361,1.000000:C,"make","make",601.361+601.561,1.000000:C,"it","it",601.561+601.621,1.000000:C,"look","look",601.621+601.821,1.000000:C,"like","like",601.821+602.201,1.000000:I,,"i",602.201+602.231,1.000000
</PATH>
<PATH id="(054-026)" word_cnt="9" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2888" R_T1="602.525" R_T2="605.200" word_aux="h_t1+t2,h_conf">
D,"i",,,:C,"had","had",602.741+602.951,1.000000:C,"gone","gone",602.951+603.181,0.999980:C,"out","out",603.181+603.311,1.000000:C,"of","of",603.311+603.431,1.000000:S,"bounds","balance",603.431+603.911,1.000000:S,"or","of",603.911+604.071,1.000000:C,"something","something",604.071+604.661,0.875007:S,"or","little",605.221+605.611,0.875007
</PATH>
<PATH id="(054-029)" word_cnt="3" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2906" R_T1="639.200" R_T2="640.300" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:D,"o.",,,:D,"k.",,,
</PATH>
</SPEAKER>
<SPEAKER id="031">
<PATH id="(031-001)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2633" R_T1="120.300" R_T2="121.030" word_aux="h_t1+t2,h_conf">
S,"yeah","know",121.701+121.971,0.889984
</PATH>
</SPEAKER>
<SPEAKER id="017">
<PATH id="(017-018)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2634" R_T1="120.451" R_T2="122.706" word_aux="h_t1+t2,h_conf">
S,"oh","well",120.491+120.741,0.967180:S,"yeah","you",121.531+121.701,0.964612:C,"(%hesitation)","",,
</PATH>
<PATH id="(017-019)" word_cnt="11" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2635" R_T1="122.826" R_T2="126.189" word_aux="h_t1+t2,h_conf">
S,"whoops","how",123.220+123.420,0.947806:S,"we","this",123.600+123.720,0.946154:C,"do","do",124.300+124.400,0.989334:D,"not",,,:S,"think","if",124.570+124.680,0.639525:C,"we","we",124.740+124.880,0.721105:D,"would",,,:D,"need",,,:D,"v.",,,:D,"n.",,,:D,"c.",,,
</PATH>
<PATH id="(017-028)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2689" R_T1="239.814" R_T2="241.089" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,
</PATH>
<PATH id="(017-031)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2697" R_T1="251.153" R_T2="252.223" word_aux="h_t1+t2,h_conf">
S,"%hesitation","mass",249.481+249.851,0.671215
</PATH>
<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-043)" word_cnt="9" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2714" R_T1="289.681" R_T2="292.800" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:S,"help","up",290.460+290.670,0.622416:S,"the","a",290.670+290.700,0.527050:S,"user","using",290.700+291.080,0.900841:S,"not","that",291.080+291.230,0.915590:C,"to","to",291.310+291.380,0.919964:S,"make","me",291.380+291.520,0.524711:S,"those","the",291.600+291.740,0.905667:S,"mistakes","system",291.740+292.180,0.964476
</PATH>
<PATH id="(017-044)" word_cnt="6" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2716" R_T1="293.256" R_T2="295.146" word_aux="h_t1+t2,h_conf">
C,"but","but",293.520+293.750,1.000000:I,,"you",293.750+293.920,0.916579:S,"yeah","know",293.920+294.010,0.916579:C,"i","i",294.010+294.200,0.970309:S,"i","that's",294.200+294.510,0.929421:S,"plotted","but",294.510+294.680,0.989515
</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-058)" word_cnt="6" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2735" R_T1="332.443" R_T2="334.743" word_aux="h_t1+t2,h_conf">
C,"choose","choose",332.600+332.990,1.000000:C,"which","which",332.990+333.240,0.994784:C,"variables","variables",333.240+333.930,1.000000:D,"to",,,:C,"look","look",334.170+334.360,0.934313:C,"at","at",334.360+334.570,0.903270
</PATH>
<PATH id="(017-059)" word_cnt="4" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2737" R_T1="334.834" R_T2="336.291" word_aux="h_t1+t2,h_conf">
C,"so","so",335.050+335.280,1.000000:C,"i","i",335.280+335.380,0.950826:D,"plotted",,,:S,"the","decided",335.380+335.790,0.920463
</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-068)" word_cnt="9" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2750" R_T1="356.876" R_T2="360.633" word_aux="h_t1+t2,h_conf">
C,"maybe","maybe",357.180+357.450,1.000000:I,,"not",357.450+357.700,0.931674:S,"mouse","so",357.700+357.810,0.656060:C,"acceleration","acceleration",357.810+358.790,0.731248:C,"is","is",358.960+359.020,0.836838:C,"in","in",359.090+359.290,0.660174:C,"use","use",359.290+359.470,0.875707:I,,"and",359.810+360.370,0.999981:C,"and","and",360.791+360.921,0.622097
</PATH>
<PATH id="(017-069)" word_cnt="7" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2752" R_T1="360.747" R_T2="363.320" word_aux="h_t1+t2,h_conf">
I,,"so",361.031+361.241,0.941729:S,"it","there",361.241+361.461,1.000000:S,"accelerates","is",361.461+361.711,1.000000:C,"the","the",361.871+361.941,0.917710:C,"mouse","mouse",361.941+362.371,0.634319:C,"and","and",362.371+362.641,0.998222:C,"keeps","keeps",362.641+363.081,0.992470
</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-074)" word_cnt="9" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2762" R_T1="373.794" R_T2="376.846" word_aux="h_t1+t2,h_conf">
C,"not","not",373.980+374.270,1.000000:C,"not","not",374.480+374.790,0.999668:C,"way","way",374.790+375.100,0.821911:S,"out","about",375.100+375.280,0.439660:C,"there","there",375.350+375.620,0.820755:C,"but","but",375.620+375.790,0.997001:C,"(%hesitation)","",,:C,"(%hesitation)","",,:C,"(%hesitation)","",,
</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-089)" word_cnt="16" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2793" R_T1="437.483" R_T2="442.766" word_aux="h_t1+t2,h_conf">
C,"also","also",437.750+438.110,0.859620:C,"i","i",438.110+438.240,0.839069:C,"colored","colored",438.240+438.650,0.987022:C,"the","the",438.650+438.730,0.987774:C,"different","different",438.730+439.040,1.000000:C,"kinds","kinds",439.040+439.400,1.000000:C,"of","of",439.400+439.510,1.000000:C,"events","events",439.510+439.990,0.738872:C,"different","different",439.990+440.330,1.000000:C,"colors","colors",440.330+440.860,1.000000:C,"and","and",440.860+440.960,0.643774:C,"you","you",440.960+441.090,0.970689:C,"can","can",441.090+441.260,0.989612:C,"eliminate","eliminate",441.260+441.820,0.999595:C,"things","things",441.920+442.270,1.000000:C,"like","like",442.270+442.480,1.000000
</PATH>
<PATH id="(017-090)" word_cnt="20" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2795" R_T1="442.857" R_T2="448.777" word_aux="h_t1+t2,h_conf">
C,"if","if",443.080+443.180,0.998951:C,"you","you",443.180+443.280,0.998951:C,"eliminate","eliminate",443.280+443.750,0.999799:C,"all","all",443.750+443.930,0.999693:S,"the","be",443.990+444.070,0.940832:S,"mouse","most",444.070+444.470,1.000000:C,"motion","motion",444.470+444.930,0.999961:C,"events","events",444.930+445.310,0.999999:C,"then","then",445.400+445.650,1.000000:C,"you","you",445.650+445.730,0.994316:C,"can","can",445.800+445.900,0.992759:C,"see","see",445.900+446.220,1.000000:C,"more","more",446.220+446.460,1.000000:C,"clearly","clearly",446.460+446.870,1.000000:C,"where","where",446.870+447.130,0.800884:C,"all","all",447.130+447.240,0.800884:C,"the","the",447.240+447.370,0.983378:C,"clicks","clicks",447.370+447.750,0.972086:S,"have","of",447.750+447.860,0.949264:S,"occurred","occur",447.860+448.240,0.770066
</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-093)" word_cnt="9" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2799" R_T1="453.832" R_T2="456.974" word_aux="h_t1+t2,h_conf">
C,"on","on",454.080+454.260,0.888830:C,"the","the",454.260+454.320,0.999938:C,"right","right",454.320+454.560,0.999913:C,"hand","hand",454.560+454.840,0.999913:C,"side","side",454.840+455.280,1.000000:C,"there","there",455.280+455.395,0.968663:C,"is","is",455.395+455.510,0.968663:C,"a","a",455.510+455.690,0.879683:C,"vertical","vertical",455.900+456.510,0.999999
</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-095)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2802" R_T1="458.568" R_T2="460.162" word_aux="h_t1+t2,h_conf">
D,"line",,,:S,"of","wiener",458.880+459.280,0.826776:C,"clicks","clicks",459.280+459.960,0.926751
</PATH>
<PATH id="(017-096)" word_cnt="5" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2804" R_T1="460.231" R_T2="462.212" word_aux="h_t1+t2,h_conf">
C,"where","where",460.250+460.510,1.000000:C,"people","people",460.510+460.800,1.000000:C,"use","use",460.800+461.190,0.999788:C,"scroll","scroll",461.190+461.500,1.000000:C,"bars","bars",461.500+462.000,1.000000
</PATH>
<PATH id="(017-097)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2805" R_T1="462.348" R_T2="463.874" word_aux="h_t1+t2,h_conf">
C,"in","in",462.520+462.740,1.000000:C,"the","the",462.740+462.890,0.986170:C,"upper","upper",462.890+463.550,0.992629
</PATH>
<PATH id="(017-098)" word_cnt="3" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2807" R_T1="464.397" R_T2="466.652" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"left","left",465.660+465.980,0.999227:C,"corner","corner",465.980+466.460,1.000000
</PATH>
<PATH id="(017-099)" word_cnt="10" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2809" R_T1="466.811" R_T2="470.819" word_aux="h_t1+t2,h_conf">
D,"there",,,:C,"is","is",467.050+467.260,0.437748:C,"(%hesitation)","",,:D,"a",,,:S,"cluster","clustered",467.950+468.600,0.996808:C,"from","from",468.600+468.900,0.984208:C,"people","people",468.900+469.170,1.000000:C,"using","using",469.170+469.650,1.000000:S,"the","many",469.970+470.360,0.993798:S,"menus","it's",470.360+470.580,0.514710
</PATH>
<PATH id="(017-100)" word_cnt="19" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2811" R_T1="471.046" R_T2="475.692" word_aux="h_t1+t2,h_conf">
C,"and","and",471.280+471.420,1.000000:C,"then","then",471.420+471.580,1.000000:C,"there","there",471.580+471.655,0.769355:C,"is","is",471.655+471.730,0.769355:D,"a",,,:C,"(l-)","",,:S,"a","some",471.730+471.980,1.000000:C,"smaller","smaller",472.170+472.510,0.999835:S,"cluster","clusters",472.510+472.950,0.356669:C,"in","in",472.950+473.080,0.999675:C,"the","the",473.080+473.180,1.000000:C,"lower","lower",473.180+473.480,1.000000:C,"left","left",473.480+473.820,1.000000:S,"where","with",473.820+473.970,0.999950:S,"they","the",473.970+474.030,0.566424:C,"use","use",474.030+474.290,0.567862:D,"the",,,:C,"windows","windows",474.450+474.740,1.000000:D,"menu",,,
</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-102)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2814" R_T1="477.604" R_T2="478.993" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:C,"subject","subject",478.060+478.520,0.912697
</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-104)" word_cnt="5" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2816" R_T1="481.589" R_T2="484.344" word_aux="h_t1+t2,h_conf">
S,"the","be",481.840+482.180,0.569186:C,"(%hesitation)","",,:C,"user","user",482.720+483.070,1.000000:C,"number","number",483.070+483.320,1.000000:C,"four","four",483.320+483.850,0.930898
</PATH>
<PATH id="(017-105)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2818" R_T1="484.458" R_T2="486.052" word_aux="h_t1+t2,h_conf">
S,"liked","like",484.850+485.040,0.877252:C,"to","to",485.090+485.460,0.790917
</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-114)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2846" R_T1="530.910" R_T2="532.094" word_aux="h_t1+t2,h_conf">
D,"%bcack",,,
</PATH>
<PATH id="(017-115)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2848" R_T1="533.915" R_T2="535.054" word_aux="h_t1+t2,h_conf">
D,"well",,,
</PATH>
<PATH id="(017-116)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2849" R_T1="535.441" R_T2="536.784" word_aux="h_t1+t2,h_conf">
D,"yeah",,,
</PATH>
<PATH id="(017-123)" word_cnt="1" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2890" R_T1="604.799" R_T2="605.779" word_aux="h_t1+t2,h_conf">
S,"well","a",604.661+604.801,0.875007
</PATH>
<PATH id="(017-124)" word_cnt="16" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2892" R_T1="605.893" R_T2="609.991" word_aux="h_t1+t2,h_conf">
C,"it","it",605.981+606.111,0.865343:C,"might","might",606.111+606.511,0.986276:C,"i","i",606.511+606.586,0.988869:C,"am","am",606.586+606.661,0.988869:C,"not","not",606.661+606.831,1.000000:C,"sure","sure",606.831+607.131,1.000000:D,"how",,,:C,"how","how",607.131+607.251,0.986559:C,"that","that",607.981+608.161,0.999979:C,"would","would",608.161+608.321,0.995568:C,"get","get",608.321+608.491,0.996756:C,"reported","reported",608.491+608.981,0.996897:S,"if","that",608.981+609.121,0.999354:S,"it","that",609.171+609.261,0.876710:C,"would","would",609.261+609.461,0.999936:C,"be","be",609.461+609.671,0.999999
</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-129)" word_cnt="13" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2899" R_T1="619.327" R_T2="622.560" word_aux="h_t1+t2,h_conf">
C,"(tha-)","",,:C,"that","that",619.780+619.940,0.999600:C,"they","they",619.940+620.110,0.994098:C,"use","use",620.110+620.460,0.993837:C,"are","are",620.460+620.590,0.912362:C,"the","the",620.590+620.700,1.000000:C,"same","same",620.700+621.110,1.000000:C,"as","as",621.210+621.490,1.000000:C,"the","the",621.490+621.560,0.986936:C,"ones","ones",621.560+621.820,0.877452:D,"that",,,:C,"we","we",621.820+622.030,0.921413:S,"have","had",622.030+622.190,0.844138
</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-131)" word_cnt="7" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2902" R_T1="627.274" R_T2="630.211" word_aux="h_t1+t2,h_conf">
I,,"but",627.480+627.610,0.797338:S,"pixels","so",627.610+627.940,0.534175:C,"that","that",628.150+628.280,0.791909:C,"can","can",628.370+628.580,0.975533:C,"be","be",628.580+628.730,0.987186:C,"displayed","displayed",628.730+629.340,0.902302:D,"on",,,
</PATH>
<PATH id="(017-132)" word_cnt="16" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2904" R_T1="630.348" R_T2="634.538" word_aux="h_t1+t2,h_conf">
C,"the","the",630.500+630.570,0.983566:C,"l.","l.",630.570+630.800,0.995154:C,"c.","c.",630.800+630.990,0.999726:C,"d.","d.",630.990+631.330,0.999092:C,"and","and",631.780+631.970,1.000000:C,"in","in",631.970+632.080,0.999809:C,"fact","fact",632.080+632.360,0.999681:C,"i","i",632.360+632.500,0.777813:C,"do","do",632.500+632.615,0.922222:C,"not","not",632.615+632.730,0.922222:C,"think","think",632.730+632.910,1.000000:C,"the","the",632.960+633.020,0.947189:C,"software","software",633.020+633.510,0.999997:S,"would","is",633.600+633.680,0.999994:S,"let","like",633.680+633.870,0.987172:S,"you","that",633.920+634.080,0.829500
</PATH>
<PATH id="(017-133)" word_cnt="14" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2905" R_T1="634.993" R_T2="639.752" word_aux="h_t1+t2,h_conf">
C,"so","so",635.230+635.660,1.000000:C,"it","it",635.660+635.810,0.963475:D,"would",,,:C,"does","does",636.440+636.610,1.000000:C,"not","not",636.610+636.780,1.000000:C,"seem","seem",636.780+637.100,0.991675:C,"to","to",637.100+637.220,1.000000:C,"be","be",637.220+637.350,0.999987:C,"an","an",637.350+637.480,0.991727:C,"artifact","artifact",637.480+637.950,0.995648:C,"of","of",638.070+638.160,0.995853:C,"anything","anything",638.160+638.520,0.987664:C,"like","like",638.520+638.630,0.713640:C,"that","that",638.780+639.040,0.999709
</PATH>
<PATH id="(017-134)" word_cnt="2" labels="<O,MALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2907" R_T1="639.980" R_T2="641.528" word_aux="h_t1+t2,h_conf">
C,"but","but",640.310+640.610,1.000000:C,"(%hesitation)","",,
</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-039)" word_cnt="22" labels="<O,FEMALE,N1>" file="NIST_20030623-1409_D_NONE" channel="1" sequence="2847" R_T1="530.975" R_T2="537.250" word_aux="h_t1+t2,h_conf">
C,"so","so",531.281+531.481,0.591422:D,"if",,,:S,"you","he",531.481+531.641,0.620947:C,"had","had",531.641+531.981,0.992995:C,"equal","equal",532.111+532.421,0.608274:C,"skills","skills",532.421+533.001,0.891912:D,"of",,,:C,"time","time",533.001+533.391,0.998211:D,"it",,,:D,"might",,,:D,"be",,,:C,"interesting","interesting",533.831+534.281,1.000000:C,"to","to",534.281+534.361,0.831343:C,"see","see",534.421+534.551,0.999981:C,"if","if",534.551+534.701,0.967444:S,"they","the",534.701+534.891,0.375321:C,"one","one",535.311+535.491,1.000000:C,"guy","guy",535.491+535.771,0.999718:D,"has",,,:D,"the",,,:C,"circular","circular",536.131+536.631,0.999743:C,"motion","motion",536.631+537.031,0.630632
</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-063)" word_cnt="5" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="2960" R_T1="184.355" R_T2="186.530" word_aux="h_t1+t2,h_conf">
I,,"trees",184.551+184.881,0.918682:I,,"and",184.881+184.971,0.556435:S,"treason","make",184.971+185.091,0.822166:S,"at","one",185.141+185.421,0.994781:S,"guantanamo","phone",185.421+185.651,0.997370
</PATH>
<PATH id="(019-072)" word_cnt="13" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="2985" R_T1="218.580" R_T2="222.305" word_aux="h_t1+t2,h_conf">
D,"the",,,:C,"internet","internet",218.781+219.181,1.000000:D,"maybe",,,:D,"to",,,:D,"look",,,:C,"for","for",219.821+219.971,0.896590:C,"today's","today's",219.971+220.361,0.522856:S,"headlines","that's",220.421+220.601,0.945429:S,"we","why",220.601+220.811,0.945429:C,"might","might",221.071+221.251,0.999878:C,"have","have",221.251+221.341,0.999458:D,"missed",,,:C,"something","something",221.651+222.141,0.975466
</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-077)" word_cnt="4" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3001" R_T1="245.480" R_T2="248.130" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"treason",,,:D,"at",,,:S,"guantanamo","trees",246.191+246.591,0.875812
</PATH>
<PATH id="(019-078)" word_cnt="5" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3003" R_T1="249.705" R_T2="251.880" word_aux="h_t1+t2,h_conf">
C,"and","and",249.911+250.011,0.975971:C,"then","then",250.011+250.101,0.864988:C,"the","the",250.101+250.191,0.999704:C,"california","california",250.191+250.941,0.999250:C,"recall","recall",250.941+251.711,1.000000
</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-091)" word_cnt="8" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3037" R_T1="300.330" R_T2="303.805" word_aux="h_t1+t2,h_conf">
I,,"how",300.440+300.630,0.540852:S,"oh","long",300.780+301.010,0.531237:S,"yeah","have",301.010+301.230,0.871359:C,"this","this",301.230+301.460,0.996992:S,"woman","one",301.600+301.770,0.999977:S,"got","man",301.770+302.250,0.996009:S,"her","doctor",302.590+303.100,0.761514:C,"(%hesitation)","",,
</PATH>
<PATH id="(019-093)" word_cnt="14" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3043" R_T1="310.705" R_T2="315.030" word_aux="h_t1+t2,h_conf">
I,,"how",310.820+310.890,0.496189:S,"iran","long",310.890+311.250,0.748404:C,"has","has",311.250+311.560,0.873855:C,"one","one",311.560+311.790,0.950846:C,"last","last",311.790+312.080,0.559092:C,"chance","chance",312.080+312.450,1.000000:C,"to","to",312.450+312.540,1.000000:C,"comply","comply",312.540+313.250,0.990654:D,"are",,,:D,"we",,,:S,"going","with",313.640+313.830,0.890951:S,"to","the",313.830+313.890,0.884198:S,"war","work",313.890+314.270,0.643633:S,"again","yeah",314.270+314.560,0.589229
</PATH>
<PATH id="(019-094)" word_cnt="3" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3046" R_T1="318.955" R_T2="321.505" word_aux="h_t1+t2,h_conf">
C,"nuclear","nuclear",319.100+319.540,1.000000:C,"materials","materials",319.540+320.260,1.000000:D,"yeah",,,
</PATH>
<PATH id="(019-095)" word_cnt="21" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3048" R_T1="323.330" R_T2="328.805" word_aux="h_t1+t2,h_conf">
I,,"it's",323.540+323.720,0.464804:I,,"you",323.720+323.820,0.999885:S,"israel","know",323.820+323.910,0.999885:S,"(airfor-)","where",323.910+324.190,0.999397:S,"oh","all",324.260+324.620,0.999972:S,"i","my",324.620+324.720,0.999968:C,"thought","thought",324.780+324.960,1.000000:C,"that","that",324.960+325.140,1.000000:C,"was","was",325.140+325.280,0.966444:C,"an","an",325.280+325.350,0.963879:C,"interesting","interesting",325.350+325.840,1.000000:C,"story","story",325.840+326.420,1.000000:I,,"is",326.500+326.670,0.929541:I,,"really",326.670+327.000,0.996972:I,,"i",327.050+327.210,0.986090:S,"israeli","like",327.210+327.380,0.986079:S,"pilots","to",327.380+327.490,0.988470:S,"have","fish",327.490+327.700,0.988404:S,"refused","used",327.800+327.970,0.397003:C,"to","to",327.970+328.060,0.845029:C,"fly","fly",328.060+328.560,0.825575
</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-113)" word_cnt="5" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3087" R_T1="386.205" R_T2="388.655" word_aux="h_t1+t2,h_conf">
D,"so",,,:D,"that",,,:S,"is","but",386.421+386.521,0.918953:S,"this","all",387.381+387.681,0.425859:S,"soccer","for",387.761+387.891,0.733212
</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-115)" word_cnt="0" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3090" R_T1="394.630" R_T2="396.505" word_aux="h_t1+t2,h_conf">
</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-117)" word_cnt="12" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3093" R_T1="405.405" R_T2="409.430" word_aux="h_t1+t2,h_conf">
S,"health","well",405.760+406.130,0.674265:S,"so","let",406.460+406.525,0.939492:S,"the","us",406.525+406.590,0.939492:S,"health","see",406.590+406.780,0.966896:C,"could","could",407.230+407.350,0.968299:C,"be","be",407.350+407.490,0.999983:C,"like","like",407.490+407.620,0.967058:D,"a",,,:D,"culture",,,:S,"kind","all",407.890+408.060,0.480403:S,"of","call",408.360+408.540,0.313542:C,"thing","thing",408.780+409.250,0.941903
</PATH>
<PATH id="(019-120)" word_cnt="7" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3105" R_T1="421.980" R_T2="424.755" word_aux="h_t1+t2,h_conf">
S,"and","so",423.421+423.751,0.550924:C,"what","what",424.041+424.261,0.411141:D,"is",,,:D,"this",,,:D,"more",,,:D,"top",,,:D,"stories",,,
</PATH>
<PATH id="(019-127)" word_cnt="1" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3123" R_T1="451.155" R_T2="453.830" word_aux="h_t1+t2,h_conf">
D,"grasso",,,
</PATH>
<PATH id="(019-128)" word_cnt="13" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3126" R_T1="456.280" R_T2="460.480" word_aux="h_t1+t2,h_conf">
S,"oh","so",456.591+457.011,0.397102:C,"(%hesitation)","",,:C,"we","we",457.171+457.331,0.963346:C,"can","can",457.331+457.531,0.938704:D,"group",,,:S,"them","so",457.821+457.971,0.460178:C,"i","i",458.241+458.441,1.000000:S,"had","have",458.441+458.631,1.000000:S,"them","been",458.631+458.831,1.000000:S,"grouped","through",458.831+459.011,1.000000:C,"here","here",459.181+459.461,1.000000:S,"as","is",459.461+459.711,1.000000:C,"(%hesitation)","",,
</PATH>
<PATH id="(019-129)" word_cnt="14" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3128" R_T1="463.780" R_T2="468.230" word_aux="h_t1+t2,h_conf">
D,"do",,,:C,"we","we",464.141+464.261,0.641927:S,"have","if",464.261+464.371,0.271549:C,"six","six",464.371+464.751,0.477638:C,"i","i",464.751+464.851,0.984407:C,"have","have",464.851+465.021,0.972156:C,"one","one",465.021+465.171,0.999995:C,"two","two",465.171+465.321,1.000000:C,"three","three",465.321+465.551,1.000000:C,"four","four",465.551+465.901,1.000000:C,"five","five",465.901+466.381,1.000000:C,"six","six",466.421+466.891,1.000000:C,"seven","seven",466.891+467.421,0.999918:C,"eight","eight",467.531+467.851,0.603743
</PATH>
<PATH id="(019-130)" word_cnt="10" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3131" R_T1="468.330" R_T2="473.155" word_aux="h_t1+t2,h_conf">
I,,"the",468.651+468.741,0.700961:I,,"thing",468.741+469.041,0.707130:I,,"that's",469.511+469.861,0.987833:S,"let","trees",470.581+471.021,1.000000:S,"us","than",471.021+471.141,0.631501:S,"see","n.",471.211+471.871,0.958186:S,"grasso","x.",471.871+472.091,0.958016:S,"treason","one",472.091+472.301,0.786570:S,"at","phone",472.301+472.611,0.572773:S,"guantanamo","him",472.611+472.751,0.534906
</PATH>
<PATH id="(019-131)" word_cnt="4" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3134" R_T1="475.430" R_T2="476.530" word_aux="h_t1+t2,h_conf">
S,"oh","mean",475.111+475.201,0.998117:S,"you","that",475.831+475.981,0.998053:S,"have","that",475.981+476.351,0.999322:C,"that","that",476.391+476.731,0.999494
</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-133)" word_cnt="4" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3137" R_T1="481.430" R_T2="483.480" word_aux="h_t1+t2,h_conf">
C,"the","the",482.131+482.191,0.602751:D,"treason",,,:D,"is",,,:C,"national","national",482.411+483.211,1.000000
</PATH>
<PATH id="(019-134)" word_cnt="3" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3139" R_T1="484.030" R_T2="485.905" word_aux="h_t1+t2,h_conf">
C,"california","california",484.271+484.941,0.986797:D,"is",,,:S,"national","snatched",484.991+485.491,0.989527
</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-142)" word_cnt="11" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3154" R_T1="502.930" R_T2="506.605" word_aux="h_t1+t2,h_conf">
C,"the","the",503.621+503.741,1.000000:C,"other","other",503.741+503.951,1.000000:C,"international","international",503.951+504.521,1.000000:C,"story","story",504.521+504.841,0.960319:I,,"of",504.841+504.911,0.883495:S,"was","this",504.911+505.081,0.926466:S,"bush","which",505.191+505.501,0.919219:S,"at","is",505.501+505.581,0.918677:C,"the","the",505.631+505.811,0.367916:S,"u.","you",505.811+505.991,0.615947:S,"n.","and",505.991+506.341,0.638684
</PATH>
<PATH id="(019-148)" word_cnt="8" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3182" R_T1="533.330" R_T2="535.355" word_aux="h_t1+t2,h_conf">
C,"do","do",533.490+533.570,0.995668:C,"we","we",533.570+533.660,1.000000:C,"have","have",533.660+533.820,1.000000:C,"anything","anything",533.820+534.110,1.000000:C,"to","to",534.110+534.180,1.000000:C,"report","report",534.180+534.570,1.000000:S,"about","or",534.570+534.610,0.997538:S,"him","something",534.610+534.970,0.997538
</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-154)" word_cnt="3" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3199" R_T1="562.305" R_T2="564.255" word_aux="h_t1+t2,h_conf">
S,"women's","from",562.920+563.100,0.996519:S,"soccer","all",563.100+563.220,0.752330:S,"(oh)","of",563.330+563.430,0.615699
</PATH>
<PATH id="(019-155)" word_cnt="17" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3201" R_T1="564.255" R_T2="569.105" word_aux="h_t1+t2,h_conf">
S,"there","them",563.430+563.780,0.974126:C,"has","has",564.941+565.081,0.562867:C,"to","to",565.081+565.171,0.997892:C,"be","be",565.171+565.261,0.998209:C,"something","something",565.261+565.711,1.000000:C,"cultural","cultural",565.711+566.251,0.999845:I,,"where",566.251+566.371,0.411066:S,"the","some",566.371+566.761,0.861272:S,"john","of",566.761+566.831,0.980497:S,"ritter","the",566.831+566.941,1.000000:S,"thing","things",566.941+567.321,0.980497:S,"is","how",567.421+567.521,1.000000:S,"oh","old",567.521+568.031,1.000000:C,"the","the",568.031+568.131,1.000000:C,"fact","fact",568.131+568.491,1.000000:C,"that","that",568.491+568.721,1.000000:C,"(%hesitation)","",,
</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-173)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3265" R_T1="651.155" R_T2="652.080" word_aux="h_t1+t2,h_conf">
I,,"all",651.301+651.541,0.816017:S,"(%hesitation)","right",652.121+652.451,0.726335
</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-177)" word_cnt="17" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3278" R_T1="679.130" R_T2="684.105" word_aux="h_t1+t2,h_conf">
D,"what",,,:D,"else",,,:D,"do",,,:D,"we",,,:C,"(d-)","",,:C,"(%hesitation)","",,:D,"there",,,:D,"is",,,:D,"nothing",,,:D,"much",,,:D,"beyond",,,:D,"that",,,:D,"o.",,,:D,"k.",,,:D,"here",,,:D,"we",,,:D,"go",,,
</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-183)" word_cnt="4" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3288" R_T1="701.730" R_T2="703.980" word_aux="h_t1+t2,h_conf">
C,"sagittarius","sagittarius",702.130+702.790,0.998152:D,"is",,,:D,"my",,,:D,"sign",,,
</PATH>
<PATH id="(019-184)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3291" R_T1="706.530" R_T2="708.180" word_aux="h_t1+t2,h_conf">
D,"factory",,,:S,"farms","it",707.840+707.920,1.000000
</PATH>
<PATH id="(019-185)" word_cnt="8" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3293" R_T1="713.355" R_T2="715.730" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"do",,,:D,"not",,,:D,"see",,,:D,"anything",,,:D,"here",,,:D,"that",,,:D,"looks",,,
</PATH>
<PATH id="(019-192)" word_cnt="6" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3311" R_T1="748.130" R_T2="750.455" word_aux="h_t1+t2,h_conf">
D,"here",,,:D,"is",,,:D,"the",,,:S,"spy","all",748.860+748.970,0.963346:S,"probe","over",749.740+749.910,0.527646:S,"thing","or",749.910+749.940,0.365533
</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-194)" word_cnt="2" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3314" R_T1="755.555" R_T2="756.580" word_aux="h_t1+t2,h_conf">
I,,"hello",755.770+756.270,0.758693:S,"oh","the",756.741+756.831,0.996018
</PATH>
<PATH id="(019-195)" word_cnt="33" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3316" R_T1="756.580" R_T2="765.255" word_aux="h_t1+t2,h_conf">
S,"arrest","rest",756.831+757.201,0.999999:C,"of","of",757.201+757.291,0.911585:C,"two","two",757.291+757.821,0.661713:S,"and","n.",757.881+758.061,0.516847:C,"at","at",758.061+758.171,0.377772:S,"least","these",758.301+758.521,0.615365:C,"two","two",758.681+758.941,0.998285:S,"others","mothers",758.941+759.381,0.757123:C,"being","being",759.381+759.691,0.999193:S,"watched","launched",759.691+760.311,0.581749:C,"yesterday","yesterday",760.311+760.606,0.581734:D,"it",,,:S,"was","is",760.606+760.901,0.581734:S,"three","this",760.901+761.061,0.937577:S,"the","week",761.201+761.561,0.919985:S,"day","if",761.751+761.851,0.262783:C,"before","before",761.851+762.151,0.264386:D,"it",,,:S,"was","fourth",762.151+762.281,0.217648:S,"two","just",762.281+762.451,0.483446:S,"the","to",762.451+762.841,0.954384:S,"day","take",762.911+763.141,0.886374:C,"before","before",763.141+763.491,0.995384:D,"it",,,:S,"was","this",763.491+763.651,0.977156:C,"one","one",763.651+763.851,0.999992:D,"so",,,:C,"(ther-)","",,:D,"it",,,:D,"is",,,:C,"one","one",764.331+764.561,0.998825:C,"a","a",764.561+764.621,0.820264:C,"day","day",764.691+765.001,0.915037
</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-200)" word_cnt="1" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3326" R_T1="781.255" R_T2="782.180" word_aux="h_t1+t2,h_conf">
S,"exit","and",781.460+781.650,0.999999
</PATH>
<PATH id="(019-201)" word_cnt="9" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3329" R_T1="783.230" R_T2="786.180" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:D,"we",,,:S,"do","and",783.510+783.670,1.000000:S,"not","the",784.100+784.390,0.936028:S,"need","reason",784.390+784.640,0.396540:S,"one","is",784.640+784.920,0.396540:S,"of","standing",784.920+785.550,0.384779:S,"these","as",785.550+785.610,0.997768:S,"guys","as",785.610+785.770,0.997768
</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="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-036)" word_cnt="0" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3091" R_T1="395.755" R_T2="398.705" word_aux="h_t1+t2,h_conf">
</PATH>
<PATH id="(040-039)" word_cnt="7" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3106" R_T1="423.830" R_T2="426.030" word_aux="h_t1+t2,h_conf">
D,"if",,,:D,"we",,,:S,"had","to",424.341+424.421,0.367907:S,"science","find",424.561+424.861,0.692716:S,"stories","stores",424.861+425.371,1.000000:S,"that","those",425.371+425.551,0.995137:S,"last","gloves",425.551+426.021,0.754659
</PATH>
<PATH id="(040-048)" word_cnt="1" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3166" R_T1="517.905" R_T2="518.530" word_aux="h_t1+t2,h_conf">
D,"and",,,
</PATH>
<PATH id="(040-049)" word_cnt="5" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3168" R_T1="519.355" R_T2="520.555" word_aux="h_t1+t2,h_conf">
D,"no",,,:D,"e.",,,:D,"on",,,:D,"the",,,:D,"end",,,
</PATH>
<PATH id="(040-051)" word_cnt="1" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3174" R_T1="525.455" R_T2="526.755" word_aux="h_t1+t2,h_conf">
C,"yeah","yeah",526.100+526.270,0.534085
</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-069)" word_cnt="6" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3277" R_T1="676.805" R_T2="679.355" word_aux="h_t1+t2,h_conf">
D,"%hesitation",,,:D,"what",,,:D,"else",,,:D,"is",,,:D,"down",,,:D,"here",,,
</PATH>
<PATH id="(040-070)" word_cnt="4" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3289" R_T1="703.855" R_T2="705.030" word_aux="h_t1+t2,h_conf">
D,"i",,,:D,"do",,,:D,"not",,,:S,"know","and",704.140+704.670,0.999244
</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="025">
<PATH id="(025-009)" word_cnt="1" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="2986" R_T1="219.505" R_T2="220.280" word_aux="h_t1+t2,h_conf">
S,"%bcack","it",220.901+221.071,0.664593
</PATH>
<PATH id="(025-010)" word_cnt="1" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="2987" R_T1="220.405" R_T2="221.505" word_aux="h_t1+t2,h_conf">
S,"yeah","been",221.391+221.511,0.999458
</PATH>
<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>
<PATH id="(025-034)" word_cnt="6" labels="<O,FEMALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3228" R_T1="607.955" R_T2="609.405" word_aux="h_t1+t2,h_conf">
C,"(no)","",,:D,"it",,,:S,"is","what",608.120+608.370,0.918657:C,"kind","kind",608.370+608.490,0.830270:C,"of","of",608.600+608.680,0.844465:S,"big","bad",608.680+608.850,0.561486
</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-019)" word_cnt="5" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3000" R_T1="245.355" R_T2="246.905" word_aux="h_t1+t2,h_conf">
D,"what",,,:D,"else",,,:D,"do",,,:D,"we",,,:D,"have",,,
</PATH>
<PATH id="(058-020)" word_cnt="4" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3002" R_T1="247.055" R_T2="249.555" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:S,"treason","next",246.591+246.881,0.577167:S,"at","one",246.881+247.081,0.984409:S,"gitmo","on",247.201+247.501,0.677746
</PATH>
<PATH id="(058-037)" word_cnt="12" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3045" R_T1="315.355" R_T2="320.355" word_aux="h_t1+t2,h_conf">
D,"they",,,:D,"found",,,:C,"(%hesitation)","",,:D,"i",,,:D,"guess",,,:S,"some","well",316.200+316.540,0.694032:S,"more","the",316.540+316.660,0.935667:S,"traces","tickets",316.910+317.240,0.386709:C,"or","or",317.630+317.850,0.316899:C,"(urf-)","",,:S,"refined","of",318.060+318.160,0.884860:C,"(%hesitation)","",,
</PATH>
<PATH id="(058-038)" word_cnt="5" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3047" R_T1="320.355" R_T2="322.005" word_aux="h_t1+t2,h_conf">
D,"u.",,,:D,"two",,,:D,"thirty",,,:S,"five","you",320.490+320.660,0.398142:S,"there","have",320.860+321.100,0.594057
</PATH>
<PATH id="(058-048)" word_cnt="2" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3095" R_T1="408.055" R_T2="410.255" word_aux="h_t1+t2,h_conf">
S,"faked","how",406.950+407.090,0.968311:S,"cancer","the",408.540+408.710,0.644520
</PATH>
<PATH id="(058-058)" word_cnt="5" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3125" R_T1="452.755" R_T2="455.355" word_aux="h_t1+t2,h_conf">
D,"we",,,:D,"have",,,:D,"six",,,:D,"so",,,:D,"far",,,
</PATH>
<PATH id="(058-063)" word_cnt="8" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3133" R_T1="473.680" R_T2="477.805" word_aux="h_t1+t2,h_conf">
D,"we",,,:D,"can",,,:S,"put","what",474.571+474.771,0.999986:S,"designators","does",474.861+474.991,0.998867:C,"this","this",474.991+475.111,0.540394:S,"this","that",476.871+477.021,1.000000:C,"is","is",477.021+477.171,1.000000:D,"national",,,
</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-065)" word_cnt="2" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3138" R_T1="481.505" R_T2="482.380" word_aux="h_t1+t2,h_conf">
S,"treason","choosing",481.681+482.131,0.914818:D,"at",,,
</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-074)" word_cnt="1" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3165" R_T1="517.230" R_T2="518.005" word_aux="h_t1+t2,h_conf">
D,"i.",,,
</PATH>
<PATH id="(058-075)" word_cnt="2" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3167" R_T1="518.755" R_T2="519.605" word_aux="h_t1+t2,h_conf">
S,"like","but",518.941+519.081,0.999690:S,"that","but",519.141+519.261,0.999995
</PATH>
<PATH id="(058-076)" word_cnt="2" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3169" R_T1="519.930" R_T2="520.780" word_aux="h_t1+t2,h_conf">
S,"no","do",519.931+520.181,0.828948:S,"e.","be",520.291+520.481,0.953799
</PATH>
<PATH id="(058-078)" word_cnt="1" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3173" R_T1="524.230" R_T2="525.755" word_aux="h_t1+t2,h_conf">
S,"tony","them",524.461+524.721,0.318327
</PATH>
<PATH id="(058-083)" word_cnt="18" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3184" R_T1="535.455" R_T2="540.730" word_aux="h_t1+t2,h_conf">
D,"well",,,:D,"they",,,:D,"were",,,:C,"(%hesitation)","",,:C,"(e-)","",,:C,"(e-)","",,:D,"well",,,:D,"i",,,:D,"saw",,,:D,"them",,,:D,"recently",,,:D,"on",,,:D,"on",,,:D,"the",,,:C,"(%hesitation)","",,:C,"the","the",535.950+536.010,0.207953:S,"the","anyway",536.010+536.460,0.380135:C,"(%hesitation)","",,
</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-118)" word_cnt="10" labels="<O,MALE,N2>" file="NIST_20030925-1517_D_NONE" channel="1" sequence="3290" R_T1="705.780" R_T2="711.105" word_aux="h_t1+t2,h_conf">
C,"(%hesitation)","",,:S,"being","i",706.680+706.740,0.851312:C,"i","i",706.740+706.780,0.998672:C,"think","think",707.620+707.840,1.000000:C,"is","is",707.920+708.000,1.000000:D,"probably",,,:D,"a",,,:D,"little",,,:S,"bit","the",709.300+709.400,1.000000:S,"soon","same",709.540+709.960,1.000000
</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>
</SYSTEM>