-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_topic.csv
We can't make this file beautiful and searchable because it's too large.
1001 lines (1001 loc) · 913 KB
/
main_topic.csv
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
,Unnamed: 0,email_id,content,topics,main_topic,probability
0,0,1,"['here', 'forecast']","[('here', 0.5), ('forecast', 0.5)]",here,0.
1,1,2,"['travel', 'busi', 'meet', 'take', 'fun', 'trip', 'especi', 'prepar', 'present', 'I', 'would', 'suggest', 'hold', 'busi', 'plan', 'meet', 'take', 'trip', 'without', 'formal', 'busi', 'meet', 'I', 'would', 'even', 'tri', 'get', 'honest', 'opinion', 'whether', 'trip', 'even', 'desir', 'necessari', 'As', 'far', 'busi', 'meet', 'I', 'think', 'would', 'product', 'tri', 'stimul', 'discuss', 'across', 'differ', 'group', 'work', 'too', 'often', 'present', 'speak', 'other', 'quiet', 'wait', 'turn', 'the', 'meet', 'might', 'better', 'held', 'round', 'tabl', 'discuss', 'format', 'My', 'suggest', 'go', 'austin', 'play', 'golf', 'rent', 'ski', 'boat', 'jet', 'ski', 'fli', 'somewher', 'take', 'much', 'time']","[('meet', 0.04195815), ('busi', 0.034965113), ('I', 0.02797207), ('take', 0.02797207), ('trip', 0.02797207), ('would', 0.02797207), ('ski', 0.020979036), ('discuss', 0.020979036), ('suggest', 0.020979036), ('even', 0.020979036)]",meet,0.0419581
2,2,3,"['test', 'success', 'way', 'go']","[('test', 0.25), ('success', 0.25), ('way', 0.25), ('go', 0.25)]",test,0.2
3,3,4,"['randi', 'can', 'send', 'schedul', 'salari', 'level', 'everyon', 'schedul', 'group', 'plu', 'thought', 'chang', 'need', 'made', 'patti', 'S', 'exampl', 'phillip']","[('schedul', 0.08571431), ('chang', 0.057142857), ('plu', 0.057142857), ('exampl', 0.057142857), ('S', 0.057142857), ('patti', 0.057142857), ('made', 0.057142857), ('need', 0.057142857), ('randi', 0.057142857), ('thought', 0.057142857)]",schedul,0.0857143
4,4,5,"['let', 'shoot', 'tuesday', '1145']","[('let', 0.25), ('shoot', 0.25), ('tuesday', 0.25), ('1145', 0.25)]",let,0.2
5,5,6,"['greg', 'how', 'either', 'next', 'tuesday', 'thursday', 'phillip']","[('greg', 0.14285715), ('how', 0.14285715), ('either', 0.14285715), ('next', 0.14285715), ('tuesday', 0.14285715), ('thursday', 0.14285715), ('phillip', 0.14285715)]",greg,0.1428571
6,6,7,"['pleas', 'cc', 'follow', 'distribut', 'list', 'updat', 'phillip', 'allen', 'pallenenroncom', 'mike', 'grigsbi', 'mikegrigsbyenroncom', 'keith', 'holst', 'kholstenroncom', 'moniqu', 'sanchez', 'frank', 'ermi', 'john', 'lavorato', 'thank', 'help', 'phillip', 'allen']","[('phillip', 0.06250001), ('allen', 0.06250001), ('ermi', 0.04166666), ('moniqu', 0.04166666), ('sanchez', 0.04166666), ('frank', 0.04166666), ('holst', 0.04166666), ('thank', 0.04166666), ('lavorato', 0.04166666), ('mikegrigsbyenroncom', 0.04166666)]",phillip,0.0625000
7,7,8,"['morn', '10', '1130']","[('morn', 0.33333334), ('10', 0.33333334), ('1130', 0.33333334)]",morn,0.3333333
8,8,9,"['1', 'login', 'pallen', 'pw', 'ke9davi', 'I', 'dont', 'think', 'requir', 'isp', '2', 'static', 'IP', 'address', 'IP', '6421690105', 'sub', '255255255248', 'gate', '6421690110', 'dn', '15116418', '3', 'compani', '0413', 'RC', '105891']","[('IP', 0.0566038), ('dn', 0.03773585), ('3', 0.03773585), ('255255255248', 0.03773585), ('gate', 0.03773585), ('6421690110', 0.03773585), ('6421690105', 0.03773585), ('RC', 0.03773585), ('0413', 0.03773585), ('15116418', 0.03773585)]",IP,0.056603
9,9,10,"['phillip', 'As', 'discuss', 'phone', 'convers', 'In', 'parallon', '75', 'microturbin', 'power', 'gener', 'deal', 'nation', 'account', 'custom', 'I', 'develop', 'propos', 'sell', 'power', 'custom', 'fix', 'collarfloor', 'price', 'To', 'I', 'need', 'correspond', 'term', 'ga', 'price', 'microturbin', 'onsit', 'gener', 'product', 'develop', 'honeywel', 'gener', 'electr', 'custom', 'site', 'degen', 'use', 'natur', 'ga', 'In', 'I', 'need', 'best', 'fix', 'price', 'forward', 'ga', 'price', 'deal', '1', '3', '5', '7', '10', 'year', 'annualseason', 'suppli', 'microturbin', 'gener', 'fix', 'kwh', 'custom', 'We', 'opportun', 'sell', 'custom', 'kwh', 'use', 'microturbin', 'sell', 'turbin', 'kwh', 'deal', 'must', 'limit', 'risk', 'forward', 'ga', 'price', 'make', 'deal', 'work', 'therein', 'come', 'sempra', 'energi', 'ga', 'trade', 'truli', 'We', 'propos', 'instal', '180', '240', 'unit', 'across', 'larg', 'number', 'store', '60100', 'san', 'diego', 'store', 'number', 'vari', 'instal', 'hurdl', 'face', 'small', 'percent', 'for', '68', 'hour', 'day', 'microturbin', 'run', 'time', 'ga', 'requir', '180', 'microturbin', '227', '302', 'mmcf', 'per', 'year', 'ga', 'requir', '240', 'microturbin', '302', '403', 'mmcf', 'per', 'year', 'ga', 'like', 'consum', 'may', 'septemb', 'peak', 'electr', 'period', 'ga', 'price', 'requir', 'burnertip', 'price', 'behind', 'ldc', 'san', 'diego', 'ga', 'electr', 'need', 'detail', 'breakout', 'commod', 'transport', 'cost', 'firm', 'interrupt', 'should', 'addit', 'question', 'give', 'call', 'let', 'assur', 'real', 'deal', 'buck', 'buckner', 'PE', 'mba', 'manag', 'busi', 'develop', 'plan', 'big', 'box', 'retail', 'sale', 'honeywel', 'power', 'system', 'inc', '8725', 'pan', 'american', 'frwi', 'albuquerqu', 'NM', '87113', '5057986424', '5057986050x', '5052204129', '8885013145']","[('ga', 0.032353193), ('microturbin', 0.023529567), ('price', 0.023529567), ('custom', 0.017647147), ('deal', 0.017647147), ('gener', 0.014705942), ('I', 0.011764738), ('year', 0.011764738), ('fix', 0.011764738), ('develop', 0.011764738)]",ga,0.03235319
10,10,11,"['Mr', 'buckner', 'for', 'deliv', 'ga', 'behind', 'san', 'diego', 'enron', 'energi', 'servic', 'appropri', 'enron', 'entiti', 'I', 'forward', 'request', 'zarin', 'imam', 'ee', 'her', 'phone', 'number', '7138537107', 'phillip', 'allen']","[('enron', 0.05882355), ('ee', 0.039215684), ('phone', 0.039215684), ('zarin', 0.039215684), ('imam', 0.039215684), ('forward', 0.039215684), ('her', 0.039215684), ('phillip', 0.039215684), ('7138537107', 0.039215684), ('entiti', 0.039215684)]",enron,0.0588235
11,11,12,"['luci', 'here', 'rentrol', 'open', 'save', 'rentrol', 'folder', 'follow', 'step', 'dont', 'misplac', 'file', '1', 'click', 'save', 'As', '2', 'click', 'drop', 'triangl', 'save', '3', 'click', 'C', 'drive', '4', 'click', 'appropri', 'folder', '5', 'click', 'save', 'phillip']","[('click', 0.105263256), ('save', 0.087719366), ('rentrol', 0.052631594), ('folder', 0.052631594), ('C', 0.035087712), ('triangl', 0.035087712), ('3', 0.035087712), ('drop', 0.035087712), ('drive', 0.035087712), ('1', 0.035087712)]",click,0.10526325
12,12,13,"['onsolid', 'posit', 'issu', 'To', 'Do', 'list', 'phillip', 'below', 'issu', 'list', 'go', 'forward', 'document', 'requir', 'consolid', 'physicalfinanci', 'posit', 'transport', 'trade', 'captur', 'what', 'need', 'focu', 'first', 'bullet', 'allan', 'list', 'need', 'singl', 'set', 'requir', 'although', 'meet', 'keith', 'wednesday', 'inform', 'solut', 'creat', 'infinit', 'dynam', 'consolid', 'posit', 'screen', 'extrem', 'difficult', 'time', 'consum', 'throughout', 'meet', 'wednesday', 'keith', 'allud', 'inabl', 'get', 'consensu', 'amongst', 'trader', 'present', 'consolid', 'posit', 'solut', 'make', 'trader', 'arrang', 'posit', 'screen', 'like', 'much', 'like', 'excel', 'what', 'need', 'happen', 'monday', '3', '5', 'effort', 'design', 'desir', 'layout', 'consolid', 'posit', 'screen', 'critic', 'thi', 'exclud', 'build', 'capabl', 'creat', 'flexibl', 'posit', 'present', 'futur', 'order', 'creat', 'plan', 'measur', 'need', 'firm', 'requir', 'also', 'reiter', 'goal', 'project', 'project', 'plan', 'consolid', 'physicalfinanci', 'posit', 'transport', 'trade', 'captur', 'the', 'issu', 'rais', 'captur', 'project', 'need', 'prioritis', 'effort', 'outsid', 'project', 'I', 'involv', 'meet', 'discuss', 'good', 'I', 'believ', 'good', 'commun', 'team', 'need', 'focu', 'object', 'set', 'solv', 'richard', 'forward', 'richard', 'burchfieldhouect', '10062000', '0834', 'AM', 'allan', 'severud', '10052000', '0603', 'PM', 'To', 'richard', 'burchfieldhouectect', 'cc', 'peggi', 'alixhouectect', 'russ', 'seversonhouectect', 'scott', 'millshouectect', 'kenni', 'hahouectect', 'subject', 'consolid', 'posit', 'issu', 'To', 'Do', 'list', 'from', 'initi', 'set', 'meet', 'trader', 'regard', 'consolid', 'posit', 'I', 'think', 'still', 'follow', 'issu', 'We', 'dont', 'singl', 'point', 'contact', 'trade', 'group', 'weve', 'three', 'meet', 'brought', 'differ', 'issu', 'differ', 'trader', 'We', 'realli', 'need', 'singl', 'point', 'contact', 'help', 'drive', 'trader', 'requir', 'help', 'come', 'consensu', 'regard', 'requir', 'were', 'get', 'hit', 'lot', 'differ', 'request', 'mani', 'appear', 'outsid', 'scope', 'posit', 'consolid', 'thing', 'left', 'I', 'think', 'may', 'use', 'tri', 'formul', 'high', 'level', 'project', 'goal', 'make', 'clear', 'possibl', 'tri', 'accomplish', 'project', 'itll', 'help', 'determin', 'request', 'fall', 'project', 'scope', 'Go', 'list', 'request', 'determin', 'scope', 'project', 'fall', 'scope', 'for', 'scope', 'work', 'defin', 'rel', 'import', 'prioriti', 'work', 'trader', 'defin', 'exact', 'requir', 'defin', 'desir', 'lay', 'posit', 'manag', 'screen', 'main', 'view', 'drill', 'down', 'use', 'formul', 'project', 'plan', 'thing', 'request', 'thu', 'far', 'particular', 'order', 'inclus', 'sitara', 'physic', 'deal', 'td', 'posit', 'manag', 'deal', 'ticker', 'custom', 'row', 'column', 'posit', 'manag', 'ad', 'hoc', 'rowscolumn', 'add', 'exist', 'posit', 'manag', 'rowscolumn', 'new', 'drill', 'posit', 'manag', 'break', 'posit', 'physic', 'transport', 'swap', 'option', 'addit', 'curv', 'tab', 'posit', 'manag', 'show', 'realtim', 'valu', 'curv', 'desk', 'posit', 'abil', 'split', 'current', 'posit', 'grid', 'allow', 'daili', 'posit', 'shown', 'directli', 'monthli', 'posit', 'each', 'group', 'column', 'top', 'grid', 'would', 'tie', 'group', 'column', 'bottom', 'grid', 'abil', 'properli', 'show', 'curv', 'shift', 'floatforfloat', 'deal', 'determin', 'appropri', 'posit', 'show', 'ga', 'daili', 'monthli', 'index', 'physic', 'ga', 'nymex', 'physic', 'ga', 'insid', 'ferc', 'physic', 'ga', 'mid', 'market', 'abil', 'td', 'pull', 'valuat', 'result', 'base', 'td', 'flag', 'instead', 'use', 'offici', 'valuat', 'posit', 'PL', 'aggreg', 'across', 'ga', 'desk', 'abil', 'includ', 'ga', 'price', 'book', 'td', 'inclus', 'spread', 'option', 'system', 'abil', 'handl', 'volatil', 'skew', 'correl', 'abil', 'revalu', 'option', 'increment', 'throughout', 'trade', 'day', 'approxim', 'delta', 'chang', 'valuat', 'use', 'instantan', 'gamma', 'gamma', 'grid', 'valuat', 'ga', 'daili', 'option', 'A', 'new', 'posit', 'screen', 'option', 'month', 'x', 'strike', 'x', 'delta', 'tbd', 'inclus', 'posit', 'exot', 'option', 'current', 'manag', 'spreadsheet', 'abil', 'isol', 'posit', 'chang', 'due', 'chang', 'deal', 'posit', 'manag', 'abil', 'view', 'chang', 'deal', 'PL', 'td', 'deal', 'ticker', 'show', 'new', 'deal', 'term', 'prior', 'deal', 'term', 'net', 'PL', 'affect', 'chang', 'elimin', 'chang', 'deal', 'econom', 'impact', 'td', 'deal', 'ticker', 'posit', 'drill', 'posit', 'manag', 'isol', 'impact', 'individu', 'deal', 'posit', 'total', 'grid', 'cell', 'benchmark', 'posit', 'td', 'deploy', 'td', 'canada', 'currenc', 'volum', 'uom', 'convers', 'implicit', 'explicit', 'posit', 'break', 'issu', 'allan', 'PS', 'colleen', 'set', 'meet', 'tomorrow', 'discu', 'direct', 'transport', 'hope', 'well', 'know', 'much', 'better', 'part', 'stand', 'point']","[('posit', 0.041872792), ('deal', 0.014778567), ('project', 0.012315452), ('manag', 0.012315452), ('abil', 0.011083897), ('td', 0.011083897), ('consolid', 0.011083897), ('issu', 0.009852343), ('ga', 0.009852342), ('need', 0.009852342)]",posit,0.04187279
13,13,14,"['onsolid', 'posit', 'issu', 'To', 'Do', 'list', 'phillip', 'below', 'issu', 'list', 'go', 'forward', 'document', 'requir', 'consolid', 'physicalfinanci', 'posit', 'transport', 'trade', 'captur', 'what', 'need', 'focu', 'first', 'bullet', 'allan', 'list', 'need', 'singl', 'set', 'requir', 'although', 'meet', 'keith', 'wednesday', 'inform', 'solut', 'creat', 'infinit', 'dynam', 'consolid', 'posit', 'screen', 'extrem', 'difficult', 'time', 'consum', 'throughout', 'meet', 'wednesday', 'keith', 'allud', 'inabl', 'get', 'consensu', 'amongst', 'trader', 'present', 'consolid', 'posit', 'solut', 'make', 'trader', 'arrang', 'posit', 'screen', 'like', 'much', 'like', 'excel', 'what', 'need', 'happen', 'monday', '3', '5', 'effort', 'design', 'desir', 'layout', 'consolid', 'posit', 'screen', 'critic', 'thi', 'exclud', 'build', 'capabl', 'creat', 'flexibl', 'posit', 'present', 'futur', 'order', 'creat', 'plan', 'measur', 'need', 'firm', 'requir', 'also', 'reiter', 'goal', 'project', 'project', 'plan', 'consolid', 'physicalfinanci', 'posit', 'transport', 'trade', 'captur', 'the', 'issu', 'rais', 'captur', 'project', 'need', 'prioritis', 'effort', 'outsid', 'project', 'I', 'involv', 'meet', 'discuss', 'good', 'I', 'believ', 'good', 'commun', 'team', 'need', 'focu', 'object', 'set', 'solv', 'richard', 'forward', 'richard', 'burchfieldhouect', '10062000', '0834', 'AM', 'allan', 'severud', '10052000', '0603', 'PM', 'To', 'richard', 'burchfieldhouectect', 'cc', 'peggi', 'alixhouectect', 'russ', 'seversonhouectect', 'scott', 'millshouectect', 'kenni', 'hahouectect', 'subject', 'consolid', 'posit', 'issu', 'To', 'Do', 'list', 'from', 'initi', 'set', 'meet', 'trader', 'regard', 'consolid', 'posit', 'I', 'think', 'still', 'follow', 'issu', 'We', 'dont', 'singl', 'point', 'contact', 'trade', 'group', 'weve', 'three', 'meet', 'brought', 'differ', 'issu', 'differ', 'trader', 'We', 'realli', 'need', 'singl', 'point', 'contact', 'help', 'drive', 'trader', 'requir', 'help', 'come', 'consensu', 'regard', 'requir', 'were', 'get', 'hit', 'lot', 'differ', 'request', 'mani', 'appear', 'outsid', 'scope', 'posit', 'consolid', 'thing', 'left', 'I', 'think', 'may', 'use', 'tri', 'formul', 'high', 'level', 'project', 'goal', 'make', 'clear', 'possibl', 'tri', 'accomplish', 'project', 'itll', 'help', 'determin', 'request', 'fall', 'project', 'scope', 'Go', 'list', 'request', 'determin', 'scope', 'project', 'fall', 'scope', 'for', 'scope', 'work', 'defin', 'rel', 'import', 'prioriti', 'work', 'trader', 'defin', 'exact', 'requir', 'defin', 'desir', 'lay', 'posit', 'manag', 'screen', 'main', 'view', 'drill', 'down', 'use', 'formul', 'project', 'plan', 'thing', 'request', 'thu', 'far', 'particular', 'order', 'inclus', 'sitara', 'physic', 'deal', 'td', 'posit', 'manag', 'deal', 'ticker', 'custom', 'row', 'column', 'posit', 'manag', 'ad', 'hoc', 'rowscolumn', 'add', 'exist', 'posit', 'manag', 'rowscolumn', 'new', 'drill', 'posit', 'manag', 'break', 'posit', 'physic', 'transport', 'swap', 'option', 'addit', 'curv', 'tab', 'posit', 'manag', 'show', 'realtim', 'valu', 'curv', 'desk', 'posit', 'abil', 'split', 'current', 'posit', 'grid', 'allow', 'daili', 'posit', 'shown', 'directli', 'monthli', 'posit', 'each', 'group', 'column', 'top', 'grid', 'would', 'tie', 'group', 'column', 'bottom', 'grid', 'abil', 'properli', 'show', 'curv', 'shift', 'floatforfloat', 'deal', 'determin', 'appropri', 'posit', 'show', 'ga', 'daili', 'monthli', 'index', 'physic', 'ga', 'nymex', 'physic', 'ga', 'insid', 'ferc', 'physic', 'ga', 'mid', 'market', 'abil', 'td', 'pull', 'valuat', 'result', 'base', 'td', 'flag', 'instead', 'use', 'offici', 'valuat', 'posit', 'PL', 'aggreg', 'across', 'ga', 'desk', 'abil', 'includ', 'ga', 'price', 'book', 'td', 'inclus', 'spread', 'option', 'system', 'abil', 'handl', 'volatil', 'skew', 'correl', 'abil', 'revalu', 'option', 'increment', 'throughout', 'trade', 'day', 'approxim', 'delta', 'chang', 'valuat', 'use', 'instantan', 'gamma', 'gamma', 'grid', 'valuat', 'ga', 'daili', 'option', 'A', 'new', 'posit', 'screen', 'option', 'month', 'x', 'strike', 'x', 'delta', 'tbd', 'inclus', 'posit', 'exot', 'option', 'current', 'manag', 'spreadsheet', 'abil', 'isol', 'posit', 'chang', 'due', 'chang', 'deal', 'posit', 'manag', 'abil', 'view', 'chang', 'deal', 'PL', 'td', 'deal', 'ticker', 'show', 'new', 'deal', 'term', 'prior', 'deal', 'term', 'net', 'PL', 'affect', 'chang', 'elimin', 'chang', 'deal', 'econom', 'impact', 'td', 'deal', 'ticker', 'posit', 'drill', 'posit', 'manag', 'isol', 'impact', 'individu', 'deal', 'posit', 'total', 'grid', 'cell', 'benchmark', 'posit', 'td', 'deploy', 'td', 'canada', 'currenc', 'volum', 'uom', 'convers', 'implicit', 'explicit', 'posit', 'break', 'issu', 'allan', 'PS', 'colleen', 'set', 'meet', 'tomorrow', 'discu', 'direct', 'transport', 'hope', 'well', 'know', 'much', 'better', 'part', 'stand', 'point']","[('posit', 0.041872792), ('deal', 0.014778567), ('manag', 0.012315454), ('project', 0.012315452), ('td', 0.011083897), ('consolid', 0.011083897), ('abil', 0.011083897), ('issu', 0.009852343), ('ga', 0.009852342), ('need', 0.009852342)]",posit,0.04187279
14,14,15,"['dave', 'here', 'name', 'west', 'desk', 'member', 'categori', 'the', 'origin', 'side', 'spars', 'phillip']","[('the', 0.08333334), ('member', 0.08333334), ('spars', 0.08333334), ('side', 0.08333334), ('origin', 0.08333334), ('dave', 0.08333334), ('categori', 0.08333334), ('name', 0.08333334), ('west', 0.08333334), ('here', 0.08333334)]",the,0.0833333
15,15,16,"['paula', '35', 'million', 'fine', 'phillip']","[('paula', 0.2), ('35', 0.2), ('million', 0.2), ('fine', 0.2), ('phillip', 0.2)]",paula,0.
16,16,17,"['north', 'america', 'corp', 'from', 'airam', 'arteaga', '10042000', '1223', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'thoma', 'A', 'martinhouectect', 'scott', 'nealhouectect', 'john', 'arnoldhouectect', 'grant', 'massonhouectect', 'ted', 'murphyhouectect', 'vladimir', 'gornyhouectect', 'frank', 'haydencorpenronenron', 'cc', 'rita', 'hennessynaenronenron', 'ina', 'rangelhouectect', 'laura', 'hardercorpenronenron', 'kimberli', 'brownhouectect', 'arac', 'romeronaenronenron', 'kimberli', 'hillishouectect', 'subject', 'var', 'report', 'resourc', 'meet', 'pleas', 'plan', 'attend', 'meet', 'topic', 'var', 'report', 'resourc', 'meet', 'date', 'wednesday', 'octob', '11th', 'time', '230', '330', 'locat', 'eb30c1', 'If', 'questionsconflict', 'pleas', 'feel', 'free', 'call', 'thank', 'rain', 'x31560']","[('meet', 0.028777028), ('report', 0.02158275), ('var', 0.02158275), ('pleas', 0.02158275), ('resourc', 0.02158275), ('kimberli', 0.02158275), ('attend', 0.014388487), ('plan', 0.014388487), ('date', 0.014388487), ('brownhouectect', 0.014388487)]",meet,0.02877702
17,17,18,"['tim', 'mike', 'grigsbi', 'problem', 'access', 'west', 'power', 'site', 'can', 'pleas', 'make', 'sure', 'activ', 'password', 'thank', 'phillip']","[('pleas', 0.0625), ('site', 0.0625), ('thank', 0.0625), ('password', 0.0625), ('activ', 0.0625), ('sure', 0.0625), ('make', 0.0625), ('tim', 0.0625), ('can', 0.0625), ('access', 0.0625)]",pleas,0.062
18,18,19,"['westgat', 'enclos', 'demograph', 'westgat', 'site', 'investor', 'allianc', 'investor', 'allianc', 'say', 'demograph', 'similar', 'packag', 'san', 'marco', 'receiv', 'earlier', 'If', 'question', 'inform', 'requir', 'let', 'know', 'then', 'let', 'know', 'interest', 'level', 'westgat', 'project', 'san', 'marco', 'the', 'properti', 'across', 'street', 'sagewood', 'unit', 'san', 'marco', 'sale', 'approv', '134', 'unit', 'the', 'land', 'sell', '250', 'per', 'squar', 'foot', 'one', 'two', 'remain', 'approv', 'multifamili', 'parcel', 'west', 'san', 'marco', 'moratorium', 'develop', 'sever', 'new', 'studi', 'look', 'show', 'rent', 'duplex', 'new', 'unit', 'go', 'significantli', 'higher', 'roughli', '125', 'per', 'squar', 'foot', 'leas', 'entir', 'unit', '12month', 'leas', '130140', 'psf', 'leas', '12month', 'term', 'individu', 'room', 'thi', 'properti', 'best', 'locat', 'student', 'hous', 'new', 'project', 'duplex', 'If', 'project', 'seriou', 'interest', 'pleas', 'let', 'know', 'short', 'window', 'opportun', 'the', 'equiti', 'requir', 'yet', 'known', 'would', 'like', '300000', 'secur', 'land', 'I', 'know', 'question', 'later', 'today', 'sincer', 'georg', 'W', 'richard', 'presid', 'creeksid', 'builder', 'llc', 'winmaildat']","[('san', 0.021834128), ('unit', 0.021834128), ('know', 0.021834128), ('marco', 0.021834128), ('new', 0.01746728), ('leas', 0.01746728), ('the', 0.01746728), ('project', 0.01746728), ('let', 0.01746728), ('westgat', 0.01746728)]",san,0.02183412
19,19,20,"['there', 'meet', 'tuesday', 'oct', '10th', '400pm', 'eb3270', 'regard', 'storag', 'strategi', 'west', 'pleas', 'mark', 'calendar', 'thank', 'regard', 'nanci', 'hall', 'ena', 'denver', 'offic', '3035756490']","[('regard', 0.06976745), ('mark', 0.046511624), ('west', 0.046511624), ('offic', 0.046511624), ('denver', 0.046511624), ('ena', 0.046511624), ('hall', 0.046511624), ('nanci', 0.046511624), ('thank', 0.046511624), ('calendar', 0.046511624)]",regard,0.0697674
20,20,21,"['brenda', 'pleas', 'use', 'second', 'check', 'octob', 'payment', 'If', 'alreadi', 'toss', 'let', 'know', 'I', 'mail', 'anoth', 'phillip']","[('toss', 0.0625), ('If', 0.0625), ('anoth', 0.0625), ('mail', 0.0625), ('I', 0.0625), ('know', 0.0625), ('let', 0.0625), ('brenda', 0.0625), ('alreadi', 0.0625), ('check', 0.0625)]",toss,0.062
21,21,22,"['I', 'think', 'fletch', 'good', 'cpa', 'I', 'still']","[('I', 0.23076926), ('think', 0.15384614), ('fletch', 0.15384614), ('good', 0.15384614), ('cpa', 0.15384614), ('still', 0.15384614)]",I,0.2307692
22,22,23,"['brenda', 'pleas', 'use', 'second', 'check', 'octob', 'payment', 'I', 'copi', 'origin', 'deal', 'Do', 'want', 'fax', 'phillip']","[('copi', 0.06666667), ('I', 0.06666667), ('fax', 0.06666667), ('want', 0.06666667), ('Do', 0.06666667), ('deal', 0.06666667), ('origin', 0.06666667), ('brenda', 0.06666667), ('check', 0.06666667), ('second', 0.06666667)]",copi,0.0666666
23,23,110,"['colleen', 'I', 'ot', 'offic', 'friday', 'keith', 'holst', 'attend', 'He', 'manag', 'transport', 'west', 'desk', 'phillip']","[('He', 0.07142858), ('holst', 0.07142858), ('desk', 0.07142858), ('west', 0.07142858), ('transport', 0.07142858), ('manag', 0.07142858), ('colleen', 0.07142858), ('attend', 0.07142858), ('ot', 0.07142858), ('friday', 0.07142858)]",He,0.0714285
24,24,24,"['oncern', 'may', 'attempt', 'manipul', 'El', 'paso', 'san', 'juan', 'monthli', 'index', 'It', 'appear', 'singl', 'buyer', 'enter', 'marketplac', 'septemb', '26', '27', 'paid', 'market', 'price', '470480', 'san', 'juan', 'ga', 'At', 'time', 'trade', 'offer', 'physic', 'ga', 'significantli', '10', '15', 'cent', 'lower', 'price', 'bypass', 'order', 'establish', 'higher', 'trade', 'report', 'index', 'calcul', 'addit', 'trade', 'line', 'associ', 'financi', 'swap', 'san', 'juan', 'We', 'compil', 'list', 'financi', 'physic', 'trade', 'execut', 'septemb', '25', 'septemb', '27', 'these', 'complet', 'list', 'trade', 'enron', 'onlin', 'eol', 'enron', 'direct', 'phone', 'convers', 'three', 'brokerag', 'firm', 'amerex', 'apb', 'prebon', 'pleas', 'see', 'attach', 'spreadsheet', 'trade', 'trade', 'list', 'summari', 'We', 'also', 'includ', 'summari', 'ga', 'daili', 'price', 'illustr', 'valu', 'san', 'juan', 'base', 'sever', 'spread', 'relationship', 'the', 'two', 'key', 'point', 'data', 'follow', '1', 'the', 'high', 'physic', 'price', '26th', '27th', '475480', 'much', 'greater', 'high', 'financi', 'trade', '463754665', 'day', '2', 'the', 'spread', 'relationship', 'san', 'juan', 'point', 'socal', 'northwest', 'consist', 'end', 'septemb', 'octob', 'ga', 'daili', 'It', 'doesnt', 'make', 'sens', 'monthli', 'index', 'dramat', 'differ', 'I', 'understand', 'review', 'trade', 'submit', 'outlier', 'hope', 'trade', 'submit', 'reveal', 'counterparti', 'name', 'abl', 'determin', 'one', 'buyer', '470', 'trade', 'outlier', 'I', 'want', 'give', 'addit', 'point', 'refer', 'aid', 'establish', 'reason', 'index', 'It', 'enron', 'belief', 'trade', '470', 'higher', 'market', 'trade', 'exclud', 'calcul', 'index', 'It', 'desir', 'reliabl', 'accur', 'index', 'conduct', 'physic', 'financi', 'busi', 'pleas', 'contact', 'anytim', 'I', 'assist', 'toward', 'goal', 'sincer', 'phillip', 'allen']","[('trade', 0.040580057), ('index', 0.020289976), ('san', 0.017391395), ('juan', 0.017391395), ('financi', 0.0144928135), ('It', 0.0144928135), ('septemb', 0.0144928135), ('ga', 0.0144928135), ('price', 0.0144928135), ('physic', 0.0144928135)]",trade,0.04058005
25,25,25,"['lian', 'As', 'discuss', 'yesterday', 'I', 'concern', 'attempt', 'manipul', 'El', 'paso', 'san', 'juan', 'monthli', 'index', 'A', 'singl', 'buyer', 'enter', 'marketplac', 'septemb', '26', '27', 'paid', 'market', 'price', '470480', 'san', 'juan', 'ga', 'intent', 'distort', 'index', 'At', 'time', 'trade', 'offer', 'physic', 'ga', 'significantli', '10', '15', 'cent', 'lower', 'price', 'bypass', 'order', 'establish', 'higher', 'trade', 'report', 'index', 'calcul', 'addit', 'trade', 'line', 'associ', 'financi', 'swap', 'san', 'juan', 'We', 'compil', 'list', 'financi', 'physic', 'trade', 'execut', 'septemb', '25', 'septemb', '27', 'these', 'complet', 'list', 'trade', 'enron', 'onlin', 'eol', 'enron', 'direct', 'phone', 'convers', 'three', 'brokerag', 'firm', 'amerex', 'apb', 'prebon', 'pleas', 'see', 'attach', 'spreadsheet', 'trade', 'trade', 'list', 'summari', 'We', 'also', 'includ', 'summari', 'ga', 'daili', 'price', 'illustr', 'valu', 'san', 'juan', 'base', 'sever', 'spread', 'relationship', 'the', 'two', 'key', 'point', 'data', 'follow', '1', 'the', 'high', 'physic', 'price', '26th', '27th', '475480', 'much', 'greater', 'high', 'financi', 'trade', '463754665', 'day', '2', 'the', 'spread', 'relationship', 'san', 'juan', 'point', 'socal', 'northwest', 'consist', 'end', 'septemb', 'octob', 'ga', 'daili', 'It', 'doesnt', 'make', 'sens', 'monthli', 'indec', 'dramat', 'differ', 'I', 'understand', 'review', 'trade', 'submit', 'outlier', 'hope', 'trade', 'submit', 'reveal', 'counterparti', 'name', 'abl', 'determin', 'one', 'buyer', '470', 'trade', 'outlier', 'I', 'want', 'give', 'addit', 'point', 'refer', 'aid', 'establish', 'reason', 'index', 'It', 'enron', 'belief', 'trade', '470', 'higher', 'market', 'trade', 'exclud', 'calcul', 'index', 'It', 'desir', 'reliabl', 'accur', 'indec', 'conduct', 'physic', 'financi', 'busi', 'pleas', 'contact', 'anytim', 'I', 'assist', 'toward', 'goal', 'sincer', 'phillip', 'allen']","[('trade', 0.03921603), ('index', 0.016806811), ('juan', 0.016806811), ('san', 0.016806811), ('price', 0.01400566), ('ga', 0.01400566), ('financi', 0.01400566), ('physic', 0.01400566), ('I', 0.01400566), ('septemb', 0.014005659)]",trade,0.0392160
26,26,26,"['structur', 'typic', 'structur', 'limit', 'partnership', 'corpor', 'llc', 'gener', 'partner', 'the', 'gener', 'partner', 'own', '1', 'project', 'carri', 'liabil', 'construct', 'land', 'ownership', 'loan', 'the', 'properti', 'would', 'purchas', 'name', 'limit', 'partnership', 'land', 'loan', 'land', 'improv', 'loan', 'construct', 'loan', 'would', 'name', 'limit', 'partnership', 'each', 'individu', 'investor', 'princip', 'creeksid', 'would', 'also', 'person', 'guarante', 'loan', 'If', 'investor', 'sign', 'loan', 'gener', 'mean', 'larger', 'amount', 'cash', 'requir', 'investor', 'share', 'profit', 'reduc', 'all', 'loan', 'residenti', 'construct', 'intend', 'resal', 'full', 'recours', 'loan', 'If', 'pursu', 'multifamili', 'rental', 'develop', 'construct', 'loan', 'still', 'full', 'recours', 'mortgag', 'often', 'nonrecours', 'use', 'OF', 'initi', 'invest', 'the', 'initi', 'invest', 'use', 'land', 'deposit', 'engin', 'architectur', 'design', 'soil', 'test', 'survey', 'file', 'fee', 'legal', 'fee', 'organ', 'condominium', 'associ', 'format', 'apprais', 'unlik', 'mani', 'real', 'estat', 'invest', 'program', 'none', 'fund', 'use', 'fee', 'creeksid', 'builder', 'llc', 'these', 'profession', 'expens', 'incur', 'estim', '6', 'month', 'design', 'approv', 'period', 'earli', 'land', 'cost', 'the', '4000', 'per', 'month', 'cost', 'list', 'cash', 'flow', 'part', 'land', 'cost', 'repres', 'extens', 'fee', 'due', 'seller', '4', 'month', 'extens', 'close', 'As', 'altern', 'close', 'land', 'loan', 'probabl', '70', 'apprais', 'valu', 'with', 'land', 'valu', 'equal', 'purchas', 'price', '680000', 'would', 'mean', 'land', 'loan', '476000', 'estim', 'monthli', 'interest', 'payment', '3966', 'given', '10', 'annual', 'interest', 'rate', 'plu', 'approxim', '125', 'loan', 'amount', 'close', 'cost', 'loan', 'fee', 'equiti', 'AT', 'improv', 'loan', 'onc', 'site', 'plan', 'approv', 'citi', 'austin', 'citi', 'requir', 'develop', 'entiti', 'post', 'fund', 'fiscal', 'improv', 'refer', 'fiscal', 'thi', 'cost', 'repres', 'bond', 'complet', 'improv', 'coa', 'consid', 'vital', 'fund', 'releas', 'improv', 'complet', 'accept', 'coa', 'thi', 'releas', '90', 'cost', 'remain', '10', 'releas', 'one', 'year', 'complet', 'releas', 'grant', 'everi', '90', 'day', 'expect', 'releas', 'would', 'occur', '6', 'month', 'start', 'lot', 'improv', 'construct', 'these', 'fiscal', 'usual', 'post', 'cash', 'irrevoc', 'letter', 'credit', 'As', 'count', 'develop', 'cost', 'even', 'though', 'spent', 'becaus', 'spent', 'interest', 'charg', 'fund', 'the', 'lot', 'improv', 'loan', 'typic', '75', 'apprais', 'valu', 'finish', 'lot', 'I', 'suspect', 'least', '20000', 'potenti', 'high', '25000', 'thi', 'would', 'produc', 'loan', 'amount', '15000', '20000', 'per', 'lot', 'with', 'estim', 'per', 'lot', 'improv', 'cost', '9000', 'fiscal', '2000', 'land', 'cost', '8000', 'total', 'improv', 'lot', 'cost', '19000', 'mean', '0', '4000', 'per', 'lot', 'total', 'equiti', 'the', 'invest', 'prior', 'obtain', 'improv', 'loan', 'would', 'count', 'toward', 'equiti', 'requir', 'provid', 'direct', 'cost', 'thu', 'addit', 'equiti', 'improv', 'loan', 'would', '0184000', 'even', 'maximum', 'loan', 'would', 'cover', 'cost', 'unlik', 'bank', 'would', 'allow', 'reimburs', 'fund', 'spent', 'the', 'higher', 'estim', 'equiti', 'invest', 'shown', 'preliminari', 'proforma', 'safe', 'side', 'the', 'engin', 'prepar', 'tent', 'site', 'layout', 'initi', 'evalu', 'phase', 'significantli', 'reduc', 'cash', 'equiti', 'requir', 'phase', 'work', 'follow', 'If', 'first', 'phase', 'say', '40', 'unit', 'total', 'lot', 'improv', 'cost', 'might', 'averag', '31000', 'per', 'lot', 'Of', 'probabl', '13000', 'would', 'improv', '19000', 'land', 'cost', 'the', 'improv', 'higher', 'cover', 'larg', 'one', 'time', 'front', 'cost', 'design', 'cost', 'entri', 'road', 'water', 'treatment', 'cost', 'perimet', 'fenc', 'landscap', 'well', '100', 'land', 'the', 'land', 'loan', 'undevelop', 'lot', 'would', '70', 'apprais', 'raw', 'lot', 'valu', 'I', 'would', 'estim', '10000', 'per', 'lot', 'loan', 'valu', '7000', 'per', 'lot', 'then', 'loan', 'valu', 'improv', 'lot', 'would', '15000', 'per', 'lot', 'thi', 'would', 'give', 'total', 'loan', '992000', 'total', 'cost', '1232645', 'equiti', 'requir', '241000', 'thi', 'present', 'initi', 'analysi', 'phase', 'depend', 'care', 'assess', 'civil', 'engin', 'separ', 'phase', 'must', 'abl', 'stand', 'util', 'standpoint', 'construct', 'loan', 'there', 'three', 'type', 'construct', 'loan', 'first', 'specul', 'spec', 'loan', 'taken', 'prior', 'presal', 'activ', 'second', 'construct', 'loan', 'presold', 'unit', 'loan', 'remain', 'builderdevelop', 'name', 'third', 'presold', 'unit', 'construct', 'loan', 'name', 'buyer', 'We', 'expect', '8', 'spec', 'loan', 'start', 'project', 'expect', 'loan', 'presold', 'unit', 'loan', 'name', 'builderdevelop', 'We', 'expect', 'construct', 'loan', 'name', 'buyer', 'loan', 'difficult', 'manag', 'pleas', 'new', 'buyer', 'unfamiliar', 'process', 'spec', 'loan', '70', '75', 'valu', 'construct', 'loan', 'presold', 'unit', 'construct', 'loan', 'mortgag', 'lender', '80', '95', 'valu', 'disburs', 'disburs', 'handl', 'gener', 'partner', 'cover', 'current', 'near', 'term', 'third', 'parti', 'cost', 'necessari', 'reserv', 'prioriti', 'payment', 'partner', 'per', 'agreement', 'the', 'gener', 'partner', 'contract', 'creeksid', 'builder', 'llc', 'construct', 'unit', 'fee', 'CB', 'includ', 'construct', 'manag', 'overhead', 'fee', 'equal', '15', 'direct', 'hard', 'cost', 'exclud', 'land', 'financ', 'sale', 'cost', 'these', 'fee', 'moni', 'creeksid', 'larri', 'lewter', 'prior', 'calcul', 'profit', 'except', 'direct', 'reimburs', 'partnership', 'expens', 'b', 'direct', 'payment', 'CB', 'subcontractor', 'cost', 'perform', 'for', 'exampl', 'CB', 'find', 'good', 'trim', 'carpent', 'sub', 'find', 'enough', 'trim', 'carpent', 'etc', 'decid', 'undertak', 'function', 'charg', 'partnership', 'fee', 'abl', 'obtain', 'third', 'parti', 'disclos', 'case', 'partnership', 'final', 'CB', 'receiv', 'fee', 'use', 'equip', 'use', 'lieu', 'leas', 'equip', 'other', 'At', 'present', 'CB', 'signific', 'equip', 'consid', 'purchas', 'sky', 'track', 'facilit', 'speed', 'frame', 'cornic', 'roof', 'drywal', 'spread', 'report', 'We', 'will', 'provid', 'report', 'track', 'expens', 'v', 'plan', 'what', 'mind', 'I', 'would', 'like', 'use', 'form', 'internet', 'base', 'report', 'bookkeep', 'I', 'sure', 'refer', 'question', 'bookkeep', 'procedur', 'record', 'actual', 'expens', 'pleas', 'expand', 'investor', 'input', 'We', 'glad', 'investor', 'input', 'design', 'materi', 'As', 'alway', 'question', 'final', 'say', 'disagr', 'experi', 'I', 'alway', 'abl', 'reach', 'consensu', 'As', 'I', 'presum', 'keith', 'want', 'involv', 'learn', 'much', 'possibl', 'would', 'make', 'everi', 'effort', 'accommod', 'creeksid', 'proceedur', 'CB', 'procedur', 'deal', 'sub', 'vendor', 'profession', 'formal', 'question', 'indic', 'In', 'extrem', 'tight', 'labor', 'market', 'obtain', '3', 'bid', 'labor', 'trade', 'feasibl', 'for', 'profession', 'sub', 'use', 'develop', 'previou', 'rapport', 'final', 'vendor', 'constantli', 'shop', 'preselect', 'profession', 'sub', 'and', 'vendor', 'ye', 'mani', 'differ', 'sub', 'identifi', 'I', 'provid', 'interest', 'I', 'know', 'I', 'answer', 'everyth', 'start', 'point', 'call', 'review', 'discu', 'sincer', 'georg', 'richard', 'presid', 'creeksid', 'builder', 'llc', 'winmaildat']","[('loan', 0.031225277), ('cost', 0.018899467), ('would', 0.014790863), ('improv', 0.01314742), ('lot', 0.01314742), ('construct', 0.0123257), ('land', 0.0123257), ('the', 0.009860538), ('fee', 0.009038817), ('I', 0.008217097)]",loan,0.03122527
27,27,27,"['structur', 'typic', 'structur', 'limit', 'partnership', 'corpor', 'llc', 'gener', 'partner', 'the', 'gener', 'partner', 'own', '1', 'project', 'carri', 'liabil', 'construct', 'land', 'ownership', 'loan', 'the', 'properti', 'would', 'purchas', 'name', 'limit', 'partnership', 'land', 'loan', 'land', 'improv', 'loan', 'construct', 'loan', 'would', 'name', 'limit', 'partnership', 'each', 'individu', 'investor', 'princip', 'creeksid', 'would', 'also', 'person', 'guarante', 'loan', 'If', 'investor', 'sign', 'loan', 'gener', 'mean', 'larger', 'amount', 'cash', 'requir', 'investor', 'share', 'profit', 'reduc', 'all', 'loan', 'residenti', 'construct', 'intend', 'resal', 'full', 'recours', 'loan', 'If', 'pursu', 'multifamili', 'rental', 'develop', 'construct', 'loan', 'still', 'full', 'recours', 'mortgag', 'often', 'nonrecours', 'use', 'OF', 'initi', 'invest', 'the', 'initi', 'invest', 'use', 'land', 'deposit', 'engin', 'architectur', 'design', 'soil', 'test', 'survey', 'file', 'fee', 'legal', 'fee', 'organ', 'condominium', 'associ', 'format', 'apprais', 'unlik', 'mani', 'real', 'estat', 'invest', 'program', 'none', 'fund', 'use', 'fee', 'creeksid', 'builder', 'llc', 'these', 'profession', 'expens', 'incur', 'estim', '6', 'month', 'design', 'approv', 'period', 'earli', 'land', 'cost', 'the', '4000', 'per', 'month', 'cost', 'list', 'cash', 'flow', 'part', 'land', 'cost', 'repres', 'extens', 'fee', 'due', 'seller', '4', 'month', 'extens', 'close', 'As', 'altern', 'close', 'land', 'loan', 'probabl', '70', 'apprais', 'valu', 'with', 'land', 'valu', 'equal', 'purchas', 'price', '680000', 'would', 'mean', 'land', 'loan', '476000', 'estim', 'monthli', 'interest', 'payment', '3966', 'given', '10', 'annual', 'interest', 'rate', 'plu', 'approxim', '125', 'loan', 'amount', 'close', 'cost', 'loan', 'fee', 'equiti', 'AT', 'improv', 'loan', 'onc', 'site', 'plan', 'approv', 'citi', 'austin', 'citi', 'requir', 'develop', 'entiti', 'post', 'fund', 'fiscal', 'improv', 'refer', 'fiscal', 'thi', 'cost', 'repres', 'bond', 'complet', 'improv', 'coa', 'consid', 'vital', 'fund', 'releas', 'improv', 'complet', 'accept', 'coa', 'thi', 'releas', '90', 'cost', 'remain', '10', 'releas', 'one', 'year', 'complet', 'releas', 'grant', 'everi', '90', 'day', 'expect', 'releas', 'would', 'occur', '6', 'month', 'start', 'lot', 'improv', 'construct', 'these', 'fiscal', 'usual', 'post', 'cash', 'irrevoc', 'letter', 'credit', 'As', 'count', 'develop', 'cost', 'even', 'though', 'spent', 'becaus', 'spent', 'interest', 'charg', 'fund', 'the', 'lot', 'improv', 'loan', 'typic', '75', 'apprais', 'valu', 'finish', 'lot', 'I', 'suspect', 'least', '20000', 'potenti', 'high', '25000', 'thi', 'would', 'produc', 'loan', 'amount', '15000', '20000', 'per', 'lot', 'with', 'estim', 'per', 'lot', 'improv', 'cost', '9000', 'fiscal', '2000', 'land', 'cost', '8000', 'total', 'improv', 'lot', 'cost', '19000', 'mean', '0', '4000', 'per', 'lot', 'total', 'equiti', 'the', 'invest', 'prior', 'obtain', 'improv', 'loan', 'would', 'count', 'toward', 'equiti', 'requir', 'provid', 'direct', 'cost', 'thu', 'addit', 'equiti', 'improv', 'loan', 'would', '0184000', 'even', 'maximum', 'loan', 'would', 'cover', 'cost', 'unlik', 'bank', 'would', 'allow', 'reimburs', 'fund', 'spent', 'the', 'higher', 'estim', 'equiti', 'invest', 'shown', 'preliminari', 'proforma', 'safe', 'side', 'the', 'engin', 'prepar', 'tent', 'site', 'layout', 'initi', 'evalu', 'phase', 'significantli', 'reduc', 'cash', 'equiti', 'requir', 'phase', 'work', 'follow', 'If', 'first', 'phase', 'say', '40', 'unit', 'total', 'lot', 'improv', 'cost', 'might', 'averag', '31000', 'per', 'lot', 'Of', 'probabl', '13000', 'would', 'improv', '19000', 'land', 'cost', 'the', 'improv', 'higher', 'cover', 'larg', 'one', 'time', 'front', 'cost', 'design', 'cost', 'entri', 'road', 'water', 'treatment', 'cost', 'perimet', 'fenc', 'landscap', 'well', '100', 'land', 'the', 'land', 'loan', 'undevelop', 'lot', 'would', '70', 'apprais', 'raw', 'lot', 'valu', 'I', 'would', 'estim', '10000', 'per', 'lot', 'loan', 'valu', '7000', 'per', 'lot', 'then', 'loan', 'valu', 'improv', 'lot', 'would', '15000', 'per', 'lot', 'thi', 'would', 'give', 'total', 'loan', '992000', 'total', 'cost', '1232645', 'equiti', 'requir', '241000', 'thi', 'present', 'initi', 'analysi', 'phase', 'depend', 'care', 'assess', 'civil', 'engin', 'separ', 'phase', 'must', 'abl', 'stand', 'util', 'standpoint', 'construct', 'loan', 'there', 'three', 'type', 'construct', 'loan', 'first', 'specul', 'spec', 'loan', 'taken', 'prior', 'presal', 'activ', 'second', 'construct', 'loan', 'presold', 'unit', 'loan', 'remain', 'builderdevelop', 'name', 'third', 'presold', 'unit', 'construct', 'loan', 'name', 'buyer', 'We', 'expect', '8', 'spec', 'loan', 'start', 'project', 'expect', 'loan', 'presold', 'unit', 'loan', 'name', 'builderdevelop', 'We', 'expect', 'construct', 'loan', 'name', 'buyer', 'loan', 'difficult', 'manag', 'pleas', 'new', 'buyer', 'unfamiliar', 'process', 'spec', 'loan', '70', '75', 'valu', 'construct', 'loan', 'presold', 'unit', 'construct', 'loan', 'mortgag', 'lender', '80', '95', 'valu', 'disburs', 'disburs', 'handl', 'gener', 'partner', 'cover', 'current', 'near', 'term', 'third', 'parti', 'cost', 'necessari', 'reserv', 'prioriti', 'payment', 'partner', 'per', 'agreement', 'the', 'gener', 'partner', 'contract', 'creeksid', 'builder', 'llc', 'construct', 'unit', 'fee', 'CB', 'includ', 'construct', 'manag', 'overhead', 'fee', 'equal', '15', 'direct', 'hard', 'cost', 'exclud', 'land', 'financ', 'sale', 'cost', 'these', 'fee', 'moni', 'creeksid', 'larri', 'lewter', 'prior', 'calcul', 'profit', 'except', 'direct', 'reimburs', 'partnership', 'expens', 'b', 'direct', 'payment', 'CB', 'subcontractor', 'cost', 'perform', 'for', 'exampl', 'CB', 'find', 'good', 'trim', 'carpent', 'sub', 'find', 'enough', 'trim', 'carpent', 'etc', 'decid', 'undertak', 'function', 'charg', 'partnership', 'fee', 'abl', 'obtain', 'third', 'parti', 'disclos', 'case', 'partnership', 'final', 'CB', 'receiv', 'fee', 'use', 'equip', 'use', 'lieu', 'leas', 'equip', 'other', 'At', 'present', 'CB', 'signific', 'equip', 'consid', 'purchas', 'sky', 'track', 'facilit', 'speed', 'frame', 'cornic', 'roof', 'drywal', 'spread', 'report', 'We', 'will', 'provid', 'report', 'track', 'expens', 'v', 'plan', 'what', 'mind', 'I', 'would', 'like', 'use', 'form', 'internet', 'base', 'report', 'bookkeep', 'I', 'sure', 'refer', 'question', 'bookkeep', 'procedur', 'record', 'actual', 'expens', 'pleas', 'expand', 'investor', 'input', 'We', 'glad', 'investor', 'input', 'design', 'materi', 'As', 'alway', 'question', 'final', 'say', 'disagr', 'experi', 'I', 'alway', 'abl', 'reach', 'consensu', 'As', 'I', 'presum', 'keith', 'want', 'involv', 'learn', 'much', 'possibl', 'would', 'make', 'everi', 'effort', 'accommod', 'creeksid', 'proceedur', 'CB', 'procedur', 'deal', 'sub', 'vendor', 'profession', 'formal', 'question', 'indic', 'In', 'extrem', 'tight', 'labor', 'market', 'obtain', '3', 'bid', 'labor', 'trade', 'feasibl', 'for', 'profession', 'sub', 'use', 'develop', 'previou', 'rapport', 'final', 'vendor', 'constantli', 'shop', 'preselect', 'profession', 'sub', 'and', 'vendor', 'ye', 'mani', 'differ', 'sub', 'identifi', 'I', 'provid', 'interest', 'I', 'know', 'I', 'answer', 'everyth', 'start', 'point', 'call', 'review', 'discu', 'sincer', 'georg', 'richard', 'presid', 'creeksid', 'builder', 'llc', 'winmaildat']","[('loan', 0.031225277), ('cost', 0.018899467), ('would', 0.014790863), ('lot', 0.01314742), ('improv', 0.01314742), ('land', 0.0123257), ('construct', 0.0123257), ('the', 0.009860537), ('fee', 0.009038817), ('per', 0.008217097)]",loan,0.03122527
28,28,28,"['richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '10032000', '0230', 'PM', 'end', '10032000', '0330', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'confirm', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '10032000', '0230', 'PM', 'end', '10032000', '0330', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'statu', 'updat', 'fletcher', 'J', 'sturm', 'No', 'respons', 'scott', 'neal', 'No', 'respons', 'hunter', 'S', 'shive', 'No', 'respons', 'phillip', 'K', 'allen', 'No', 'respons', 'allan', 'severud', 'accept', 'scott', 'mill', 'accept', 'russ', 'severson', 'No', 'respons', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'reschedul', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09272000', '0200', 'PM', 'end', '09272000', '0300', 'PM', 'descript', 'ga', 'trade', 'vision', 'meet', 'room', 'eb2601', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'phillip', 'K', 'allenhouectect', 'hunter', 'S', 'shivelyhouectect', 'scott', 'millshouectect', 'allan', 'severudehouectect', 'jeffrey', 'C', 'gossetthouectect', 'colleen', 'sullivanhouectect', 'russ', 'seversonhouectect', 'jayant', 'krishnaswamyhouectect', 'russel', 'longhouectect', 'detail', 'descript', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'confirm', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09272000', '0200', 'PM', 'end', '09272000', '0300', 'PM', 'descript', 'ga', 'trade', 'vision', 'meet', 'room', 'eb2601', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'phillip', 'K', 'allenhouectect', 'hunter', 'S', 'shivelyhouectect', 'scott', 'millshouectect', 'allan', 'severudehouectect', 'jeffrey', 'C', 'gossetthouectect', 'colleen', 'sullivanhouectect', 'russ', 'seversonhouectect', 'jayant', 'krishnaswamyhouectect', 'russel', 'longhouectect', 'detail', 'descript', 'statu', 'updat', 'phillip', 'K', 'allen', 'No', 'respons', 'hunter', 'S', 'shive', 'No', 'respons', 'scott', 'mill', 'No', 'respons', 'allan', 'severud', 'accept', 'jeffrey', 'C', 'gossett', 'accept', 'colleen', 'sullivan', 'No', 'respons', 'russ', 'severson', 'No', 'respons', 'jayant', 'krishnaswami', 'accept', 'russel', 'long', 'accept', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'reschedul', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09282000', '0100', 'PM', 'end', '09282000', '0200', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'confirm', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09282000', '0100', 'PM', 'end', '09282000', '0200', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'statu', 'updat', 'fletcher', 'J', 'sturm', 'No', 'respons', 'scott', 'neal', 'No', 'respons', 'hunter', 'S', 'shive', 'No', 'respons', 'phillip', 'K', 'allen', 'No', 'respons', 'allan', 'severud', 'accept', 'scott', 'mill', 'accept', 'russ', 'severson', 'accept', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'from', 'cindi', 'cicchetti', '09262000', '1038', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'hunter', 'S', 'shivelyhouectect', 'scott', 'millshouectect', 'allan', 'severudehouectect', 'jeffrey', 'C', 'gossetthouectect', 'colleen', 'sullivanhouectect', 'russ', 'seversonhouectect', 'jayant', 'krishnaswamyhouectect', 'russel', 'longhouectect', 'cc', 'subject', 'ga', 'trade', 'vision', 'mtg', 'thi', 'meet', 'move', '400', 'wed', 'room', '2601', 'I', 'sent', 'confirm', 'via', 'lotu', 'note', 'sorri', 'chang', 'schedul', 'problem', 'coupl', 'peopl', 'origin', 'time', 'slot']","[('meet', 0.036006805), ('PM', 0.031096773), ('K', 0.027823417), ('phillip', 0.027823417), ('scott', 0.027823417), ('respons', 0.024550062), ('No', 0.024550062), ('descript', 0.021276705), ('date', 0.021276705), ('start', 0.021276705)]",meet,0.03600680
29,29,29,"['reagan', 'just', 'want', 'give', 'updat', 'I', 'chang', 'unit', 'mix', 'includ', '1', 'bedroom', 'reduc', 'number', 'build', '12', 'kipp', 'flore', 'work', 'construct', 'draw', 'At', 'time', 'I', 'pursu', 'fha', 'financ', 'onc', 'construct', 'draw', 'complet', 'I', 'send', 'revis', 'bid', 'your', 'origin', 'bid', 'competit', 'I', 'still', 'attract', 'firm', 'strong', 'local', 'presenc', 'contact', 'phillip']","[('I', 0.055555634), ('bid', 0.03333335), ('draw', 0.03333335), ('construct', 0.03333335), ('revis', 0.022222219), ('complet', 0.022222219), ('financ', 0.022222219), ('send', 0.022222219), ('competit', 0.022222219), ('onc', 0.022222219)]",I,0.05555563
30,30,30,"['nymex', 'expir', 'time', 'frame', 'pleas', 'reschedul']","[('nymex', 0.16666667), ('expir', 0.16666667), ('time', 0.16666667), ('frame', 0.16666667), ('pleas', 0.16666667), ('reschedul', 0.16666667)]",nymex,0.1666666
31,31,31,"['chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09272000', '1130', 'AM', 'end', '09272000', '1230', 'PM', 'descript', 'ga', 'trade', 'vision', 'meet', 'room', 'eb2556', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'phillip', 'K', 'allenhouect', 'hunter', 'S', 'shivelyhouect', 'scott', 'millshouect', 'allan', 'severudehouect', 'jeffrey', 'C', 'gossetthouect', 'colleen', 'sullivanhouect', 'russ', 'seversonhouect', 'jayant', 'krishnaswamyhouect', 'russel', 'longhouect', 'detail', 'descript']","[('meet', 0.049505036), ('descript', 0.02970299), ('date', 0.02970299), ('09272000', 0.029702988), ('start', 0.029702988), ('S', 0.019801978), ('millshouect', 0.019801978), ('severudehouect', 0.019801978), ('scott', 0.019801978), ('allan', 0.019801978)]",meet,0.04950503
32,32,32,"['I', 'schedul', 'enter', 'calendar', 'meet', 'referenc', 'topic', 'It', 'take', 'place', 'thursday', '928', '300', '400', 'room', 'eb2537']","[('place', 0.0625), ('It', 0.0625), ('room', 0.0625), ('400', 0.0625), ('300', 0.0625), ('928', 0.0625), ('thursday', 0.0625), ('I', 0.0625), ('take', 0.0625), ('meet', 0.0625)]",place,0.062
33,33,33,"['jeff', 'Is', 'close', 'today', 'after', 'review', 'agreementi', 'find', 'isnt', 'bind', 'far', 'I', 'determin', 'It', 'vagu', 'doesnt', 'sound', 'like', 'anyth', 'attorney', 'titl', 'compani', 'woulddraft', 'real', 'estat', 'closingbut', 'cours', 'I', 'could', 'wrong', 'If', 'thisclos', 'go', 'take', 'place', 'without', 'agreement', 'point', 'follow', 'thisdocu', 'valid', 'I', 'need', 'go', 'back', 'close', 'document', 'see', 'what', 'find', 'I', 'deal', 'best', 'I', 'I', 'guess', 'I', 'expect', 'someth', 'would', 'exhibit', 'record', 'document', 'someth', 'littl', 'exact', 'rathersort', 'contract', 'thi', 'isnt', 'either', 'I', 'tri', 'get', 'real', 'estat', 'atti', 'phone', 'last', 'night', 'pocket', 'I', 'talk', 'crim', 'atti', 'friend', 'said', 'area', 'doesnt', 'sound', 'bind', 'I', 'go', 'back', 'mine', 'phillip', 'allen', 'transactionand', 'take', 'look', 'vagu', 'gener', 'I', 'doubt', 'signatur', 'even', 'need', 'complet', 'transact', 'I', '12', 'noon', 'need', 'contact', 'regard', 'close', 'I', 'realli', 'want', 'hold', 'anyth', 'gener', 'work', 'I', 'dont', 'want', 'insult', 'annoy', 'anyon', 'paper', 'realli', 'doesnt', 'seem', 'someth', 'requir', 'close', 'In', 'event', 'need', 'signatur', 'someth', 'like', 'I', 'would', 'rather', 'time', 'review', 'I', 'accept', 'brenda']","[('I', 0.06719413), ('close', 0.019762909), ('someth', 0.019762909), ('need', 0.019762909), ('go', 0.01581031), ('doesnt', 0.01581031), ('document', 0.011857715), ('signatur', 0.011857715), ('gener', 0.0118577145), ('want', 0.0118577145)]",I,0.0671941
34,34,34,"['chri', 'what', 'latest', 'pge', 'We', 'good', 'discuss', 'regard', 'eol', 'call', 'x37041', 'phillip']","[('regard', 0.08333334), ('good', 0.08333334), ('x37041', 0.08333334), ('call', 0.08333334), ('eol', 0.08333334), ('chri', 0.08333334), ('discuss', 0.08333334), ('latest', 0.08333334), ('pge', 0.08333334), ('what', 0.08333334)]",regard,0.0833333
35,35,87,"['brad', 'with', 'regard', 'tori', 'kuykendal', 'I', 'would', 'like', 'promot', 'commerci', 'manag', 'instead', 'convert', 'commerci', 'support', 'manag', 'associ', 'her', 'duti', 'sinc', 'begin', 'year', 'commerci', 'manag', 'I', 'doubt', 'compar', 'favor', 'other', 'categori', 'year', 'end', 'martin', 'cuilla', 'central', 'desk', 'similiar', 'situat', 'tori', 'hunter', 'would', 'like', 'martin', 'handl', 'tori', 'let', 'know', 'issu', 'phillip']","[('commerci', 0.04597705), ('tori', 0.04597705), ('manag', 0.04597705), ('would', 0.034482773), ('year', 0.034482773), ('I', 0.034482773), ('like', 0.034482773), ('martin', 0.034482773), ('central', 0.0229885), ('similiar', 0.0229885)]",commerci,0.0459770
36,36,35,"['richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09282000', '0100', 'PM', 'end', '09282000', '0200', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'the', 'meet', 'richard', 'burchfieldhouect', 'reschedul', 'On', '09282000', '030000', 'PM', 'cdt', 'for', '1', 'hour', 'with', 'richard', 'burchfieldhouect', 'chairperson', 'fletcher', 'J', 'sturmhouect', 'invit', 'scott', 'nealhouect', 'invit', 'hunter', 'S', 'shivelyhouect', 'invit', 'phillip', 'K', 'allenhouect', 'invit', 'allan', 'severudehouect', 'invit', 'scott', 'millshouect', 'invit', 'russ', 'seversonhouect', 'invit', 'ga', 'physicalfinancail', 'posit', 'room', '2537']","[('invit', 0.05479465), ('scott', 0.034246624), ('meet', 0.034246624), ('09282000', 0.027397284), ('PM', 0.027397284), ('richard', 0.027397284), ('shivelyhouect', 0.020547945), ('S', 0.020547945), ('phillip', 0.020547945), ('allenhouect', 0.020547945)]",invit,0.0547946
37,37,36,"['chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09272000', '0100', 'PM', 'end', '09272000', '0200', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript']","[('meet', 0.044444486), ('start', 0.03333335), ('PM', 0.03333335), ('09272000', 0.03333335), ('descript', 0.03333335), ('scott', 0.03333335), ('date', 0.03333335), ('hunter', 0.022222219), ('S', 0.022222219), ('K', 0.022222219)]",meet,0.04444448
38,38,37,"['greg', 'happi', 'bday', 'email', 'phone', 'I', 'call', 'keith']","[('greg', 0.125), ('happi', 0.125), ('bday', 0.125), ('email', 0.125), ('phone', 0.125), ('I', 0.125), ('call', 0.125), ('keith', 0.125)]",greg,0.12
39,39,38,"['kathi', 'regard', 'guest', 'password', 'ga', 'daili', 'pleas', 'relay', 'inform', 'mike', 'grigsbi', '37031', 'pa', 'along', 'person', 'ga', 'daili', 'today', 'I', 'offic', 'friday', 'thank', 'phillip']","[('daili', 0.068181835), ('ga', 0.068181835), ('I', 0.045454543), ('person', 0.045454543), ('today', 0.045454543), ('pa', 0.045454543), ('offic', 0.045454543), ('friday', 0.045454543), ('grigsbi', 0.045454543), ('thank', 0.045454543)]",daili,0.06818183
40,40,39,"['john', 'denver', 'short', 'rocki', 'posit', 'beyond', '2002', 'creat', 'trailblaz', 'transport', 'they', 'unhedg', '15000d', '2003', '25000d', '2004', '2005', 'they', 'scrub', 'book', 'book', 'hubert', 'deal', 'wednesday', 'thursday', 'phillip']","[('book', 0.060000025), ('they', 0.060000025), ('hubert', 0.04), ('2004', 0.04), ('2005', 0.04), ('scrub', 0.04), ('2003', 0.04), ('thursday', 0.04), ('wednesday', 0.04), ('unhedg', 0.04)]",book,0.06000002
41,41,40,"['jim', 'Is', 'go', 'confer', 'call', 'type', 'weekli', 'meet', 'regulatori', 'issu', 'face', 'california', 'week', 'can', 'make', 'sure', 'ga', 'desk', 'includ', 'phillip']","[('california', 0.049999997), ('issu', 0.049999997), ('includ', 0.049999997), ('desk', 0.049999997), ('ga', 0.049999997), ('sure', 0.049999997), ('make', 0.049999997), ('can', 0.049999997), ('week', 0.049999997), ('jim', 0.049999997)]",california,0.04999999
42,42,41,"['georg', 'below', 'list', 'question', 'keith', 'I', 'regard', 'westgat', 'project', 'ownership', 'structur', 'what', 'ownership', 'structur', 'limit', 'partnership', 'gener', 'partner', 'what', 'legal', 'entiti', 'involv', 'capacityregard', 'ownership', 'liabil', 'who', 'own', 'land', 'improv', 'who', 'hold', 'variou', 'loan', 'Is', 'land', 'collater', 'invest', 'what', 'happen', 'initi', 'invest', 'Is', 'use', 'purchas', 'land', 'cashsecur', 'futur', 'loan', 'whi', 'land', 'cost', 'spread', 'cash', 'flow', 'statement', 'when', '700000', 'actual', 'need', 'now', 'land', 'close', 'invest', 'schedul', 'invest', 'return', 'Is', 'equiti', 'repay', 'return', 'origin', 'invest', 'Is', 'plan', 'wait', 'last', 'unit', 'sold', 'close', 'profit', 'distribut', 'debt', 'which', 'entiti', 'borrow', 'loan', 'recours', 'collater', 'associ', 'loan', 'improv', 'construct', 'are', 'two', 'loan', 'look', 'like', 'cash', 'flow', 'statement', 'term', 'loan', 'use', 'fund', 'how', 'disburs', 'made', 'By', 'what', 'type', 'bank', 'account', 'control', 'max', 'disburs', 'internet', 'view', 'investor', 'report', 'track', 'expens', 'v', 'plan', 'bookkeep', 'procedur', 'record', 'actual', 'expens', 'what', 'relationship', 'creeksid', 'builder', 'project', 'Do', 'get', 'paid', 'markup', 'subcontractor', 'gener', 'contractor', 'paid', 'gain', 'profit', 'Do', 'larri', 'receiv', 'money', 'form', 'salari', 'person', 'expens', 'ultim', 'payout', 'profit', 'design', 'construct', 'when', 'design', 'complet', 'what', 'input', 'investor', 'select', 'design', 'materi', 'unit', 'what', 'level', 'investor', 'involv', 'possibl', 'construct', 'plan', 'permit', 'doe', 'creeksid', 'specif', 'procedur', 'deal', 'subcontractor', 'vendor', 'profession', 'such', 'alway', 'get', '3', 'bid', 'payment', 'schedul', 'refer', 'check', 'are', 'specif', 'compani', 'individu', 'alreadi', 'plan', 'use', 'name', 'these', 'question', 'probabl', 'basic', 'first', 'time', 'investor', 'project', 'like', 'new', 'also', 'I', 'want', 'learn', 'much', 'possibl', 'process', 'phillip']","[('what', 0.022038724), ('loan', 0.019283874), ('invest', 0.01652902), ('land', 0.01652902), ('investor', 0.013774169), ('Is', 0.013774169), ('plan', 0.013774169), ('ownership', 0.011019317), ('project', 0.011019317), ('design', 0.0110193165)]",what,0.02203872
43,43,42,"['enclos', 'preliminari', 'proforma', 'westgat', 'properti', 'austin', 'told', 'As', 'tell', 'proforma', 'project', 'produc', 'truli', 'except', 'return', '40', 'per', 'year', '3', 'year', 'thi', 'especi', 'attract', 'project', 'market', 'strong', 'austin', 'introduc', 'new', 'product', 'low', 'price', 'rang', 'market', 'thi', 'best', 'project', 'term', 'risk', 'reward', 'uncov', 'date', 'austin', 'market', 'the', 'project', 'approv', 'zone', 'requir', 'site', 'plan', 'As', 'smart', 'growth', 'corridor', 'area', 'design', 'citi', 'austin', 'prefer', 'develop', 'fast', 'track', 'complet', 'le', '6', 'month', 'addit', 'mani', 'current', 'sever', 'water', 'treatment', 'ordin', 'waiv', 'I', 'estim', 'lot', 'improv', 'cost', 'base', '28', 'lot', 'develop', 'investig', 'north', 'austin', 'includ', 'detentionretent', 'filtrat', 'pond', 'street', 'widen', 'even', 'though', 'properti', 'like', 'requir', 'street', 'widen', 'le', 'detentionretent', 'filtrat', 'pond', 'requir', 'I', 'use', 'data', 'cautiou', 'the', 'lone', 'star', 'ga', 'line', 'easement', 'lower', 'portion', 'properti', 'expect', 'impact', 'sale', 'significantli', 'other', 'project', 'quit', 'success', 'ident', 'relationship', 'pipelin', 'adjoin', 'singl', 'famili', 'residenti', 'project', 'St', 'edward', 'univers', 'As', 'infil', 'project', 'qualiti', 'surround', 'neighborhood', 'uneven', 'We', 'includ', 'fenc', 'around', 'entir', 'properti', 'may', 'put', 'westgat', 'cameron', 'loop', 'gate', 'commun', 'far', 'prefer', 'good', 'idea', 'screen', 'current', 'buyer', 'prefer', 'the', 'seller', 'accept', 'offer', 'thursday', 'even', 'price', '680000', 'extend', 'escrow', 'thi', 'enabl', 'u', 'probabl', 'obtain', 'approv', 'site', 'plan', 'close', 'contract', 'mean', 'close', 'AD', 'loan', 'rather', 'land', 'loan', 'improv', 'loan', 'thi', 'analysi', 'show', 'invest', '700000', '50', 'interest', 'profit', 'project', 'As', 'discuss', 'san', 'marco', 'also', 'discu', 'invest', 'lot', 'sell', 'lot', 'construct', 'entiti', 'profit', 'lot', 'I', 'believ', 'would', 'facilit', 'use', '1031', 'exchang', 'proce', 'deal', 'anoth', 'project', 'rental', 'deal', 'least', 'land', 'rental', 'project', 'would', 'equiti', 'project', 'you', 'would', 'need', 'discu', 'exchang', 'expert', 'first', 'larri', 'lewter', 'know', 'expert', 'field', 'san', 'antonio', 'know', 'anyon', 'I', 'send', 'packag', 'properti', 'prepar', 'broker', 'airborn', 'express', 'today', 'saturday', 'deliveri', 'onc', 'read', 'packag', 'review', 'proforma', 'would', 'want', 'schedul', 'tour', 'site', 'area', 'pleas', 'get', 'back', 'soon', 'schedul', 'permit', 'regard', 'site', 'visit', 'feel', 'free', 'call', 'time', 'you', 'reach', 'weekend', 'even', 'either', '5123381119', '5123381110', 'My', 'cell', 'phone', '5127487495', 'fax', '5123381103', 'I', 'look', 'forward', 'hear', 'work', 'project', 'sure', 'major', 'winner', 'I', 'regret', 'took', 'long', 'get', 'back', 'unusu', 'event', 'past', 'week', 'A', 'small', 'freakish', 'wind', 'storm', 'sever', '60mpg', 'downdraft', 'hit', 'south', 'part', 'austin', 'build', '10', 'town', 'home', 'one', 'unit', 'roof', 'deck', 'side', 'schedul', 'start', 'next', 'day', 'the', 'sever', 'downdraft', 'hit', 'deck', 'roof', 'enough', 'knock', 'the', 'citi', 'shut', 'project', 'week', 'took', 'anoth', 'week', 'get', 'everi', 'thing', 'back', 'tract', 'then', 'last', 'week', 'I', 'take', 'wife', 'emerg', 'she', 'bulg', 'materi', 'vertebra', 'spine', 'caus', 'extrem', 'pain', 'kept', 'bedridden', 'past', 'week', 'there', 'noth', 'like', 'wife', 'incapacit', 'realiz', 'enorm', 'number', 'thing', 'everyday', 'fortun', 'look', 'ok', 'long', 'run', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc', 'westgat', 'proformaphillip', 'allenxl']","[('project', 0.019915015), ('I', 0.011379966), ('austin', 0.009957459), ('lot', 0.008534949), ('week', 0.008534949), ('the', 0.008534949), ('properti', 0.008534949), ('would', 0.0071124425), ('thi', 0.0071124425), ('As', 0.0071124425)]",project,0.01991501
44,44,43,"['georg', 'here', 'sale', 'number', 'reagan', 'As', 'see', 'unit', 'sold', 'varieti', 'price', 'per', 'squar', 'foot', 'the', '13081308', 'model', 'seem', 'data', 'look', 'similiar', 'unit', 'sell', 'At', '27', 'MM', 'bid', '70sf', 'higher', 'unit', 'construct', 'I', 'hard', 'time', 'justifi', 'pay', 'much', 'competit', 'way', 'the', 'price', 'I', 'bid', 'higher', 'deal', 'actual', 'done', 'date', 'let', 'know', 'think', 'I', 'follow', 'email', 'phone', 'call', 'cherri', 'creek', 'I', 'sure', 'deborah', 'yate', 'let', 'know', 'bid', 'reject', 'De', 'vill', 'properti', 'phillip', 'allen']","[('I', 0.038461614), ('bid', 0.030769272), ('unit', 0.030769272), ('price', 0.023076938), ('the', 0.023076938), ('higher', 0.023076938), ('know', 0.023076938), ('let', 0.023076938), ('actual', 0.015384611), ('date', 0.015384611)]",I,0.03846161
45,45,44,"['jeff', 'what', 'burnet', 'phillip']","[('jeff', 0.25), ('what', 0.25), ('burnet', 0.25), ('phillip', 0.25)]",jeff,0.2
46,46,45,"['jeff', 'I', 'need', 'see', 'site', 'plan', 'burnet', 'rememb', 'I', 'must', 'get', 'written', 'approv', 'brenda', 'key', 'stone', 'I', 'sell', 'properti', 'concern', 'way', 'properti', 'subdivid', 'I', 'would', 'also', 'like', 'review', 'close', 'statement', 'soon', 'possibl', 'phillip']","[('I', 0.080645256), ('properti', 0.048387118), ('would', 0.032258067), ('like', 0.032258067), ('concern', 0.032258067), ('way', 0.032258067), ('subdivid', 0.032258067), ('possibl', 0.032258067), ('also', 0.032258067), ('statement', 0.032258067)]",I,0.08064525
47,47,46,"['luci', 'I', 'want', 'accur', 'rent', 'roll', 'soon', 'possibl', 'I', 'fax', 'copi', 'file', 'you', 'fill', 'comput', 'write', 'correct', 'amount', 'I', 'input']","[('I', 0.105263196), ('file', 0.052631576), ('fax', 0.052631576), ('amount', 0.052631576), ('correct', 0.052631576), ('write', 0.052631576), ('comput', 0.052631576), ('fill', 0.052631576), ('you', 0.052631576), ('luci', 0.052631576)]",I,0.10526319
48,48,47,"['brenda', 'I', 'check', 'record', 'I', 'mail', 'check', '1178', 'normal', 'amount', 'august', '28th', 'I', 'mail', '4303', 'pate', 'Rd', '29', 'colleg', 'station', 'TX', '77845', 'I', 'go', 'ahead', 'mail', 'anoth', 'check', 'If', 'first', 'one', 'show', 'treat', '2nd', 'payment', 'octob', 'I', 'know', 'concern', 'site', 'plan', 'I', 'proceed', 'without', 'get', 'detail', 'get', 'approv', 'I', 'find', 'amort', 'schedul', 'send', 'soon', 'phillip']","[('I', 0.08080825), ('check', 0.040404078), ('mail', 0.040404078), ('get', 0.03030304), ('concern', 0.020202013), ('2nd', 0.020202013), ('site', 0.020202013), ('proceed', 0.020202013), ('know', 0.020202013), ('payment', 0.020202013)]",I,0.0808082
49,49,48,"['luci', 'you', 'wrote', 'fewer', 'check', 'month', 'spent', 'money', 'materi', 'le', 'labor', 'june', 'juli', 'august', 'total', 'materi', '2929', '4085', '4801', 'servic', '53', '581', '464', 'labor', '3187', '3428', '2770', 'here', 'question', 'august', 'bank', 'statement', 'attach', '1', 'check', '1406', 'walmart', 'descript', 'unit', '2', 'check', '1410', 'crump', 'detail', 'descript', 'unit', '3', 'check', '1411', 'luci', 'what', '4', 'check', '1415', 'pape', 'detail', 'descript', 'unit', '5', 'check', '1416', '1417', '1425', 'whi', 'overtim', '6', 'check', '1428', 'ralph', 'what', 'unit', '7', 'check', '1438', 'walmart', 'descript', 'unit', 'tri', 'pull', 'togeth', 'support', 'item', 'get', 'back', 'phillip']","[('check', 0.060402885), ('unit', 0.04026856), ('descript', 0.033557113), ('detail', 0.020134239), ('materi', 0.020134239), ('luci', 0.020134239), ('labor', 0.020134239), ('what', 0.020134239), ('august', 0.020134239), ('walmart', 0.020134239)]",check,0.06040288
50,50,49,"['ontact', 'list', 'mid', 'market', 'phillip', 'attach', 'list', 'have', 'peopl', 'fill', 'column', 'highlight', 'yellow', 'As', 'best', 'tri', 'overlap', 'account', 'thank', 'mike']","[('list', 0.0769231), ('column', 0.05128205), ('thank', 0.05128205), ('account', 0.05128205), ('overlap', 0.05128205), ('tri', 0.05128205), ('best', 0.05128205), ('As', 0.05128205), ('yellow', 0.05128205), ('ontact', 0.05128205)]",list,0.076923
51,51,50,['httpwwwhearmecomvc2chnlownrpallenenroncom'],"[('httpwwwhearmecomvc2chnlownrpallenenroncom', 1.0)]",,
52,52,88,"['bruce', 'can', 'stop', 'set', 'reuter', 'phillip']","[('bruce', 0.16666667), ('can', 0.16666667), ('stop', 0.16666667), ('set', 0.16666667), ('reuter', 0.16666667), ('phillip', 0.16666667)]",bruce,0.1666666
53,53,89,"['luci', 'the', 'rent', 'roll', 'spreadsheet', 'start', 'look', 'better', 'see', 'add', 'modif', '1', 'use', 'formula', 'column', 'E', 'add', 'valu', 'column', 'C', 'column', 'D', 'It', 'read', 'c6d6', 'then', 'copi', 'formula', 'row', '2', 'column', 'H', 'need', 'formula', 'subtract', 'amount', 'paid', 'amount', 'owe', 'e6g6', '3', 'column', 'F', 'fill', 'sign', 'column', 'width', 'narrow', 'use', 'mous', 'click', 'line', 'besid', 'letter', 'F', 'hold', 'left', 'mous', 'button', 'drag', 'column', 'wider', '4', 'after', 'get', 'rent', 'part', 'fix', 'let', 'bring', 'databas', 'column', 'sheet', 'place', 'right', 'column', 'J', 'beyond', 'phillip']","[('column', 0.07042277), ('formula', 0.028169055), ('amount', 0.021126771), ('F', 0.021126771), ('use', 0.021126771), ('add', 0.021126771), ('rent', 0.021126771), ('mous', 0.021126771), ('left', 0.0140845), ('hold', 0.0140845)]",column,0.0704227
54,54,90,"['luci', 'I', 'got', 'email', 'attach', 'let', 'work', 'togeth', 'today', 'get', 'done', 'phillip']","[('togeth', 0.08333334), ('let', 0.08333334), ('done', 0.08333334), ('get', 0.08333334), ('today', 0.08333334), ('luci', 0.08333334), ('work', 0.08333334), ('got', 0.08333334), ('email', 0.08333334), ('I', 0.08333334)]",togeth,0.0833333
55,55,91,['approv'],"[('approv', 1.0)]",,
56,56,817,"['We', 'room', 'eb3014', '3', '4', 'pm', 'wednesday', 'WK']","[('We', 0.125), ('room', 0.125), ('eb3014', 0.125), ('3', 0.125), ('4', 0.125), ('pm', 0.125), ('wednesday', 0.125), ('WK', 0.125)]",We,0.12
57,57,51,"['37041', 'offic', 'locat', 'eb3210c', 'what', 'type', 'comput', 'desktop', 'laptop', 'both', 'both', 'Do', 'pda', 'If', 'ye', 'type', 'none', 'ipaq', 'palm', 'pilot', 'jornada', 'ipaq', 'Do', 'permiss', 'access', 'anyon', 'emailcalendar', 'NO', 'If', 'ye', 'doe', 'anyon', 'permiss', 'access', 'emailcalendar', 'ye', 'If', 'ye', 'ina', 'rangel', 'are', 'respons', 'updat', 'anyon', 'el', 'address', 'book', 'If', 'ye', 'NO', 'Is', 'anyon', 'els', 'respons', 'updat', 'address', 'book', 'If', 'ye', 'NO', 'Do', 'access', 'share', 'calendar', 'If', 'ye', 'share', 'calendar', 'ye', 'west', 'calendar', 'Do', 'distribut', 'group', 'messag', 'maintain', 'mass', 'mail', 'If', 'ye', 'pleas', 'list', 'NO', 'pleas', 'list', 'note', 'databas', 'applic', 'current', 'use', 'none', 'In', 'effort', 'plan', 'exact', 'datetim', 'migrat', 'also', 'need', 'know', 'what', 'normal', 'work', 'hour', 'from', '700', 'AM', 'To', '500', 'PM', 'will', 'offic', 'near', 'futur', 'vacat', 'leav', 'etc', 'NO', 'If', 'from', 'mmddyy', 'To', 'mmddyy', 'embed', 'stdolelink']","[('ye', 0.049261298), ('If', 0.044335153), ('NO', 0.029556738), ('anyon', 0.024630597), ('Do', 0.024630597), ('access', 0.019704463), ('calendar', 0.019704463), ('emailcalendar', 0.014778327), ('permiss', 0.014778327), ('from', 0.014778327)]",ye,0.04926129
58,58,52,"['enclos', 'preliminari', 'proforma', 'westgat', 'properti', 'austin', 'told', 'As', 'tell', 'proforma', 'project', 'produc', 'truli', 'except', 'return', '40', 'per', 'year', '3', 'year', 'thi', 'especi', 'attract', 'project', 'market', 'strong', 'austin', 'introduc', 'new', 'product', 'low', 'price', 'rang', 'market', 'thi', 'best', 'project', 'term', 'risk', 'reward', 'uncov', 'date', 'austin', 'market', 'the', 'project', 'approv', 'zone', 'requir', 'site', 'plan', 'As', 'smart', 'growth', 'corridor', 'area', 'design', 'citi', 'austin', 'prefer', 'develop', 'fast', 'track', 'complet', 'le', '6', 'month', 'addit', 'mani', 'current', 'sever', 'water', 'treatment', 'ordin', 'waiv', 'I', 'estim', 'lot', 'improv', 'cost', 'base', '28', 'lot', 'develop', 'investig', 'north', 'austin', 'includ', 'detentionretent', 'filtrat', 'pond', 'street', 'widen', 'even', 'though', 'properti', 'like', 'requir', 'street', 'widen', 'le', 'detentionretent', 'filtrat', 'pond', 'requir', 'I', 'use', 'data', 'cautiou', 'the', 'lone', 'star', 'ga', 'line', 'easement', 'lower', 'portion', 'properti', 'expect', 'impact', 'sale', 'significantli', 'other', 'project', 'quit', 'success', 'ident', 'relationship', 'pipelin', 'adjoin', 'singl', 'famili', 'residenti', 'project', 'St', 'edward', 'univers', 'As', 'infil', 'project', 'qualiti', 'surround', 'neighborhood', 'uneven', 'We', 'includ', 'fenc', 'around', 'entir', 'properti', 'may', 'put', 'westgat', 'cameron', 'loop', 'gate', 'commun', 'far', 'prefer', 'good', 'idea', 'screen', 'current', 'buyer', 'prefer', 'the', 'seller', 'accept', 'offer', 'thursday', 'even', 'price', '680000', 'extend', 'escrow', 'thi', 'enabl', 'u', 'probabl', 'obtain', 'approv', 'site', 'plan', 'close', 'contract', 'mean', 'close', 'AD', 'loan', 'rather', 'land', 'loan', 'improv', 'loan', 'thi', 'analysi', 'show', 'invest', '700000', '50', 'interest', 'profit', 'project', 'As', 'discuss', 'san', 'marco', 'also', 'discu', 'invest', 'lot', 'sell', 'lot', 'construct', 'entiti', 'profit', 'lot', 'I', 'believ', 'would', 'facilit', 'use', '1031', 'exchang', 'proce', 'deal', 'anoth', 'project', 'rental', 'deal', 'least', 'land', 'rental', 'project', 'would', 'equiti', 'project', 'you', 'would', 'need', 'discu', 'exchang', 'expert', 'first', 'larri', 'lewter', 'know', 'expert', 'field', 'san', 'antonio', 'know', 'anyon', 'I', 'send', 'packag', 'properti', 'prepar', 'broker', 'airborn', 'express', 'today', 'saturday', 'deliveri', 'onc', 'read', 'packag', 'review', 'proforma', 'would', 'want', 'schedul', 'tour', 'site', 'area', 'pleas', 'get', 'back', 'soon', 'schedul', 'permit', 'regard', 'site', 'visit', 'feel', 'free', 'call', 'time', 'you', 'reach', 'weekend', 'even', 'either', '5123381119', '5123381110', 'My', 'cell', 'phone', '5127487495', 'fax', '5123381103', 'I', 'look', 'forward', 'hear', 'work', 'project', 'sure', 'major', 'winner', 'I', 'regret', 'took', 'long', 'get', 'back', 'unusu', 'event', 'past', 'week', 'A', 'small', 'freakish', 'wind', 'storm', 'sever', '60mpg', 'downdraft', 'hit', 'south', 'part', 'austin', 'build', '10', 'town', 'home', 'one', 'unit', 'roof', 'deck', 'side', 'schedul', 'start', 'next', 'day', 'the', 'sever', 'downdraft', 'hit', 'deck', 'roof', 'enough', 'knock', 'the', 'citi', 'shut', 'project', 'week', 'took', 'anoth', 'week', 'get', 'everi', 'thing', 'back', 'tract', 'then', 'last', 'week', 'I', 'take', 'wife', 'emerg', 'she', 'bulg', 'materi', 'vertebra', 'spine', 'caus', 'extrem', 'pain', 'kept', 'bedridden', 'past', 'week', 'there', 'noth', 'like', 'wife', 'incapacit', 'realiz', 'enorm', 'number', 'thing', 'everyday', 'fortun', 'look', 'ok', 'long', 'run', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc', 'westgat', 'proformaphillip', 'allenxl']","[('project', 0.019915018), ('I', 0.011379966), ('austin', 0.009957458), ('the', 0.00853495), ('week', 0.00853495), ('lot', 0.00853495), ('properti', 0.00853495), ('would', 0.0071124425), ('site', 0.0071124425), ('thi', 0.0071124425)]",project,0.01991501
59,59,53,"['jeff', 'I', 'receiv', 'rent', 'roll', 'I', 'go', 'san', 'marco', 'weekend', 'I', 'book', 'stage', 'coach', 'I', 'drive', 'friday', 'even', 'I', 'let', 'know', 'next', 'week', 'I', 'need', 'see', 'insid', 'can', 'find', 'chelsea', 'villa', 'last', 'chang', 'hand', 'price', 'what', 'get', 'look', 'site', 'plan', 'burnet', 'deal', 'rememb', 'get', 'brenda', 'happi', 'phillip']","[('I', 0.0795456), ('get', 0.03409093), ('find', 0.02272727), ('chelsea', 0.02272727), ('villa', 0.02272727), ('last', 0.02272727), ('chang', 0.02272727), ('hand', 0.02272727), ('price', 0.02272727), ('what', 0.02272727)]",I,0.079545
60,60,54,"['98', '97', 'diff', 'socal', '36600', '37200', '600', 'nwpl', '51000', '51250', '250', 'san', 'juan', '32500', '32000', '500', 'the', 'reason', 'benchmark', 'report', 'show', 'net', 'sell', 'san', 'juan', 'transport', 'posit', 'roll', '98', 'thi', 'ad', '800', 'short', 'san', 'juan', '200', 'long', 'socal', 'befor', 'adjust', 'bought', '300', 'san', 'juan', 'sold', '800', 'socal']","[('juan', 0.059523895), ('san', 0.059523895), ('socal', 0.047619093), ('98', 0.035714302), ('800', 0.035714302), ('transport', 0.02380952), ('ad', 0.02380952), ('short', 0.02380952), ('posit', 0.02380952), ('thi', 0.02380952)]",juan,0.05952389
61,61,55,"['aeco', 'basi', 'low', 'list', 'Is', 'nwpl', 'map', 'differ', 'aeco', 'what', 'correl', 'nymex', 'aeco']","[('aeco', 0.16666673), ('basi', 0.083333336), ('low', 0.083333336), ('list', 0.083333336), ('Is', 0.083333336), ('nwpl', 0.083333336), ('map', 0.083333336), ('differ', 0.083333336), ('what', 0.083333336), ('correl', 0.083333336)]",aeco,0.1666667
62,62,56,"['jeff', 'you', 'would', 'clearli', 'receiv', 'commiss', 'deal', 'sagewood', 'I', 'surpris', 'request', 'payment', 'type', 'project', 'I', 'might', 'becom', 'involv', 'creeksid', 'are', 'busi', 'broker', 'properti', 'contact', 'Is', 'posit', 'base', 'legal', 'perceiv', 'ethic', 'issu', 'did', 'propos', 'look', 'develop', 'project', 'scratch', 'I', 'prepar', 'pay', '27', 'sagewood', 'yet', 'phillip']","[('I', 0.047619093), ('project', 0.035714302), ('sagewood', 0.035714302), ('ethic', 0.02380952), ('issu', 0.02380952), ('did', 0.02380952), ('posit', 0.02380952), ('base', 0.02380952), ('look', 0.02380952), ('legal', 0.02380952)]",I,0.04761909
63,63,57,"['I', 'awar', 'regan', 'lehman', 'lot', 'develop', 'entir', '70', 'lot', 'duplex', 'project', 'sell', 'unit', '180', 'He', 'much', 'lower', 'basi', 'lot', 'anyon', 'els', 'prime', 'differ', 'due', 'sell', 'construct', 'b', 'smaller', 'unit', 'We', 'know', 'exact', 'size', 'unit', 'believ', 'one', 'duplex', '11641302', 'sq', 'ft', 'plan', 'thi', 'would', 'produc', 'averag', 'sq', 'footag', '1233', 'would', '7380', 'psf', '182000', 'I', 'thought', 'sale', 'price', '187000', 'At', 'price', 'psf', '1376', 'sf', 'unit', 'would', 'sell', '203108', 'what', 'import', 'view', 'rental', 'rate', 'b', 'rentabl', 'you', 'current', 'rental', 'cost', 'data', 'evalu', 'As', 'rentabl', 'I', 'believ', 'shown', '3bedroom', '35', 'bath', 'strongli', 'prefer', 'market', 'In', 'fact', 'abl', 'purchas', 'addit', 'lot', 'regan', 'would', 'build', '4', 'bedroom', 'unit', 'along', '3bedroom', 'plan', 'phillip', 'I', 'call', 'today', 'go', 'thoroughli', 'sincer', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc']","[('unit', 0.028571537), ('I', 0.023809597), ('lot', 0.023809597), ('would', 0.023809597), ('sell', 0.019047663), ('psf', 0.014285728), ('sq', 0.014285728), ('b', 0.014285728), ('plan', 0.014285728), ('3bedroom', 0.014285728)]",unit,0.02857153
64,64,58,"['enclos', 'preliminari', 'proforma', 'westgat', 'properti', 'austin', 'told', 'As', 'tell', 'proforma', 'project', 'produc', 'truli', 'except', 'return', '40', 'per', 'year', '3', 'year', 'thi', 'especi', 'attract', 'project', 'market', 'strong', 'austin', 'introduc', 'new', 'product', 'low', 'price', 'rang', 'market', 'thi', 'best', 'project', 'term', 'risk', 'reward', 'uncov', 'date', 'austin', 'market', 'the', 'project', 'approv', 'zone', 'requir', 'site', 'plan', 'As', 'smart', 'growth', 'corridor', 'area', 'design', 'citi', 'austin', 'prefer', 'develop', 'fast', 'track', 'complet', 'le', '6', 'month', 'addit', 'mani', 'current', 'sever', 'water', 'treatment', 'ordin', 'waiv', 'I', 'estim', 'lot', 'improv', 'cost', 'base', '28', 'lot', 'develop', 'investig', 'north', 'austin', 'includ', 'detentionretent', 'filtrat', 'pond', 'street', 'widen', 'even', 'though', 'properti', 'like', 'requir', 'street', 'widen', 'le', 'detentionretent', 'filtrat', 'pond', 'requir', 'I', 'use', 'data', 'cautiou', 'the', 'lone', 'star', 'ga', 'line', 'easement', 'lower', 'portion', 'properti', 'expect', 'impact', 'sale', 'significantli', 'other', 'project', 'quit', 'success', 'ident', 'relationship', 'pipelin', 'adjoin', 'singl', 'famili', 'residenti', 'project', 'St', 'edward', 'univers', 'As', 'infil', 'project', 'qualiti', 'surround', 'neighborhood', 'uneven', 'We', 'includ', 'fenc', 'around', 'entir', 'properti', 'may', 'put', 'westgat', 'cameron', 'loop', 'gate', 'commun', 'far', 'prefer', 'good', 'idea', 'screen', 'current', 'buyer', 'prefer', 'the', 'seller', 'accept', 'offer', 'thursday', 'even', 'price', '680000', 'extend', 'escrow', 'thi', 'enabl', 'u', 'probabl', 'obtain', 'approv', 'site', 'plan', 'close', 'contract', 'mean', 'close', 'AD', 'loan', 'rather', 'land', 'loan', 'improv', 'loan', 'thi', 'analysi', 'show', 'invest', '700000', '50', 'interest', 'profit', 'project', 'As', 'discuss', 'san', 'marco', 'also', 'discu', 'invest', 'lot', 'sell', 'lot', 'construct', 'entiti', 'profit', 'lot', 'I', 'believ', 'would', 'facilit', 'use', '1031', 'exchang', 'proce', 'deal', 'anoth', 'project', 'rental', 'deal', 'least', 'land', 'rental', 'project', 'would', 'equiti', 'project', 'you', 'would', 'need', 'discu', 'exchang', 'expert', 'first', 'larri', 'lewter', 'know', 'expert', 'field', 'san', 'antonio', 'know', 'anyon', 'I', 'send', 'packag', 'properti', 'prepar', 'broker', 'airborn', 'express', 'today', 'saturday', 'deliveri', 'onc', 'read', 'packag', 'review', 'proforma', 'would', 'want', 'schedul', 'tour', 'site', 'area', 'pleas', 'get', 'back', 'soon', 'schedul', 'permit', 'regard', 'site', 'visit', 'feel', 'free', 'call', 'time', 'you', 'reach', 'weekend', 'even', 'either', '5123381119', '5123381110', 'My', 'cell', 'phone', '5127487495', 'fax', '5123381103', 'I', 'look', 'forward', 'hear', 'work', 'project', 'sure', 'major', 'winner', 'I', 'regret', 'took', 'long', 'get', 'back', 'unusu', 'event', 'past', 'week', 'A', 'small', 'freakish', 'wind', 'storm', 'sever', '60mpg', 'downdraft', 'hit', 'south', 'part', 'austin', 'build', '10', 'town', 'home', 'one', 'unit', 'roof', 'deck', 'side', 'schedul', 'start', 'next', 'day', 'the', 'sever', 'downdraft', 'hit', 'deck', 'roof', 'enough', 'knock', 'the', 'citi', 'shut', 'project', 'week', 'took', 'anoth', 'week', 'get', 'everi', 'thing', 'back', 'tract', 'then', 'last', 'week', 'I', 'take', 'wife', 'emerg', 'she', 'bulg', 'materi', 'vertebra', 'spine', 'caus', 'extrem', 'pain', 'kept', 'bedridden', 'past', 'week', 'there', 'noth', 'like', 'wife', 'incapacit', 'realiz', 'enorm', 'number', 'thing', 'everyday', 'fortun', 'look', 'ok', 'long', 'run', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc', 'westgat', 'proformaphillip', 'allenxl']","[('project', 0.019915015), ('I', 0.011379966), ('austin', 0.009957459), ('the', 0.00853495), ('properti', 0.008534949), ('lot', 0.008534949), ('week', 0.008534949), ('site', 0.0071124425), ('would', 0.0071124425), ('thi', 0.007112442)]",project,0.01991501
65,65,59,"['get', 'your', 'privat', 'free', 'email', 'msn', 'hotmail', 'httpwwwhotmailcom', 'share', 'inform', 'creat', 'public', 'profil', 'httpprofilesmsncom', 'utilityxl', 'utilityxl']","[('utilityxl', 0.0967742), ('share', 0.06451613), ('httpprofilesmsncom', 0.06451613), ('profil', 0.06451613), ('public', 0.06451613), ('creat', 0.06451613), ('inform', 0.06451613), ('get', 0.06451613), ('email', 0.06451613), ('free', 0.06451613)]",utilityxl,0.096774
66,66,60,"['execut', 'impact', 'influenc', 'program', 'immedi', 'action', 'requir', 'Do', 'not', 'delet', 'As', 'part', 'execut', 'impact', 'influenc', 'program', 'particip', 'ask', 'gather', 'input', 'particip', 'manag', 'style', 'practic', 'experienc', 'immedi', 'manag', 'direct', 'report', 'eight', 'peerscolleagu', 'you', 'request', 'provid', 'feedback', 'particip', 'attend', 'next', 'program', 'your', 'input', 'ie', 'self', 'assess', 'manag', 'assess', 'direct', 'report', 'assess', 'peercolleagu', 'assess', 'combin', 'input', 'other', 'use', 'program', 'particip', 'develop', 'action', 'plan', 'improv', 'hisher', 'manag', 'style', 'practic', 'It', 'import', 'complet', 'assess', 'NO', 'later', 'than', 'close', 'OF', 'busi', 'thursday', 'septemb', '14', 'sinc', 'feedback', 'import', 'part', 'program', 'particip', 'ask', 'cancel', 'hisher', 'attend', 'enough', 'feedback', 'receiv', 'therefor', 'feedback', 'critic', 'To', 'complet', 'assess', 'pleas', 'click', 'follow', 'link', 'simpli', 'open', 'internet', 'browser', 'go', 'httpwwwfsddatasvccomenron', 'your', 'uniqu', 'ID', 'particip', 'ask', 'rate', 'uniqu', 'ID', 'particip', 'evh3ji', 'john', 'arnold', 'er93fx', 'john', 'lavorato', 'epexwx', 'hunter', 'shive', 'If', 'experi', 'technic', 'problem', 'pleas', 'call', 'denni', 'ward', 'fsd', 'data', 'servic', '7139428436', 'If', 'question', 'process', 'may', 'contact', 'debbi', 'nowak', 'enron', '7138533304', 'christi', 'smith', 'keilti', 'goldsmith', 'compani', '8584502554', 'thank', 'particip']","[('particip', 0.034351338), ('assess', 0.026717683), ('program', 0.022900859), ('feedback', 0.019084036), ('manag', 0.019084036), ('input', 0.015267208), ('ask', 0.015267208), ('john', 0.01145039), ('impact', 0.01145039), ('report', 0.01145039)]",particip,0.03435133
67,67,61,"['larri', 'just', 'note', 'touch', 'base', 'sagewood', 'townhom', 'develop', 'opportun', 'I', 'stumbl', 'across', 'duplex', 'sale', 'street', 'built', 'reagan', 'lehmann', '22', 'unit', 'sold', 'around', '2', 'million', '182000duplex', 'I', 'spoke', 'reagan', 'indic', 'unit', 'construct', 'would', 'avail', '180', 'are', 'unit', 'sell', 'significantli', 'differ', 'He', 'mention', 'unit', '1308', 'floor', 'plan', 'My', 'bid', '27', 'million', 'almost', '193000duplex', 'As', 'far', 'investor', 'new', 'project', 'I', 'still', 'interest', 'call', 'email', 'thought', 'phillip']","[('unit', 0.04201689), ('I', 0.03361349), ('million', 0.025210103), ('reagan', 0.025210103), ('plan', 0.01680672), ('floor', 0.01680672), ('My', 0.01680672), ('significantli', 0.01680672), ('He', 0.01680672), ('differ', 0.01680672)]",unit,0.0420168
68,68,62,"['teamenron', '04272001', '0101', 'PM', 'to09allison', 'hortonnaenronenron', 'amir', 'baignaenronenron', 'brandon', 'bang', 'erternaenronenron', 'brian', 'elliscorpenronenron', 'charl', 'philpotthrcor', 'penronenron', 'chri', 'P', 'woodnaenronenron', 'chri', 'tullhouectect', 'dale', 'Sm', 'ithcorpenronenron', 'dave', 'junenaenronenron', 'donald', 'suttonnaenronenro', 'n', 'felicia', 'buenrostrohrcorpenronenron', 'johnna', 'morrisoncorpenronenron', 'joe', 'dorncorpenronenron', 'kathryn', 'schulteahrcorpenronenron', 'leon', 'mcd', 'owellnaenronenron', 'leticia', 'barrioscorpenronenron', 'milton', 'brownhrcor', 'penronenron', 'raj', 'perubhatlacorpenronenron', 'shekar', 'komatireddynaenron', 'enron', 'andrea', 'yowmancorpenronenron', 'angi', 'obrianhrcorpenronenron', 'bonn', 'castellanohrcorpenronenron', 'gwynn', 'gorsuchnaenronenron', 'Jo', 'ann', 'matsoncorpenronenron', 'laquitta', 'washingtonhrcorpenronenron', 'rick', 'john', 'sonhrcorpenronenron', 'sandra', 'lighthillhrcorpenronenron', 'valeria', 'A', 'Ho', 'pehouectect', 'charlott', 'brownhrcorpenronenron', 'ronald', 'fainhrcorpen', 'ronenron', 'gari', 'fitchhrcorpenronenron', 'anna', 'harrishrcorpenronenron', 'keith', 'joneshrcorpenronenron', 'kristi', 'monsonnaenronenron', 'bobbi', 'mcni', 'elhrcorpenronenron', 'john', 'stablerhrcorpenronenron', 'michel', 'princen', 'aenronenron', 'jame', 'gramkenaenronenron', 'blair', 'hicksnaenronenron', 'jen', 'nifer', 'johnsoncontractorenron', 'communicationsenron', 'commun', 'jim', 'lit', 'tleenronenronxg', 'dale', 'lukertnaenronenron', 'donald', 'martinnaenronen', 'ron', 'andrew', 'matteinaenronenron', 'darvin', 'mitchellnaenronenron', 'mark', 'old', 'hamnaenronenron', 'wesley', 'pearsonnaenronenron', 'ramon', 'pizarroenrondev', 'lopmentenrondevelop', 'natali', 'raunaenronenron', 'william', 'redicknaen', 'ronenron', 'mark', 'A', 'richardsonnaenronenron', 'joseph', 'schniedersnaenronenr', 'ON', 'gari', 'simmonsnaenronenron', 'delaney', 'trimblenaenronenron', 'david', 'upto', 'nnaenronenron', 'mike', 'boeglerhrcorpenronenron', 'lyndel', 'clickhrcorpen', 'ronenron', 'gabriel', 'franconaenronenron', 'randi', 'grosshrcorpenronenron', 'arthur', 'johnsonhrcorpenronenron', 'danni', 'joneshrcorpenronenron', 'john', 'O', 'gdenhoustoneotteott', 'edgar', 'poncenaenronenron', 'traci', 'pursifullhrcorp', 'enronenron', 'lanc', 'stanleyhrcorpenronenron', 'frank', 'ermishouectect', 'J', 'ane', 'M', 'tholthouectect', 'jay', 'reitmeyerhouectect', 'keith', 'holsthouectect', 'matthew', 'lenharthouectect', 'mike', 'grigsbyhouectect', 'moniqu', 'sanchezho', 'uectect', 'phillip', 'K', 'allenhouectect', 'randal', 'L', 'gayhouectect', 'tori', 'kuy', 'kendallhouectect', 'brenda', 'H', 'fletcherhouectect', 'jeann', 'wukaschcorpenr', 'onenron', 'mari', 'theresa', 'franklinhouectect', 'mike', 'potternaenronenron', 'Na', 'tali', 'bakerhouectect', 'suzann', 'calcagnonaenronenron', 'alvin', 'thompsonco', 'rpenronenron', 'cynthia', 'franklincorpenronenron', 'jess', 'villarrealhouect', 'ect', 'joan', 'collinshoueese', 'joe', 'A', 'casashouectect', 'kelli', 'loockeenron', 'enronxg', 'lia', 'halsteadnaenronenron', 'meredith', 'homcohouectect', 'rober', 'allweinhouectect', 'scott', 'lovingnaenronenron', 'shanna', 'boudreauxenron', 'enronxg', 'steve', 'gillespiecorpenronenron', 'tamara', 'carternaenronenron', 'traci', 'woodnaenronenron', 'gabriel', 'fuzatenron', 'communicationsenron', 'commun', 'icat', 'jack', 'netekenron', 'communicationsenron', 'commun', 'lam', 'nguyen', 'naenronenron', 'camil', 'gerardcorpenronenron', 'craig', 'taylorhouectect', 'jessica', 'hangachnycmgusamgusa', 'kathi', 'gagelnycmgusamgusa', 'lisa', 'goulart', 'nycmgusamgusa', 'ruth', 'balladaresnycmgusamgusa', 'sid', 'struttnycmgusamgu', 'A', 'cc0920', 'subject094urg', 'owa', 'pleas', 'print', 'current', 'note', 'user', 'reason', 'for', 'use', 'outlook', 'web', 'access', 'owa', '1', 'onc', 'mailbox', 'migrat', 'note', 'outlook', 'outlook', 'c', 'lient', 'configur', 'comput', 'after', 'migrat', 'mailbox', 'abl', 'send', 'reciev', 'il', 'via', 'note', 'abl', 'start', 'use', 'outlook', 'c', 'onfigur', 'outlook', 'migrat', 'team', 'morn', 'mailbox', 'igrat', 'dure', 'period', 'use', 'outlook', 'web', 'access', 'owa', 'via', 'web', 'browser', 'internet', 'explor', '50', 'read', 'send', 'mail', 'pleas', 'note', 'your', 'calendar', 'entri', 'person', 'address', 'book', 'journal', 'T', 'odo', 'entri', 'import', 'note', 'avail', 'outlook', 'cl', 'ient', 'configur', 'desktop', '2', 'remot', 'access', 'mailbox', 'after', 'outlook', 'client', 'configur', 'use', 'outlook', 'web', 'access', 'OW', 'A', 'remot', 'access', 'mailbox', 'pleas', 'note', 'At', 'time', 'owa', 'client', 'access', 'connect', 'ing', 'enron', 'network', 'lan', 'there', 'futur', 'plan', 'make', 'owa', 'availab', 'le', 'home', 'travel', 'abroad', 'how', 'TO', 'access', 'outlook', 'web', 'access', 'owa', 'launch', 'internet', 'explor', '50', 'address', 'window', 'type', 'httpnahou', 'msowa01pexchangejohndo', 'substitut', 'johndo', 'first', 'last', 'name', 'click', 'enter', 'you', 'prompt', 'sign', 'box', 'shown', 'type', 'corpyour', 'u', 'er', 'id', 'person', 'name', 'NT', 'password', 'logon', 'owa', 'click', 'OK', 'you', 'abl', 'view', 'mailbox', '09', 'pleas', 'note', 'there', 'subtl', 'differ', 'function', 'betwe', 'n', 'outlook', 'owa', 'client', 'you', 'abl', 'mani', 'thin', 'g', 'owa', 'outlook', 'below', 'brief', 'list', 'function', 'not', 'avail', 'via', 'owa', 'featur', 'not', 'avail', 'use', 'owa', 'task', 'journal', 'spell', 'checker', 'offlin', 'use', 'print', 'templat', 'remind', 'time', 'deliveri', 'expir', 'outlook', 'rule', 'vote', 'messag', 'flag', 'messag', 'recal', 'share', 'contact', 'other', 'task', 'deleg', 'direct', 'resourc', 'book', 'person', 'distribut', 'list', 'question', 'OR', 'concern', 'If', 'question', 'concern', 'use', 'owa', 'client', 'pleas', 'contact', 'outlook', '2000', 'question', 'answer', 'mailbox', '09outlook2000enroncom', 'otherwis', 'may', 'contact', 'resolut', 'center', '097138531411', 'thank', 'outlook', '2000', 'migrat', 'team']","[('outlook', 0.01756356), ('owa', 0.01427037), ('access', 0.009879453), ('mailbox', 0.008781726), ('use', 0.008781726), ('note', 0.008781726), ('pleas', 0.0065862695), ('web', 0.0065862695), ('A', 0.006586269), ('client', 0.005488542)]",outlook,0.0175635
69,69,63,"['ina', 'I', 'schedul', 'meet', 'jean', 'mrha', 'tomorrow', '330']","[('ina', 0.125), ('I', 0.125), ('schedul', 0.125), ('meet', 0.125), ('jean', 0.125), ('mrha', 0.125), ('tomorrow', 0.125), ('330', 0.125)]",ina,0.12
70,70,64,"['forward', 'tim', 'beldenhouect', '09062000', '0727', 'AM', 'enron', 'capit', 'trade', 'resourc', 'corp', 'from', 'kevin', 'M', 'presto', '09052000', '0159', 'PM', 'To', 'tim', 'beldenhouectect', 'cc', 'roger', 'herndonhouectect', 'john', 'zufferlihouectect', 'lloyd', 'willhouectect', 'doug', 'gilbertsmithcorpenronenron', 'mike', 'swerzbinhouectect', 'subject', 'wow', 'Do', 'underestim', 'effect', 'internet', 'economi', 'load', 'growth', 'I', 'preach', 'tremend', 'growth', 'describ', 'last', 'year', 'the', 'util', 'infrastructur', 'simpli', 'handl', 'load', 'distribut', 'level', 'ultimatley', 'distribut', 'gener', 'requir', 'power', 'qualiti', 'reason', 'the', 'citi', 'austin', 'TX', 'experienc', '300', 'MW', 'load', 'growth', 'year', 'due', 'server', 'farm', 'technolog', 'compani', 'there', '100', 'MW', 'server', 'farm', 'tri', 'hook', 'hlp', 'speak', 'deliv', '12', 'month', 'due', 'distribut', 'infrastructur', 'issu', 'obvious', 'seattl', 'porltand', 'bois', 'denver', 'san', 'fran', 'san', 'jose', 'market', 'rude', 'awaken', 'next', '23', 'year', 'forward', 'kevin', 'M', 'prestohouect', '09052000', '0341', 'PM', 'enron', 'north', 'america', 'corp', 'from', 'john', 'D', 'suarez', '09052000', '0145', 'PM', 'To', 'kevin', 'M', 'prestohouectect', 'mark', 'dana', 'davishouectect', 'paul', 'J', 'broderickhouectect', 'jeffrey', 'millernaenronenron', 'cc', 'subject', 'forward', 'john', 'D', 'suarezhouect', '09052000', '0146', 'PM', 'georg', 'hopley', '09052000', '1141', 'AM', 'To', 'john', 'D', 'suarezhouectect', 'suresh', 'vasanenron', 'communicationsenron', 'communicationsenron', 'cc', 'subject', 'internet', 'data', 'gain', 'Is', 'major', 'power', 'drain', 'local', 'util', 'septemb', '05', '2000', 'In', '1997', 'littleknown', 'silicon', 'valley', 'compani', 'call', 'exodu', 'commun', 'open', '15000squarefoot', 'data', 'center', 'tukwila', 'the', 'mission', 'handl', 'internet', 'traffic', 'comput', 'server', 'region', 'grow', 'number', 'dotcom', 'fastforward', 'summer', '2000', 'exodu', 'wrap', 'construct', 'new', '13acr', '576000squarefoot', 'data', 'center', 'le', 'mile', 'origin', 'facil', 'sit', 'confluenc', 'sever', 'fiber', 'optic', 'backbon', 'exodu', 'plant', 'consum', 'enough', 'power', 'small', 'town', 'eventu', 'hous', 'internet', 'server', 'firm', 'avenu', 'A', 'microsoft', 'onviacom', 'exodu', 'compani', 'build', 'massiv', 'data', 'center', 'near', 'seattl', 'more', 'dozen', 'compani', 'name', 'like', 'abovenet', 'globix', 'hostpro', 'look', 'facil', 'hous', 'network', 'equip', 'internet', 'economi', 'It', 'big', 'busi', 'could', 'effect', 'everyth', 'monthli', 'electr', 'bill', 'eas', 'access', 'favorit', 'web', 'site', 'data', 'center', 'also', 'known', 'coloc', 'facil', 'server', 'farm', 'sprout', 'furiou', 'pace', 'tukwila', 'kent', 'valley', 'express', 'concern', 'whether', 'seattl', 'citi', 'light', 'puget', 'sound', 'energi', 'handl', 'power', 'necessari', 'run', '24hour', 'highsecur', 'facil', 'We', 'talk', 'half', 'dozen', 'custom', 'request', '445', 'megawatt', 'power', 'littl', 'area', 'near', 'southcent', 'mall', 'said', 'karl', 'karzmar', 'manag', 'revenu', 'requir', 'puget', 'sound', 'energi', 'that', 'equival', 'six', 'oil', 'refineri', 'A', 'rel', 'new', 'phenomenon', 'util', 'busi', 'rise', 'internet', 'data', 'center', 'util', 'veteran', 'scratch', 'head', 'puget', 'sound', 'energi', 'last', 'week', 'ask', 'washington', 'util', 'transport', 'commiss', 'accept', 'tariff', 'new', 'data', 'center', 'the', 'tariff', 'design', 'protect', 'compani', 'exist', 'residenti', 'busi', 'custom', 'foot', 'bill', 'new', 'base', 'station', 'necessari', 'support', 'project', 'those', 'base', 'station', 'could', 'cost', 'much', '20', 'million', 'karzmar', 'said', 'not', 'left', 'behind', 'seattl', 'citi', 'light', 'plan', 'bring', 'data', 'center', 'issu', 'thursday', 'seattl', 'citi', 'council', 'meet', 'for', 'util', 'provid', 'power', 'home', 'busi', 'school', 'region', 'new', 'complex', 'issu', 'On', 'one', 'hand', 'data', 'center', 'amaz', 'appetit', 'power', 'repres', 'potenti', 'lucr', 'busi', 'custom', 'the', 'facil', 'run', '24', 'hour', 'day', 'seven', 'day', 'week', 'therefor', 'could', 'becom', 'constant', 'revenu', 'stream', 'On', 'hand', 'requir', 'much', 'energi', 'could', 'potenti', 'flood', 'util', 'exorbit', 'capit', 'expenditur', 'who', 'pay', 'expenditur', 'mean', 'power', 'rate', 'area', 'still', 'open', 'debat', 'these', 'facil', 'call', 'extrem', 'dens', 'load', 'said', 'bob', 'royer', 'director', 'commun', 'public', 'affair', 'seattl', 'citi', 'light', 'the', 'entir', 'univers', 'washington', 'stadium', 'light', 'footbal', 'game', 'medic', 'school', 'averag', '31', 'megawatt', 'per', 'day', 'We', 'data', 'center', 'project', 'front', 'u', 'ask', '30', '40', '50', 'megawatt', 'with', '15', 'million', 'squar', 'foot', 'interg', 'complex', 'tukwila', 'one', 'biggest', 'data', 'center', 'sabey', 'corp', 'repurchas', '135', 'million', 'squarefoot', 'interg', 'east', 'facil', 'last', 'septemb', 'boe', 'space', 'defens', 'In', 'le', '12', 'month', 'develop', 'leas', '92', 'percent', 'sixbuild', 'complex', 'seven', 'differ', 'coloc', 'compani', 'It', 'probabl', 'largest', 'data', 'center', 'park', 'countri', 'boast', 'laurent', 'pool', 'chief', 'oper', 'offic', 'sabey', 'exodu', 'icg', 'commun', 'netstream', 'commun', 'pac', 'west', 'telecomm', 'zama', 'network', 'leas', 'space', 'offic', 'park', 'after', 'build', 'exodu', 'first', 'tukwila', 'facil', '1997', 'sabey', 'becom', 'expert', 'arena', 'facil', 'either', 'manag', 'develop', 'lo', 'angel', 'spokan', 'denver', 'pool', 'claim', 'firm', 'one', 'top', 'four', 'builder', 'internet', 'data', 'center', 'countri', 'As', 'peopl', 'access', 'internet', 'conduct', 'bandwidthheavi', 'task', 'listen', 'onlin', 'music', 'pool', 'said', 'need', 'coloc', 'space', 'seattl', 'continu', 'escal', 'but', 'seattl', 'the', 'need', 'data', 'center', 'space', 'grow', 'rapid', 'clip', 'mani', 'technolog', 'hub', 'throughout', 'countri', 'caus', 'similar', 'concern', 'among', 'util', 'place', 'texa', 'california', 'exodu', 'one', 'largest', 'provid', 'coloc', 'space', 'plan', 'nearli', 'doubl', 'amount', 'space', 'end', 'year', 'while', 'compani', 'amazoncom', 'run', 'server', 'farm', 'mani', 'hightech', 'compani', 'decid', 'outsourc', 'oper', 'compani', 'exodu', 'may', 'better', 'prepar', 'deal', 'internet', 'traffic', 'manag', 'We', '2', 'million', 'squar', 'foot', 'space', 'construct', 'plan', 'doubl', 'size', 'next', 'nine', 'month', 'yet', 'demand', 'right', 'data', 'center', 'space', 'said', 'steve', 'porter', 'account', 'execut', 'exodu', 'seattl', 'the', 'boom', 'market', 'coloc', 'space', 'left', 'local', 'util', 'industri', 'perplex', 'It', 'acceler', 'quantum', 'way', 'serv', 'growth', 'said', 'seattl', 'citi', 'light', 'royer', 'the', 'util', 'industri', 'almost', 'stun', 'way']","[('data', 0.013769747), ('center', 0.012909133), ('seattl', 0.009466668), ('util', 0.009466668), ('internet', 0.008606053), ('compani', 0.008606053), ('exodu', 0.008606053), ('the', 0.008606053), ('facil', 0.008606053), ('space', 0.008606053)]",data,0.01376974
71,71,65,"['john', 'J', 'lavoratoenron', '09062000', '0539', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'Re', 'the', 'commerci', 'support', 'peopl', 'hunter', 'want', 'make', 'commerci', 'manag']","[('commerci', 0.06976745), ('subject', 0.046511624), ('cc', 0.046511624), ('make', 0.046511624), ('want', 0.046511624), ('hunter', 0.046511624), ('peopl', 0.046511624), ('support', 0.046511624), ('the', 0.046511624), ('Re', 0.046511624)]",commerci,0.0697674
72,72,66,['resum'],"[('resum', 1.0)]",,
73,73,92,"['luci', 'We', 'discu', 'email', 'later', 'how', 'progress', 'creat', 'spreadsheet', 'you', 'probabl', 'need', 'close', 'file', 'attach', 'email', 'It', '200', 'I', 'realli', 'want', 'make', 'progress', 'two', 'file', 'phillip']","[('progress', 0.06122451), ('file', 0.06122451), ('email', 0.06122451), ('It', 0.040816326), ('200', 0.040816326), ('I', 0.040816326), ('want', 0.040816326), ('realli', 0.040816326), ('make', 0.040816326), ('need', 0.040816326)]",progress,0.0612245
74,74,93,"['luci', 'pleas', 'open', 'excel', 'file', 'input', 'rent', 'name', 'due', 'week', 'then', 'email', 'file', 'back']","[('file', 0.11111112), ('due', 0.07407407), ('rent', 0.07407407), ('email', 0.07407407), ('then', 0.07407407), ('week', 0.07407407), ('luci', 0.07407407), ('name', 0.07407407), ('open', 0.07407407), ('excel', 0.07407407)]",file,0.1111111
75,75,94,"['open', 'util', 'spreadsheet', 'tri', 'complet', 'analysi', 'whether', 'better', 'small', 'commerci', 'medium', 'commerci', 'lp1', 'you', 'need', 'get', 'usag', 'meter', 'last', '12', 'month', 'If', 'one', 'year', 'data', 'tell', 'cheaper', 'use', 'rate', 'describ', 'spreadsheet', 'thi', 'great', 'chanc', 'practic', 'excel']","[('commerci', 0.042857163), ('spreadsheet', 0.042857163), ('rate', 0.028571427), ('one', 0.028571427), ('year', 0.028571427), ('data', 0.028571427), ('tell', 0.028571427), ('cheaper', 0.028571427), ('use', 0.028571427), ('month', 0.028571427)]",commerci,0.04285716
76,76,67,"['We', 'receiv', 'complet', 'team', 'select', 'inform', 'It', 'imper', 'receiv', 'team', 'inform', 'email', 'phone', 'number', 'offic', 'asap', 'We', 'start', 'administr', 'without', 'inform', 'rater', 'le', 'time', 'provid', 'feedback', 'thank', 'assist', 'christi', 'origin', 'messag', 'from', 'christi', 'smith', 'mailtochristismithlrinetcom', 'sent', 'thursday', 'august', '31', '2000', '1033', 'AM', 'To', 'phillipkallenenroncom', 'Cc', 'debbi', 'nowak', 'email', 'deborah', 'evan', 'email', 'subject', 'receipt', 'team', 'select', 'form', 'execut', 'impact', 'influenc', 'program', 'import', 'high', 'Hi', 'phillip', 'We', 'appreci', 'prompt', 'attent', 'complet', 'team', 'select', 'inform', 'ideal', 'need', 'receiv', 'team', 'rater', 'team', 'select', 'form', 'sent', 'the', 'inform', 'need', 'easili', 'transfer', 'databas', 'directli', 'excel', 'spreadsheet', 'If', 'abil', 'complet', 'form', 'insert', 'list', 'still', 'requir', 'addit', 'inform', 'We', 'need', 'person', 'email', 'address', 'without', 'email', 'address', 'email', 'internet', 'link', 'ID', 'provid', 'feedback', 'send', 'automat', 'remind', 'via', 'email', 'It', 'would', 'also', 'good', 'person', 'phone', 'number', 'event', 'need', 'reach', 'So', 'need', 'receiv', 'complet', 'TS', 'excel', 'spreadsheet', 'need', 'instead', 'provid', 'need', 'inform', 'via', 'email', 'thank', 'assist', 'phillip', 'christi', 'L', 'smith', 'project', 'manag', 'client', 'servic', 'keilti', 'goldsmith', 'compani', '8584502554', 'origin', 'messag', 'from', 'phillip', 'K', 'allen', 'mailtophillipkallenenroncom', 'sent', 'thursday', 'august', '31', '2000', '1203', 'PM', 'To', 'debefsddatasvccom', 'subject', 'john', 'lavoratom', 'mike', 'grigsbyd', 'keith', 'holstd', 'frank', 'ermisd', 'steve', 'southd', 'jani', 'tholtd', 'scott', 'nealp', 'hunter', 'shivelyp', 'tom', 'martinp', 'john', 'arnoldp']","[('email', 0.028302066), ('inform', 0.025157385), ('need', 0.025157385), ('team', 0.022012696), ('receiv', 0.015723329), ('We', 0.015723329), ('complet', 0.015723329), ('select', 0.015723329), ('form', 0.012578644), ('phillip', 0.012578644)]",email,0.02830206
77,77,68,"['from', 'phillip', 'K', 'allen', '08292000', '0220', 'PM', 'To', 'markintelligencepresscom', 'cc', 'subject', 'mark', 'here', 'spreadsheet', 'detail', 'septemb', 'socal', 'trade', 'I', 'distinguish', 'buy', 'v', 'sell', 'phillip']","[('phillip', 0.06382982), ('trade', 0.042553194), ('detail', 0.042553194), ('septemb', 0.042553194), ('socal', 0.042553194), ('I', 0.042553194), ('v', 0.042553194), ('buy', 0.042553194), ('mark', 0.042553194), ('distinguish', 0.042553194)]",phillip,0.0638298
78,78,69,"['north', 'america', 'corp', 'from', 'matt', 'motley', '09012000', '0853', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'fyi', 'ray', 'nile', 'price', 'capspdf']","[('K', 0.049999997), ('To', 0.049999997), ('price', 0.049999997), ('nile', 0.049999997), ('ray', 0.049999997), ('fyi', 0.049999997), ('subject', 0.049999997), ('cc', 0.049999997), ('allenhouectect', 0.049999997), ('north', 0.049999997)]",K,0.04999999
79,79,70,"['richard', 'compar', 'california', 'product', 'number', '2000', 'california', 'ga', 'report', 'It', 'show', '410', 'but', 'might', 'two', 'util', 'receiv']","[('california', 0.090909116), ('show', 0.06060606), ('report', 0.06060606), ('util', 0.06060606), ('two', 0.06060606), ('might', 0.06060606), ('but', 0.06060606), ('410', 0.06060606), ('richard', 0.06060606), ('2000', 0.06060606)]",california,0.09090911
80,80,71,"['cooper', 'can', 'give', 'access', 'new', 'west', 'power', 'site', 'jay', 'reitmey', 'He', 'analyst', 'group', 'phillip']","[('jay', 0.07142858), ('power', 0.07142858), ('group', 0.07142858), ('analyst', 0.07142858), ('He', 0.07142858), ('reitmey', 0.07142858), ('cooper', 0.07142858), ('site', 0.07142858), ('give', 0.07142858), ('new', 0.07142858)]",jay,0.0714285
81,81,72,"['Hi', 'phillip', 'We', 'appreci', 'prompt', 'attent', 'complet', 'team', 'select', 'inform', 'ideal', 'need', 'receiv', 'team', 'rater', 'team', 'select', 'form', 'sent', 'the', 'inform', 'need', 'easili', 'transfer', 'databas', 'directli', 'excel', 'spreadsheet', 'If', 'abil', 'complet', 'form', 'insert', 'list', 'still', 'requir', 'addit', 'inform', 'We', 'need', 'person', 'email', 'address', 'without', 'email', 'address', 'email', 'internet', 'link', 'ID', 'provid', 'feedback', 'send', 'automat', 'remind', 'via', 'email', 'It', 'would', 'also', 'good', 'person', 'phone', 'number', 'event', 'need', 'reach', 'So', 'need', 'receiv', 'complet', 'TS', 'excel', 'spreadsheet', 'need', 'instead', 'provid', 'need', 'inform', 'via', 'email', 'thank', 'assist', 'phillip', 'christi', 'L', 'smith', 'project', 'manag', 'client', 'servic', 'keilti', 'goldsmith', 'compani', '8584502554', 'origin', 'messag', 'from', 'phillip', 'K', 'allen', 'mailtophillipkallenenroncom', 'sent', 'thursday', 'august', '31', '2000', '1203', 'PM', 'To', 'debefsddatasvccom', 'subject', 'john', 'lavoratom', 'mike', 'grigsbyd', 'keith', 'holstd', 'frank', 'ermisd', 'steve', 'southd', 'jani', 'tholtd', 'scott', 'nealp', 'hunter', 'shivelyp', 'tom', 'martinp', 'john', 'arnoldp']","[('need', 0.03433494), ('email', 0.025751175), ('inform', 0.021459298), ('team', 0.017167421), ('complet', 0.017167421), ('phillip', 0.017167421), ('spreadsheet', 0.012875548), ('sent', 0.012875548), ('via', 0.012875548), ('address', 0.012875548)]",need,0.0343349
82,82,73,"['teamenron', '04272001', '0100', 'PM', 'to09allison', 'hortonnaenronenron', 'amir', 'baignaenronenron', 'brandon', 'bang', 'erternaenronenron', 'brian', 'elliscorpenronenron', 'charl', 'philpotthrcor', 'penronenron', 'chri', 'P', 'woodnaenronenron', 'chri', 'tullhouectect', 'dale', 'Sm', 'ithcorpenronenron', 'dave', 'junenaenronenron', 'donald', 'suttonnaenronenro', 'n', 'felicia', 'buenrostrohrcorpenronenron', 'johnna', 'morrisoncorpenronenron', 'joe', 'dorncorpenronenron', 'kathryn', 'schulteahrcorpenronenron', 'leon', 'mcd', 'owellnaenronenron', 'leticia', 'barrioscorpenronenron', 'milton', 'brownhrcor', 'penronenron', 'raj', 'perubhatlacorpenronenron', 'shekar', 'komatireddynaenron', 'enron', 'andrea', 'yowmancorpenronenron', 'angi', 'obrianhrcorpenronenron', 'bonn', 'castellanohrcorpenronenron', 'gwynn', 'gorsuchnaenronenron', 'Jo', 'ann', 'matsoncorpenronenron', 'laquitta', 'washingtonhrcorpenronenron', 'rick', 'john', 'sonhrcorpenronenron', 'sandra', 'lighthillhrcorpenronenron', 'valeria', 'A', 'Ho', 'pehouectect', 'charlott', 'brownhrcorpenronenron', 'ronald', 'fainhrcorpen', 'ronenron', 'gari', 'fitchhrcorpenronenron', 'anna', 'harrishrcorpenronenron', 'keith', 'joneshrcorpenronenron', 'kristi', 'monsonnaenronenron', 'bobbi', 'mcni', 'elhrcorpenronenron', 'john', 'stablerhrcorpenronenron', 'michel', 'princen', 'aenronenron', 'jame', 'gramkenaenronenron', 'blair', 'hicksnaenronenron', 'jen', 'nifer', 'johnsoncontractorenron', 'communicationsenron', 'commun', 'jim', 'lit', 'tleenronenronxg', 'dale', 'lukertnaenronenron', 'donald', 'martinnaenronen', 'ron', 'andrew', 'matteinaenronenron', 'darvin', 'mitchellnaenronenron', 'mark', 'old', 'hamnaenronenron', 'wesley', 'pearsonnaenronenron', 'ramon', 'pizarroenrondev', 'lopmentenrondevelop', 'natali', 'raunaenronenron', 'william', 'redicknaen', 'ronenron', 'mark', 'A', 'richardsonnaenronenron', 'joseph', 'schniedersnaenronenr', 'ON', 'gari', 'simmonsnaenronenron', 'delaney', 'trimblenaenronenron', 'david', 'upto', 'nnaenronenron', 'mike', 'boeglerhrcorpenronenron', 'lyndel', 'clickhrcorpen', 'ronenron', 'gabriel', 'franconaenronenron', 'randi', 'grosshrcorpenronenron', 'arthur', 'johnsonhrcorpenronenron', 'danni', 'joneshrcorpenronenron', 'john', 'O', 'gdenhoustoneotteott', 'edgar', 'poncenaenronenron', 'traci', 'pursifullhrcorp', 'enronenron', 'lanc', 'stanleyhrcorpenronenron', 'frank', 'ermishouectect', 'J', 'ane', 'M', 'tholthouectect', 'jay', 'reitmeyerhouectect', 'keith', 'holsthouectect', 'matthew', 'lenharthouectect', 'mike', 'grigsbyhouectect', 'moniqu', 'sanchezho', 'uectect', 'phillip', 'K', 'allenhouectect', 'randal', 'L', 'gayhouectect', 'tori', 'kuy', 'kendallhouectect', 'brenda', 'H', 'fletcherhouectect', 'jeann', 'wukaschcorpenr', 'onenron', 'mari', 'theresa', 'franklinhouectect', 'mike', 'potternaenronenron', 'Na', 'tali', 'bakerhouectect', 'suzann', 'calcagnonaenronenron', 'alvin', 'thompsonco', 'rpenronenron', 'cynthia', 'franklincorpenronenron', 'jess', 'villarrealhouect', 'ect', 'joan', 'collinshoueese', 'joe', 'A', 'casashouectect', 'kelli', 'loockeenron', 'enronxg', 'lia', 'halsteadnaenronenron', 'meredith', 'homcohouectect', 'rober', 'allweinhouectect', 'scott', 'lovingnaenronenron', 'shanna', 'boudreauxenron', 'enronxg', 'steve', 'gillespiecorpenronenron', 'tamara', 'carternaenronenron', 'traci', 'woodnaenronenron', 'gabriel', 'fuzatenron', 'communicationsenron', 'commun', 'icat', 'jack', 'netekenron', 'communicationsenron', 'commun', 'lam', 'nguyen', 'naenronenron', 'camil', 'gerardcorpenronenron', 'craig', 'taylorhouectect', 'jessica', 'hangachnycmgusamgusa', 'kathi', 'gagelnycmgusamgusa', 'lisa', 'goulart', 'nycmgusamgusa', 'ruth', 'balladaresnycmgusamgusa', 'sid', 'struttnycmgusamgu', 'A', 'cc0920', 'subject092', 'surveyinform', 'email', 'current', 'note', 'user20', 'To', 'ensur', 'experi', 'success', 'migrat', 'note', 'outlook', 'necessari', 'gather', 'individu', 'person', 'inform', 'prior', 'date', 'f', 'migrat', 'pleas', 'take', 'minut', 'complet', 'fill', 'followin', 'g', 'survey', 'when', 'finish', 'simpli', 'click', 'repli', 'button', 'hit', 'Se', 'nd', 'your', 'survey', 'automat', 'sent', 'outlook', '2000', 'migrat', 'M', 'ailbox', 'thank', 'outlook', '2000', 'migrat', 'team', 'full', 'name', '20', 'login', 'ID', '20', 'extens', '20', 'offic', 'locat', '20', 'what', 'type', 'comput', 'desktop', 'laptop', 'both', '20', 'Do', 'pda', 'If', 'ye', 'type', 'none', 'ipaq', 'palm', 'pilo', 'jornada', '20', 'Do', 'permiss', 'access', 'anyon', 'emailcalendar', '20', 'If', 'ye', '20', 'doe', 'anyon', 'permiss', 'access', 'emailcalendar', '20', 'If', 'ye', '20', 'are', 'respons', 'updat', 'anyon', 'el', 'address', 'book', '20', 'If', 'ye', '20', 'Is', 'anyon', 'els', 'respons', 'updat', 'address', 'book', '20', 'If', 'ye', '20', 'Do', 'access', 'share', 'calendar', '20', 'If', 'ye', 'share', 'calendar', '20', 'Do', 'distribut', 'group', 'messag', 'maintain', 'as', 'mail', '20', 'If', 'ye', 'pleas', 'list', '20', 'pleas', 'list', 'note', 'databas', 'applic', 'current', 'use', '20', 'In', 'effort', 'plan', 'exact', 'datetim', 'migrat', 'also', 'need', 'know', 'what', 'normal', 'work', 'hour', 'from', 'To', '20', 'will', 'offic', 'near', 'futur', 'vacat', 'leav', 'etc', 'If', 'from', 'mmddyy', 'To', 'mmddyy', '20']","[('20', 0.027466334), ('If', 0.011236162), ('ye', 0.009987688), ('migrat', 0.007490741), ('anyon', 0.0062422697), ('Do', 0.006242269), ('A', 0.006242269), ('To', 0.0049937987), ('outlook', 0.0049937987), ('mike', 0.0049937987)]",20,0.02746633
83,83,74,"['john', 'lavoratom', 'mike', 'grigsbyd', 'keith', 'holstd', 'frank', 'ermisd', 'steve', 'southd', 'jani', 'tholtd', 'scott', 'nealp', 'hunter', 'shivelyp', 'tom', 'martinp', 'john', 'arnoldp']","[('john', 0.0769231), ('jani', 0.05128205), ('martinp', 0.05128205), ('tom', 0.05128205), ('shivelyp', 0.05128205), ('hunter', 0.05128205), ('nealp', 0.05128205), ('scott', 0.05128205), ('tholtd', 0.05128205), ('southd', 0.05128205)]",john,0.076923
84,84,75,"['from', 'phillip', 'K', 'allen', '08292000', '0220', 'PM', 'To', 'markintelligencepresscom', 'cc', 'subject', 'mark', 'here', 'spreadsheet', 'detail', 'septemb', 'socal', 'trade', 'I', 'distinguish', 'buy', 'v', 'sell', 'phillip']","[('phillip', 0.06382982), ('trade', 0.042553194), ('detail', 0.042553194), ('septemb', 0.042553194), ('socal', 0.042553194), ('I', 0.042553194), ('v', 0.042553194), ('buy', 0.042553194), ('mark', 0.042553194), ('distinguish', 0.042553194)]",phillip,0.0638298
85,85,76,"['greg', 'got', 'messag', 'good', 'luck', 'bike', 'ride', 'what', 'apart', 'are', 'set', 'studio', 'the', 'kid', 'back', 'school', 'otherwis', 'work', 'go', 'keith']","[('studio', 0.049999997), ('are', 0.049999997), ('go', 0.049999997), ('work', 0.049999997), ('otherwis', 0.049999997), ('school', 0.049999997), ('back', 0.049999997), ('kid', 0.049999997), ('the', 0.049999997), ('greg', 0.049999997)]",studio,0.04999999
86,86,77,"['whi', 'request', 'come']","[('whi', 0.33333334), ('request', 0.33333334), ('come', 0.33333334)]",whi,0.3333333
87,87,78,"['mark', 'here', 'spreadsheet', 'detail', 'septemb', 'socal', 'trade', 'I', 'distinguish', 'buy', 'v', 'sell', 'phillip']","[('I', 0.07692308), ('trade', 0.07692308), ('sell', 0.07692308), ('v', 0.07692308), ('buy', 0.07692308), ('distinguish', 0.07692308), ('mark', 0.07692308), ('spreadsheet', 0.07692308), ('septemb', 0.07692308), ('here', 0.07692308)]",I,0.0769230
88,88,79,"['mark', 'were', 'abl', 'log', 'enron', 'onlin', 'find', 'socal', 'today', 'I', 'follow', 'list', 'physic', 'deal', 'done', 'yesterday', 'today', 'phillip']","[('today', 0.08571431), ('I', 0.057142857), ('yesterday', 0.057142857), ('done', 0.057142857), ('deal', 0.057142857), ('physic', 0.057142857), ('list', 0.057142857), ('follow', 0.057142857), ('mark', 0.057142857), ('onlin', 0.057142857)]",today,0.0857143
89,89,80,"['brenda', 'can', 'send', 'address', 'colleg', 'station', 'phillip']","[('brenda', 0.14285715), ('can', 0.14285715), ('send', 0.14285715), ('address', 0.14285715), ('colleg', 0.14285715), ('station', 0.14285715), ('phillip', 0.14285715)]",brenda,0.1428571
90,90,81,"['sorri', 'report', 'august', '24', '2000']","[('sorri', 0.2), ('report', 0.2), ('august', 0.2), ('24', 0.2), ('2000', 0.2)]",sorri,0.
91,91,82,"['mark', 'the', 'follow', 'guest', 'password', 'allow', 'temporari', 'view', 'access', 'enrononlin', 'pleas', 'note', 'person', 'ID', 'password', 'case', 'sensit', 'guest', 'user', 'ID', 'gna45925', 'guest', 'password', 'yj53ku42', 'log', 'wwwenrononlinecom', 'instal', 'shockwav', 'use', 'instruct', 'I', 'set', 'composit', 'page', 'western', 'basi', 'cash', 'price', 'help', 'filter', 'product', 'the', 'titl', 'composit', 'page', 'mark', 'page', 'If', 'problem', 'log', 'call', '7138537041', 'kathi', 'moor', 'enrononlin', 'helpdesk', '713853help', '4357', 'the', 'shockwav', 'instal', 'found', 'within', 'about', 'enrononlin', 'home', 'page', 'after', 'open', 'about', 'enrononlin', 'use', 'right', 'scroll', 'bar', 'go', 'bottom', 'click', 'download', 'shockwav', 'follow', 'direct', 'after', 'load', 'shockwav', 'shut', 'reopen', 'browser', 'ie', 'microsoft', 'internet', 'explorernetscap', 'I', 'hope', 'find', 'site', 'use', 'sincer', 'phillip', 'allen']","[('shockwav', 0.028735695), ('page', 0.028735695), ('enrononlin', 0.028735695), ('use', 0.022988543), ('guest', 0.022988543), ('password', 0.022988543), ('the', 0.022988541), ('log', 0.017241387), ('mark', 0.017241387), ('I', 0.017241387)]",shockwav,0.02873569
92,92,83,"['mark', 'attach', 'spreadsheet', 'list', 'end', 'day', 'midmarket', 'socal', 'basi', 'socalsan', 'juan', 'spread', 'I', 'list', 'day', 'bidweek', 'reflect', 'financi', 'trade', 'socal', 'index', 'actual', 'ga', 'daili', 'print', 'bidweek', 'the', 'follow', 'observ', 'made', 'juli', '1', 'the', 'basi', 'market', 'anticip', 'socalsan', 'juan', 'spread', '81', 'v', 'actual', '79', '2', 'perceiv', 'index', '495', 'v', 'actual', '491', '3', 'socal', 'ga', 'daili', 'swap', 'trade', 'signific', 'premium', 'aug', '1', 'the', 'basi', 'market', 'anticip', 'socalsan', 'juan', 'spread', '104', 'v', 'actual', '99', '2', 'perceiv', 'index', '454', 'v', 'actual', '449', '3', 'ga', 'daili', 'spread', 'much', 'wider', 'bidweek', 'monthli', 'post', '4', 'socal', 'ga', 'daili', 'swap', 'trade', 'signific', 'premium', 'enron', 'onlin', 'allow', 'monitor', 'valu', 'financi', 'swap', 'index', 'well', 'spread', 'locat', 'pleas', 'call', 'question', 'phillip']","[('actual', 0.034883797), ('spread', 0.034883797), ('socal', 0.029069819), ('ga', 0.029069819), ('daili', 0.029069819), ('v', 0.029069819), ('index', 0.029069819), ('bidweek', 0.023255838), ('swap', 0.023255838), ('trade', 0.023255838)]",actual,0.03488379
93,93,84,"['alan', 'you', 'receiv', 'updat', 'number', 'keith', 'holst', 'call', 'receiv', 'phillip']","[('receiv', 0.15789478), ('alan', 0.10526316), ('you', 0.10526316), ('updat', 0.10526316), ('number', 0.10526316), ('keith', 0.10526316), ('holst', 0.10526316), ('call', 0.10526316), ('phillip', 0.10526316)]",receiv,0.1578947
94,94,85,"['suzann', 'can', 'give', 'detail', 'email', 'plan', 'prior', 'meet', 'what', 'I', 'need', 'provid', 'besid', 'headcount', 'otherwis', 'afternoon', 'next', 'week', 'would', 'fine', 'phillip']","[('provid', 0.04761905), ('need', 0.04761905), ('fine', 0.04761905), ('would', 0.04761905), ('week', 0.04761905), ('next', 0.04761905), ('afternoon', 0.04761905), ('otherwis', 0.04761905), ('headcount', 0.04761905), ('besid', 0.04761905)]",provid,0.0476190
95,95,86,"['colleen', 'pleas', 'add', 'mike', 'grigsbi', 'distribut', 'On', 'anoth', 'note', 'idea', 'patti', 'hold', 'phillip']","[('anoth', 0.07692308), ('On', 0.07692308), ('hold', 0.07692308), ('patti', 0.07692308), ('idea', 0.07692308), ('note', 0.07692308), ('colleen', 0.07692308), ('add', 0.07692308), ('grigsbi', 0.07692308), ('pleas', 0.07692308)]",anoth,0.0769230
96,96,95,"['onenron', 'subject', 'request', 'steve', 'kean', 'phillip', 'I', 'got', 'request', 'On', 'ga', 'side', 'I', 'think', 'keanlay', 'need', 'updat', 'tabl', 'prepar', 'month', 'ago', 'ive', 'attach', 'can', 'oblig', 'thank', 'alan', 'comn', 'forward', 'alan', 'comnespdxect', '04272001', '0142', 'PM', 'janel', 'guerreroenron', '04272001', '1244', 'PM', 'To', 'alan', 'comnespdxectect', 'jeff', 'dasovichnaenronenron', 'cc', 'paul', 'kaufmanpdxectect', 'richard', 'shapironaenronenron', 'subject', 'request', 'steve', 'kean', 'alan', 'steve', 'ask', 'updat', 'power', 'point', 'reflect', 'stupid', 'regulatorylegisl', 'decis', 'sinc', 'begin', 'year', 'ken', 'want', 'updat', 'chart', 'brief', 'book', 'next', 'week', 'ken', 'lay', 'tour', 'CA', 'He', 'also', 'want', 'forward', 'price', 'curv', 'ga', 'power', 'CA', 'can', 'get', 'three', 'document', 'monday', 'afternoon']","[('alan', 0.030303102), ('request', 0.02424247), ('updat', 0.024242466), ('steve', 0.024242466), ('want', 0.018181833), ('can', 0.018181833), ('04272001', 0.018181833), ('ken', 0.018181833), ('PM', 0.018181833), ('CA', 0.018181833)]",alan,0.03030310
97,97,96,"['mac', 'thank', 'research', 'report', 'eog', 'here', 'observ', 'ga', 'sale', '916000day', 'x', '365', 'day', '334340000year', 'estim', 'ga', 'price', '985721000334340000', '295mcf', 'actual', 'ga', 'price', 'around', '100mcf', 'higher', 'rise', 'recalc', 'ep', 'accur', 'ga', 'price', '334340000', 'mct', 'X', '1mcf116897000', 'share', 'outst', '286', 'addit', 'ep', 'X', '12', 'PE', 'multipl', '34', 'share', 'that', 'back', 'envelop', 'valuat', 'base', 'ga', 'price', 'I', 'think', 'crude', 'price', 'undervalu', 'tune', '10share', 'current', 'price', '37', 'nat', 'ga', '34', 'crude', '10', 'total', '81', 'can', 'take', 'look', 'number', 'play', 'devil', 'advoc', 'To', 'look', 'like', 'best', 'stock', 'also', 'send', 'report', 'calpin', 'tosco', 'slb', 'thank', 'phillip']","[('ga', 0.04321001), ('price', 0.04321001), ('share', 0.018518532), ('crude', 0.018518532), ('X', 0.018518532), ('thank', 0.018518532), ('34', 0.018518532), ('look', 0.018518532), ('report', 0.018518532), ('ep', 0.018518532)]",ga,0.0432100
98,98,97,"['phillip', 'We', 'work', 'differ', 'apart', 'today', 'listen', 'differ', 'peopl', 'mari', 'say', 'worri', 'ant', 'seem', 'invad', 'apartmenty', 'got', 'fax', 'wade', 'work', 'bulletin', 'board', 'I', 'need', 'I', 'let', 'tenant', 'know', 'go', 'ongav', '25', 'notic', 'mani', 'peopl', 'stay', 'apt', 'problem', 'resolvedalso', 'I', 'tenant', '29', 'complain', '28', 'use', 'fowl', 'languagei', 'sent', '28', 'leas', 'violat', 'see', 'go', 'call', 'tomorrow', 'thanx', 'luci', 'get', 'your', 'privat', 'free', 'email', 'msn', 'hotmail', 'httpwwwhotmailcom']","[('I', 0.03333338), ('tenant', 0.025000015), ('peopl', 0.025000015), ('work', 0.025000015), ('differ', 0.025000015), ('28', 0.025000015), ('go', 0.025000015), ('sent', 0.016666664), ('languagei', 0.016666664), ('fowl', 0.016666664)]",I,0.0333333
99,99,98,"['phillip', 'the', 'ac', 'I', 'bought', 'today', '17', 'cost', '16671', 'pd', 'ck1429', '81600', 'walmartalso', '81500', 'ralph', 'applianc', 'centerck1428', 'frig', 'stove', 'apt', '20b', 'ivoic', '000119', 'amt30856', 'stove15000', 'frig12500del', 'chrg1500tax1856', 'total30856fax', 'machin', 'for', 'ffice', 'CK', '142710825', 'from', 'steelman', 'offic', 'produc', 'TS', 'thanx', 'luci', 'get', 'your', 'privat', 'free', 'email', 'msn', 'hotmail', 'httpwwwhotmailcom']","[('CK', 0.020833334), ('ffice', 0.020833334), ('steelman', 0.020833334), ('from', 0.020833334), ('142710825', 0.020833334), ('produc', 0.020833334), ('total30856fax', 0.020833334), ('machin', 0.020833334), ('TS', 0.020833334), ('for', 0.020833334)]",CK,0.02083333
100,100,99,"['phillip', 'today', 'one', 'day', 'wade', 'go', 'pay', 'fine', 'I', 'go', 'take', 'take', 'alot', 'time', 'scheduleif', 'get', 'chanc', 'mention', 'need', 'tri', 'fix', 'van', 'tht', 'go', 'get', 'ever', 'need', 'tomorrow', 'gari', 'go', 'herei', 'go', 'iwil', 'email', 'tomorrow', 'luci', 'get', 'your', 'privat', 'free', 'email', 'msn', 'hotmail', 'httpwwwhotmailcom']","[('go', 0.07692318), ('get', 0.05128209), ('take', 0.038461547), ('email', 0.038461547), ('tomorrow', 0.038461547), ('need', 0.038461547), ('ever', 0.025641019), ('gari', 0.025641019), ('herei', 0.025641019), ('van', 0.025641019)]",go,0.0769231
101,101,100,"['I', 'check', 'exercis', 'option', 'smith', 'barney', 'enron', 'kind', 'exclus', 'pain', 'weber', 'I', 'start', 'exercis', 'I', 'go', 'use', 'proce', 'buy', 'anoth', 'apart', 'complex', 'what', 'think', 'sell', 'jdsu', 'buy', 'sdli', 'also', 'look', 'eog', 'play', 'rise', 'oil', 'ga', 'price', 'thank', 'phillip']","[('I', 0.055555604), ('exercis', 0.041666687), ('buy', 0.041666687), ('look', 0.027777776), ('play', 0.027777776), ('sell', 0.027777776), ('jdsu', 0.027777776), ('sdli', 0.027777776), ('also', 0.027777776), ('what', 0.027777776)]",I,0.05555560
102,102,101,"['I', 'tri', 'new', 'address', 'I', 'dont', 'access', 'also', 'I', 'need', 'enter', 'domain']","[('I', 0.18181822), ('tri', 0.090909086), ('new', 0.090909086), ('address', 0.090909086), ('dont', 0.090909086), ('access', 0.090909086), ('also', 0.090909086), ('need', 0.090909086), ('enter', 0.090909086), ('domain', 0.090909086)]",I,0.1818182
103,103,102,"['thi', 'remind', 'there', 'friday', 'meet', 'august', '18', '2000', 'thi', 'meet', 'replac', 'everi', 'friday', 'meet', 'held', 'everi', 'friday', 'date', 'friday', 'august', '18', '2000', 'time', '230', 'pm', '430', 'pm', 'locat', '30c1', 'topic', 'ena', 'manag', 'committe', 'If', 'question', 'conflict', 'pleas', 'feel', 'free', 'call', '30643', 'bev', '37857', 'thank', 'kay', '30643']","[('friday', 0.062500075), ('meet', 0.05000004), ('2000', 0.037500013), ('18', 0.037500013), ('30643', 0.037500013), ('thi', 0.037500013), ('pm', 0.037500013), ('everi', 0.037500013), ('august', 0.037500013), ('bev', 0.024999995)]",friday,0.06250007
104,104,103,"['cooper', 'thi', 'websit', 'I', 'use', 'httpectpdxsunonectathamnavsetupindexhtm', 'should', 'I', 'use', 'differ', 'address']","[('I', 0.15), ('use', 0.15), ('cooper', 0.09999999), ('thi', 0.09999999), ('websit', 0.09999999), ('httpectpdxsunonectathamnavsetupindexhtm', 0.09999999), ('should', 0.09999999), ('differ', 0.09999999), ('address', 0.09999999)]",I,0.1
105,105,104,"['cooper', 'did', 'add', 'secur', 'expost', 'hourli', 'summari', 'It', 'keep', 'ask', 'addit', 'password', 'domain', 'what', 'I', 'need', 'enter', 'phillip']","[('addit', 0.055555552), ('keep', 0.055555552), ('enter', 0.055555552), ('need', 0.055555552), ('I', 0.055555552), ('what', 0.055555552), ('domain', 0.055555552), ('password', 0.055555552), ('cooper', 0.055555552), ('ask', 0.055555552)]",addit,0.05555555
106,106,105,"['stephani', 'pleas', 'grant', 'paul', 'request', 'eol', 'right', 'thank', 'phillip']","[('stephani', 0.11111111), ('pleas', 0.11111111), ('grant', 0.11111111), ('paul', 0.11111111), ('request', 0.11111111), ('eol', 0.11111111), ('right', 0.11111111), ('thank', 0.11111111), ('phillip', 0.11111111)]",stephani,0.1111111
107,107,106,"['onenron', 'subject', 'request', 'steve', 'kean', 'phillip', 'I', 'got', 'request', 'On', 'ga', 'side', 'I', 'think', 'keanlay', 'need', 'updat', 'tabl', 'prepar', 'month', 'ago', 'ive', 'attach', 'can', 'oblig', 'thank', 'alan', 'comn', 'forward', 'alan', 'comnespdxect', '04272001', '0142', 'PM', 'janel', 'guerreroenron', '04272001', '1244', 'PM', 'To', 'alan', 'comnespdxectect', 'jeff', 'dasovichnaenronenron', 'cc', 'paul', 'kaufmanpdxectect', 'richard', 'shapironaenronenron', 'subject', 'request', 'steve', 'kean', 'alan', 'steve', 'ask', 'updat', 'power', 'point', 'reflect', 'stupid', 'regulatorylegisl', 'decis', 'sinc', 'begin', 'year', 'ken', 'want', 'updat', 'chart', 'brief', 'book', 'next', 'week', 'ken', 'lay', 'tour', 'CA', 'He', 'also', 'want', 'forward', 'price', 'curv', 'ga', 'power', 'CA', 'can', 'get', 'three', 'document', 'monday', 'afternoon']","[('alan', 0.030303098), ('updat', 0.024242466), ('request', 0.024242466), ('steve', 0.024242463), ('want', 0.01818183), ('can', 0.01818183), ('04272001', 0.01818183), ('ken', 0.01818183), ('PM', 0.01818183), ('CA', 0.01818183)]",alan,0.03030309
108,108,107,"['cash', 'hehub', 'chicago', 'pepl', 'kati', 'socal', 'opal', 'permian', 'ga', 'daili', 'hehub', 'chicago', 'pepl', 'kati', 'socal', 'nwpl', 'permian', 'prompt', 'nymex', 'chicago', 'pepl', 'hsc', 'socal', 'nwpl']","[('chicago', 0.105263196), ('pepl', 0.105263196), ('socal', 0.105263196), ('nwpl', 0.07894738), ('kati', 0.07894738), ('hehub', 0.07894738), ('permian', 0.07894738), ('opal', 0.05263157), ('nymex', 0.05263157), ('prompt', 0.05263157)]",chicago,0.10526319
109,109,108,"['I', 'tri', 'run', 'model', 'work']","[('I', 0.2), ('tri', 0.2), ('run', 0.2), ('model', 0.2), ('work', 0.2)]",I,0.
110,110,109,"['north', 'america', 'corp', 'from', 'colleen', 'sullivan', '08092000', '1011', 'AM', 'To', 'keith', 'holsthouectect', 'andrew', 'H', 'lewishouectect', 'fletcher', 'J', 'sturmhouectect', 'larri', 'maycorpenronenron', 'kate', 'fraserhouectect', 'zimin', 'luhouectect', 'greg', 'couchhouectect', 'john', 'griffithcorpenronenron', 'sandra', 'F', 'brawnerhouectect', 'john', 'J', 'lavoratocorpenronenron', 'hunter', 'S', 'shivelyhouectect', 'phillip', 'K', 'allenhouectect', 'scott', 'nealhouectect', 'thoma', 'A', 'martinhouectect', 'steve', 'jacksonhouectect', 'cc', 'juli', 'A', 'gomezhouectect', 'stephani', 'millercorpenronenron', 'subject', 'transport', 'model', 'pleas', 'plan', 'attend', 'meet', 'friday', 'august', '11', '1115', '30c1', 'discu', 'transport', 'model', 'now', 'sever', 'trader', 'manag', 'transport', 'posit', 'sever', 'month', 'I', 'would', 'like', 'discu', 'issu', 'way', 'model', 'work', 'I', 'ask', 'zimin', 'Lu', 'research', 'mark', 'brees', 'john', 'griffith', 'structur', 'attend', 'avail', 'answer', 'technic', 'question', 'the', 'point', 'meet', 'get', 'issu', 'open', 'make', 'sure', 'everyon', 'comfort', 'use', 'model', 'posit', 'manag', 'make', 'sure', 'manag', 'book', 'believ', 'model', 'result', 'sinc', 'I', 'heard', 'concern', 'I', 'hope', 'take', 'advantag', 'opportun', 'discu', 'pleas', 'let', 'know', 'unabl', 'attend']","[('model', 0.024691464), ('I', 0.020576205), ('manag', 0.016460948), ('attend', 0.016460948), ('discu', 0.016460948), ('transport', 0.016460948), ('john', 0.016460946), ('sure', 0.012345691), ('make', 0.012345691), ('zimin', 0.012345691)]",model,0.02469146
111,111,111,"['luci', 'now', '44', 'rent', 'settl', 'coupl', 'month', 'need', 'focu', 'expens', 'recordkeep', 'first', 'I', 'want', 'implement', 'follow', 'chang', '1', 'No', 'overtim', 'without', 'written', 'email', 'instruct', '2', 'daili', 'timesheet', 'wade', 'fax', 'daili', '3', 'paycheck', 'issu', 'friday', 'state', 'bank', '4', 'No', 'expenditur', 'offic', 'landscap', 'necessari', 'basic', 'oper', 'move', 'checkbook', 'I', 'attach', 'spreadsheet', 'organ', 'check', 'sinc', 'jan', '1', 'when', 'open', 'file', 'go', 'checkbook', 'tab', 'look', 'yellow', 'highlight', 'item', 'I', 'question', 'item', 'pleas', 'gather', 'receipt', 'discu', 'phillip']","[('I', 0.029197125), ('item', 0.021897828), ('1', 0.021897828), ('daili', 0.021897828), ('checkbook', 0.021897828), ('No', 0.021897828), ('check', 0.014598536), ('sinc', 0.014598536), ('spreadsheet', 0.014598536), ('attach', 0.014598536)]",I,0.02919712
112,112,112,"['pleas', 'phillip', 'john', 'L', 'approv', 'thank', 'jeff', 'forward', 'jeffrey', 'A', 'shankmanhouect', '08082000', '0748', 'AM', 'arsystemectenroncom', '08072000', '070323', 'PM', 'To', 'jeffreyashankmanenroncom', 'cc', 'subject', 'your', 'approv', 'overdu', 'access', 'request', 'paultluccienroncom', 'thi', 'request', 'pend', 'approv', '8', 'day', 'pleas', 'click', 'httpitcappscorpenroncomsrrsapprovedetailaspid000000000000935email', 'jeffreyashankmanenroncom', 'approv', 'request', 'contact', 'irm', '7138535536', 'issu', 'request', 'ID', '000000000000935', 'request', 'creat', 'date', '72700', '21523', 'PM', 'request', 'for', 'paultluccienroncom', 'resourc', 'name', 'eol', 'US', 'natga', 'US', 'ga', 'phi', 'fwd', 'firm', 'nontexa', '1', 'month', 'resourc', 'type', 'applic']","[('request', 0.053846296), ('approv', 0.03846161), ('PM', 0.023076937), ('pleas', 0.023076937), ('jeffreyashankmanenroncom', 0.023076937), ('paultluccienroncom', 0.023076937), ('resourc', 0.023076937), ('US', 0.023076937), ('date', 0.015384609), ('72700', 0.015384609)]",request,0.05384629
113,113,113,"['pleas', 'review', 'act', 'upon', 'request', 'you', 'receiv', 'email', 'request', 'specifi', 'manag', 'pleas', 'click', 'httpitcappscorpenroncomsrrsapprovedetailaspid000000000001282email', 'phillipkallenenroncom', 'approv', 'th', 'request', 'ID', '000000000001282', 'request', 'creat', 'date', '8800', '91559', 'AM', 'request', 'for', 'frankermisenroncom', 'resourc', 'name', 'market', 'data', 'teler', 'basic', 'energi', 'resourc', 'type', 'applic']","[('request', 0.08333345), ('resourc', 0.041666683), ('pleas', 0.041666683), ('data', 0.027777774), ('91559', 0.027777774), ('AM', 0.027777774), ('for', 0.027777774), ('frankermisenroncom', 0.027777774), ('date', 0.027777774), ('name', 0.027777774)]",request,0.0833334
114,114,114,"['what', 'skill', 'whi', 'want', 'trade', 'desk']","[('what', 0.16666667), ('skill', 0.16666667), ('whi', 0.16666667), ('want', 0.16666667), ('trade', 0.16666667), ('desk', 0.16666667)]",what,0.1666666
115,115,115,"['from', 'jay', 'reitmey', '08072000', '1039', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'keith', 'holsthouectect', 'cc', 'subject', 'new', 'socal', 'curv']","[('allenhouectect', 0.05882353), ('K', 0.05882353), ('socal', 0.05882353), ('new', 0.05882353), ('subject', 0.05882353), ('cc', 0.05882353), ('holsthouectect', 0.05882353), ('keith', 0.05882353), ('from', 0.05882353), ('AM', 0.05882353)]",allenhouectect,0.0588235
116,116,116,"['luci', 'I', 'didnt', 'get', 'fax', 'juli', 'bank', 'statement', 'friday', 'can', 'refax', '713', '646', '2391', 'phillip']","[('friday', 0.06666667), ('statement', 0.06666667), ('2391', 0.06666667), ('646', 0.06666667), ('713', 0.06666667), ('refax', 0.06666667), ('can', 0.06666667), ('luci', 0.06666667), ('fax', 0.06666667), ('get', 0.06666667)]",friday,0.0666666
117,117,117,"['outlook', 'migrat', 'teamenron', '05112001', '0149', 'PM', 'to09cheryl', 'wilchynskihrcorpenronenron', 'cindi', 'R', 'wardnaenronenron', 'J', 'ann', 'hillcorpenronenron', 'sonja', 'gallowaycorpenronenron', 'bilal', 'bajwan', 'aenronenron', 'binh', 'phamhouectect', 'bradley', 'jonesenronenronxg', 'bruce', 'millscorpenronenron', 'chanc', 'rabonenronenronxg', 'chuck', 'amesnaenron', 'enron', 'david', 'baumbachhouectect', 'jad', 'doanenronenronxg', 'oneal', 'D', 'win', 'freehouectect', 'phillip', 'M', 'lovehouectect', 'sladanaanna', 'kulicenronenro', 'nxgate', 'victor', 'guggenheimhouectect', 'alejandra', 'chaveznaenronenron', 'ann', 'e', 'bikeenronenronxg', 'carol', 'franknaenronenron', 'darron', 'C', 'gironhouec', 'tect', 'elizabeth', 'L', 'hernandezhouectect', 'elizabeth', 'shimcorpenronenron', 'jeff', 'royedcorpenronenron', 'kam', 'keiserhouectect', 'kimat', 'singlahouect', 'CT', 'kristen', 'clauseenronenronxg', 'kulvind', 'fowlernaenronenron', 'kyle', 'R', 'lillyhouectect', 'lucha', 'johnsonnaenronenron', 'maria', 'garzahouectect', 'patrick', 'rydernaenronenron', 'ryan', 'orourkeenronenronxg', 'yuan', 'tiann', 'aenronenron', 'frank', 'ermishouectect', 'jane', 'M', 'tholthouectect', 'jay', 'reitm', 'eyerhouectect', 'keith', 'holsthouectect', 'matthew', 'lenharthouectect', 'mik', 'e', 'grigsbyhouectect', 'moniqu', 'sanchezhouectect', 'phillip', 'K', 'allenhouect', 'ect', 'randal', 'L', 'gayhouectect', 'tori', 'kuykendallhouectect', 'ina', 'normanho', 'uectect', 'jacki', 'travishouectect', 'michael', 'J', 'gasperhouectect', 'brenda', 'H', 'fletcherhouectect', 'jeann', 'wukaschcorpenronenron', 'mari', 'theresa', 'frank', 'linhouectect', 'mike', 'potternaenronenron', 'natali', 'bakerhouectect', 'suz', 'ann', 'calcagnonaenronenron', 'albert', 'stromquistcorpenronenron', 'rajesh', 'Ch', 'ettiarenrondevelopmentenrondevelop', 'derek', 'andersonhouectect', 'bra', 'hornhouectect', 'camil', 'gerardcorpenronenron', 'cathi', 'liranaenronen', 'ron', 'daniel', 'castagnolaenrondevelopmentenrondevelop', 'eva', 'towcorpen', 'ronenron', 'lam', 'nguyennaenronenron', 'andi', 'pacenaenronenron', 'anna', 'santuc', 'cinaenronenron', 'claudia', 'guerranaenronenron', 'clayton', 'vernoncorpenron', 'enron', 'david', 'ryancorpenronenron', 'eric', 'smithcontractorenron', 'communicat', 'ionsenron', 'commun', 'grace', 'kimnaenronenron', 'jason', 'kanissenronenr', 'onxgat', 'kevin', 'clinecorpenronenron', 'rika', 'imainaenronenron', 'todd', 'decoo', 'kcorpenronenron', 'beth', 'jensennpngenronenron', 'billi', 'harrillnpngenron', 'enron', 'martha', 'sumnerkenneynpngenronenron', 'phylli', 'millernpngenronenr', 'ON', 'sandi', 'olofsonnpngenronenron', 'theresa', 'byrnenpngenronenron', 'danni', 'M', 'ccartyetsenronenron', 'deni', 'tufgtenronenron', 'john', 'A', 'ayresfgtenron', 'nron', 'john', 'millarfgtenronenron', 'juli', 'armstrongcorpenronenron', 'maggi', 'schroederfgtenronenron', 'max', 'brownotsenronenron', 'randi', 'cantrellgco', 'nronenron', 'traci', 'scottcorpenronenron', 'charl', 'T', 'muzzyhouectect', 'cora', 'pendergrasscorpenronenron', 'darren', 'espeycorpenronenron', 'jessica', 'white', 'naenronenron', 'kevin', 'bradynaenronenron', 'kirk', 'lenarthouectect', 'lisa', 'kinseyhouectect', 'margi', 'straighthouectect', 'mark', 'L', 'schrabhouectect', 'souad', 'mahmassanicorpenronenron', 'tammi', 'gilmorenaenronenron', 'teresa', 'Mc', 'ombernaenronenron', 'we', 'dempseynaenronenron', 'barri', 'feldmannycmgusam', 'gusa', 'catherin', 'huynhnaenronenron', 'cc0920', 'subject092', 'surveyinform', 'email', '514', '01', 'current', 'note', 'user20', 'To', 'ensur', 'experi', 'success', 'migrat', 'note', 'outlook', 'necessari', 'gather', 'individu', 'person', 'inform', 'prior', 'date', 'f', 'migrat', 'pleas', 'take', 'minut', 'complet', 'fill', 'followin', 'g', 'survey', 'doubl', 'click', 'document', 'put', 'edit', 'mode', 'when', 'fini', 'h', 'simpli', 'click', 'repli', 'with', 'histori', 'button', 'hit', 'send', 'your', 'su', 'rvey', 'automat', 'sent', 'outlook', '2000', 'migrat', 'mailbox', 'thank', 'outlook', '2000', 'migrat', 'team', 'full', 'name', 'phillip', 'allen0909', 'login', 'ID', '09pallen', 'extens', '0937041', 'offic', 'locat', 'eb3210c', 'what', 'type', 'comput', 'desktop', 'laptop', 'both', '09both', 'Do', 'pda', 'If', 'ye', 'type', 'none', 'ipaq', 'palm', 'pilo', 'jornada', 'ipaq', 'Do', 'permiss', 'access', 'anyon', 'emailcalendar', '09', 'If', 'ye', '20', 'doe', 'anyon', 'permiss', 'access', 'emailcalendar', '09ye', 'ina', 'ran', 'gel', 'If', 'ye', '20', 'are', 'respons', 'updat', 'anyon', 'el', 'address', 'book', '09', 'If', 'ye', '20', 'Is', 'anyon', 'els', 'respons', 'updat', 'address', 'book', '20', 'If', 'ye', '20', 'Do', 'access', 'share', 'calendar', '20', 'If', 'ye', 'share', 'calendar', '20', 'Do', 'distribut', 'group', 'messag', 'maintain', 'as', 'mail', '20', 'If', 'ye', 'pleas', 'list', '20', 'pleas', 'list', 'note', 'databas', 'applic', 'current', 'use', '20', 'In', 'effort', 'plan', 'exact', 'datetim', 'migrat', 'also', 'need', 'know', 'what', 'normal', 'work', 'hour', 'from', '7', 'To', '5', 'will', 'offic', 'near', 'futur', 'vacat', 'leav', 'etc', 'If', 'from', 'mmddyy', 'To', 'mmddyy', '20']","[('20', 0.014510596), ('If', 0.010882921), ('ye', 0.009673696), ('migrat', 0.0084644705), ('anyon', 0.006046024), ('Do', 0.006046024), ('outlook', 0.006046024), ('access', 0.0048368014), ('ann', 0.0048368014), ('note', 0.0048368014)]",20,0.01451059
118,118,118,"['send', 'karen', 'buckley', 'trade', 'track', 'interview', 'conduct', 'may']","[('send', 0.125), ('karen', 0.125), ('buckley', 0.125), ('trade', 0.125), ('track', 0.125), ('interview', 0.125), ('conduct', 0.125), ('may', 0.125)]",send,0.12
119,119,119,"['attach', 'link', 'site', 'review', 'today', 'meet', 'the', 'site', 'work', 'progress', 'pleas', 'forward', 'comment', 'httpgasfundydevcorpenroncom', 'chri']","[('site', 0.1034483), ('progress', 0.068965524), ('the', 0.068965524), ('httpgasfundydevcorpenroncom', 0.068965524), ('comment', 0.068965524), ('forward', 0.068965524), ('pleas', 0.068965524), ('attach', 0.068965524), ('review', 0.068965524), ('meet', 0.068965524)]",site,0.103448
120,120,120,"['hunter', 'are', 'watch', 'alberto', 'Do', 'yahoo', 'messeng', 'hear', 'Me', 'turn', 'phillip']","[('hunter', 0.090909086), ('are', 0.090909086), ('watch', 0.090909086), ('alberto', 0.090909086), ('Do', 0.090909086), ('yahoo', 0.090909086), ('messeng', 0.090909086), ('hear', 0.090909086), ('Me', 0.090909086), ('turn', 0.090909086)]",hunter,0.09090908
121,121,121,"['build', 'someth', 'look', 'histor', 'price', 'save', 'curv', 'night', 'here', 'exampl', 'pull', 'socal', 'improv', 'could', 'includ', 'drop', 'menu', 'choos', 'curv', 'choic', 'indexgd', 'curv']","[('curv', 0.09523815), ('socal', 0.047619045), ('exampl', 0.047619045), ('choic', 0.047619045), ('choos', 0.047619045), ('menu', 0.047619045), ('drop', 0.047619045), ('includ', 0.047619045), ('could', 0.047619045), ('improv', 0.047619045)]",curv,0.0952381
122,122,122,"['john', 'the', 'long', 'term', 'deal', 'west', 'could', 'put', 'prudenc', 'pgt', 'transport', '2023', 'phillip']","[('put', 0.07692308), ('could', 0.07692308), ('2023', 0.07692308), ('transport', 0.07692308), ('pgt', 0.07692308), ('prudenc', 0.07692308), ('john', 0.07692308), ('long', 0.07692308), ('deal', 0.07692308), ('the', 0.07692308)]",put,0.0769230
123,123,123,"['luci', 'I', 'call', 'afternoon', 'discu', 'thing', 'email', 'phillip']","[('luci', 0.125), ('I', 0.125), ('call', 0.125), ('afternoon', 0.125), ('discu', 0.125), ('thing', 0.125), ('email', 0.125), ('phillip', 0.125)]",luci,0.12
124,124,124,"['north', 'america', 'corp', 'from', 'kristian', 'J', 'land', '07252000', '0224', 'PM', 'To', 'christoph', 'F', 'calgerpdxectect', 'jake', 'thomashouectect', 'frank', 'W', 'vickershouectect', 'elliot', 'mainzerpdxectect', 'michael', 'mcdonaldsfectect', 'david', 'parquetsfectect', 'laird', 'dyersfectect', 'jim', 'buerklepdxectect', 'jim', 'gilbertpdxectect', 'terri', 'W', 'donovanhouectect', 'jeff', 'G', 'slaughterenrondevelopmentenrondevelop', 'tim', 'beldenhouectect', 'mike', 'swerzbinhouectect', 'matt', 'motleypdxectect', 'robert', 'badeerhouectect', 'sean', 'crandallpdxectect', 'diana', 'scholteshouectect', 'tom', 'alonsopdxectect', 'mark', 'fischerpdxectect', 'tim', 'heizenraderpdxectect', 'cc', 'phillip', 'K', 'allenhouectect', 'subject', 'new', 'gener', 'updat', '72400']","[('W', 0.024000024), ('tim', 0.024000024), ('jim', 0.024000024), ('motleypdxectect', 0.016000003), ('crandallpdxectect', 0.016000003), ('sean', 0.016000003), ('badeerhouectect', 0.016000003), ('robert', 0.016000003), ('diana', 0.016000003), ('slaughterenrondevelopmentenrondevelop', 0.016000003)]",W,0.02400002
125,125,125,"['pleas', 'add', 'mike', 'grigsbi', 'distribut']","[('pleas', 0.2), ('add', 0.2), ('mike', 0.2), ('grigsbi', 0.2), ('distribut', 0.2)]",pleas,0.
126,126,126,"['volum', '17000', 'could', 'give', 'basi', 'period', 'sept', '00', 'may', '31', '2006', 'sept00', 'may', '31', '2008', 'sinc', 'I', 'assum', 'keep', 'stanfield', 'basi', 'rather', 'basi', 'malin', 'rocki', 'would', 'probabl', 'make', 'sens', 'show', 'basi', 'adjust', 'one', 'point', 'also', 'mid', 'offer', 'spread', 'term', 'thank', 'mike']","[('basi', 0.06493514), ('31', 0.038961057), ('may', 0.038961057), ('point', 0.025974022), ('probabl', 0.025974022), ('make', 0.025974022), ('sens', 0.025974022), ('show', 0.025974022), ('adjust', 0.025974022), ('one', 0.025974022)]",basi,0.0649351
127,127,127,"['wade', 'I', 'understood', 'number', 'one', 'prioriti', 'deal', 'vehicl', 'situat', 'you', 'need', 'take', 'care', 'week', 'luci', 'cant', 'hold', 'tenant', 'standard', 'vehicl', 'must', 'run', 'order', 'valid', 'sticker', 'staff', 'doesnt', 'live', 'If', 'decid', 'buy', 'small', 'truck', 'want', 'list', 'employ', 'credit', 'purpos', 'I', 'vouch', 'incom', 'phillip']","[('I', 0.036585387), ('vehicl', 0.036585387), ('small', 0.024390245), ('sticker', 0.024390245), ('staff', 0.024390245), ('doesnt', 0.024390245), ('live', 0.024390245), ('If', 0.024390245), ('decid', 0.024390245), ('buy', 0.024390245)]",I,0.03658538
128,128,128,"['merlin', 'ct', 'address', 'still', 'good', 'I', 'dont', 'know', 'mail', 'would', 'return']","[('merlin', 0.090909086), ('ct', 0.090909086), ('address', 0.090909086), ('still', 0.090909086), ('good', 0.090909086), ('I', 0.090909086), ('dont', 0.090909086), ('know', 0.090909086), ('mail', 0.090909086), ('would', 0.090909086)]",merlin,0.09090908
129,129,129,"['tim', 'can', 'author', 'access', 'west', 'power', 'site', 'keith', 'holtz', 'He', 'southern', 'california', 'basi', 'trader', 'two', 'year', 'contract', 'On', 'anoth', 'note', 'imagin', 'sarr', 'websit', 'lower', 'forecast', 'mcnari', 'discharg', 'may', 'It', 'seem', 'like', 'flow', 'lower', '130', 'rang', 'fewer', 'day', 'near', '170', 'also', 'second', 'half', 'april', 'doesnt', 'seem', 'pan', 'I', 'expect', 'the', 'outflow', 'stay', '100110', 'mcnari', 'can', 'email', 'call', 'addit', 'insight', 'thank', 'phillip']","[('lower', 0.025862088), ('can', 0.025862088), ('mcnari', 0.025862088), ('seem', 0.025862088), ('near', 0.017241377), ('second', 0.017241377), ('also', 0.017241377), ('170', 0.017241377), ('april', 0.017241377), ('130', 0.017241377)]",lower,0.02586208
130,130,130,"['here', '1st', 'draft', 'wish', 'list', 'system']","[('here', 0.16666667), ('1st', 0.16666667), ('draft', 0.16666667), ('wish', 0.16666667), ('list', 0.16666667), ('system', 0.16666667)]",here,0.1666666
131,131,131,"['skip', 'stone', 'anim', 'have', 'seen', 'u', 'late', 'come', 'see', 'what', 'new', 'wwwskippingstonecom', 'energi', 'expert', 'consult', 'energi', 'industri']","[('energi', 0.090909116), ('what', 0.060606062), ('come', 0.060606062), ('consult', 0.060606062), ('expert', 0.060606062), ('wwwskippingstonecom', 0.060606062), ('new', 0.060606062), ('skip', 0.060606062), ('see', 0.060606062), ('seen', 0.060606062)]",energi,0.09090911
132,132,132,"['1115', 'today', 'still', 'work']","[('1115', 0.25), ('today', 0.25), ('still', 0.25), ('work', 0.25)]",1115,0.2
133,133,133,"['north', 'america', 'corp', 'from', 'rebecca', 'W', 'cantrel', '07142000', '0231', 'PM', 'To', 'juli', 'A', 'gomezhouectect', 'stephani', 'millercorpenronenron', 'chri', 'meyerhouectect', 'judi', 'townsendhouectect', 'theresa', 'branneyhouectect', 'paul', 'T', 'luccidenectenron', 'jane', 'M', 'tholthouectect', 'steven', 'P', 'southhouectect', 'frank', 'ermishouectect', 'susan', 'W', 'pereirahouectect', 'georg', 'smithhouectect', 'randal', 'L', 'gayhouectect', 'jim', 'homcohouectect', 'colleen', 'sullivanhouectect', 'hunter', 'S', 'shivelyhouectect', 'ray', 'hammanhoueese', 'robert', 'supertyhouectect', 'edward', 'terryhouectect', 'scott', 'nealhouectect', 'tori', 'kuykendallhouectect', 'brenda', 'H', 'fletcherhouectect', 'jeff', 'coateshoueese', 'john', 'hodgecorpenronenron', 'janet', 'edwardscorpenronenron', 'ruth', 'concannonhouectect', 'sylvia', 'A', 'camposhouectect', 'paul', 'tatehoueese', 'phillip', 'K', 'allenhouectect', 'victor', 'lamadridhouectect', 'barbara', 'G', 'dillardhouectect', 'gari', 'L', 'paynehouectect', 'cc', 'subject', 'comment', 'order', '637', 'complianc', 'file', 'fyi', 'attach', 'initi', 'comment', 'ena', 'file', 'monday', 'order', '637', 'complianc', 'file', 'indic', 'pipelin', 'columbia', 'columbia', 'ga', 'for', 'pipelin', 'prioriti', 'list', 'file', 'plain', 'intervent']","[('file', 0.023041556), ('pipelin', 0.013824903), ('637', 0.013824903), ('order', 0.013824903), ('comment', 0.013824903), ('A', 0.013824903), ('paul', 0.013824903), ('columbia', 0.013824903), ('L', 0.013824903), ('W', 0.013824903)]",file,0.02304155
134,134,243,"['tara', 'I', 'receiv', 'email', 'set', 'paul', 'lucci', 'niccol', 'cortez', 'execut', 'id', 'the', 'right', 'set', 'fine', 'thank', 'help', 'phillip']","[('set', 0.08571431), ('id', 0.057142857), ('cortez', 0.057142857), ('help', 0.057142857), ('thank', 0.057142857), ('fine', 0.057142857), ('right', 0.057142857), ('the', 0.057142857), ('tara', 0.057142857), ('execut', 0.057142857)]",set,0.0857143
135,135,244,"['mari', 'are', 'sure', 'attach', 'right', 'there', 'file', 'attach', 'messag', 'pleas', 'tri', 'phillip']","[('attach', 0.13043483), ('mari', 0.08695652), ('are', 0.08695652), ('sure', 0.08695652), ('right', 0.08695652), ('there', 0.08695652), ('file', 0.08695652), ('messag', 0.08695652), ('pleas', 0.08695652), ('tri', 0.08695652)]",attach,0.1304348
136,136,134,"['north', 'america', 'corp', 'from', 'kenneth', 'shulklapp', '07142000', '0658', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'El', 'paso', 'blanco', 'avg', 'product', 'pleas', 'extend', 'intern', 'ga', 'trader', 'view', 'access', 'new', 'El', 'paso', 'blanco', 'avg', 'physic', 'NG', 'product', 'tori', 'kuykendahl', 'jane', 'tholt', 'administr', 'access', 'manag', 'eol', 'If', 'question', 'pleas', 'call', '37041', 'thank', 'phillip', 'allen']","[('paso', 0.031914912), ('product', 0.031914912), ('phillip', 0.031914912), ('El', 0.031914912), ('pleas', 0.031914912), ('access', 0.031914912), ('avg', 0.031914912), ('blanco', 0.031914912), ('kuykendahl', 0.021276593), ('physic', 0.021276593)]",paso,0.03191491
137,137,135,"['kay', 'I', 'weekend', 'I', 'sure', 'rest', 'famili', 'all', 'well', 'I', 'tri', 'bring', 'pictur', 'I', 'cant', 'bring', 'real', 'thing', 'keith']","[('I', 0.14705889), ('bring', 0.088235304), ('well', 0.058823522), ('thing', 0.058823522), ('real', 0.058823522), ('cant', 0.058823522), ('pictur', 0.058823522), ('kay', 0.058823522), ('tri', 0.058823522), ('weekend', 0.058823522)]",I,0.1470588
138,138,136,"['mike', 'here', 'net', 'open', 'socal', 'border', 'posit', 'elvi', 'cactu', 'let', 'tri', 'set', 'confer', 'call', 'phillip', 'john', 'talk', 'offer', 'backend', 'curv', 'roughli', 'speak', 'look', 'nomin', '3750', 'mmbtud', '14', 'year', 'may', '2010', 'elvi', '3000', 'mmbtud', 'cactu', 'fromjun', '2004', 'april', '2022', 'andi']","[('cactu', 0.04000002), ('mmbtud', 0.04000002), ('elvi', 0.04000002), ('14', 0.026666667), ('andi', 0.026666667), ('year', 0.026666665), ('look', 0.026666665), ('nomin', 0.026666665), ('3750', 0.026666665), ('roughli', 0.026666665)]",cactu,0.0400000
139,139,137,"['one', 'associ', 'one', 'analyst', 'forward', 'jana', 'giovanninihouect', '07112000', '0457', 'PM', 'from', 'jana', 'giovannini', '07112000', '0457', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'celest', 'robertshouectect', 'subject', 'assoc', 'west', 'desk', 'hey', 'phillip', 'I', 'receiv', 'note', 'celest', 'I', 'ena', 'staf', 'coordin', 'need', 'fill', 'attach', 'need', 'assess', 'form', 'I', 'send', 'resum', 'also', 'would', 'interest', 'new', 'class', 'analyst', 'start', 'busi', 'unit', 'aug', '3rd', 'assoc', 'start', 'aug', '28th', 'We', 'start', 'place', 'associ', 'would', 'like', 'see', 'interest', 'pleas', 'let', 'know', 'onc', 'I', 'receiv', 'need', 'assess', 'back', 'let', 'know', 'wait', 'month', 'I', 'happi', 'pull', 'coupl', 'resum', 'review', 'If', 'question', 'pleas', 'let', 'know', 'thank', 'forward', 'jana', 'giovanninihouect', '07112000', '0450', 'PM', 'from', 'dolor', 'muzzi', '07112000', '0417', 'PM', 'To', 'jana', 'giovanninihouectect', 'cc', 'subject', 'assoc', 'west', 'desk', 'I', 'believ', 'phillip', 'allen', 'ena', 'dolor', 'forward', 'dolor', 'muzzyhouect', '07112000', '0417', 'PM', 'from', 'phillip', 'K', 'allen', '07112000', '1254', 'PM', 'To', 'celest', 'robertshouectect', 'cc', 'subject', 'assoc', 'west', 'desk', 'celest', 'I', 'need', 'two', 'assocanalyst', 'west', 'ga', 'trade', 'desk', 'can', 'help', 'I', 'also', 'left', 'voic', 'mail', 'phillip', 'x37041']","[('I', 0.037037194), ('07112000', 0.028806685), ('PM', 0.028806685), ('phillip', 0.02469143), ('celest', 0.020576179), ('desk', 0.020576179), ('need', 0.020576179), ('jana', 0.020576179), ('assoc', 0.020576179), ('west', 0.020576179)]",I,0.03703719
140,140,138,"['from', 'robert', 'badeer', '07112000', '0244', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject']","[('phillip', 0.08333334), ('PM', 0.08333334), ('cc', 0.08333334), ('allenhouectect', 0.08333334), ('K', 0.08333334), ('from', 0.08333334), ('To', 0.08333334), ('badeer', 0.08333334), ('07112000', 0.08333334), ('robert', 0.08333334)]",phillip,0.0833333
141,141,139,"['north', 'america', 'corp', 'from', 'kimberli', 'hilli', '07112000', '0116', 'PM', 'To', 'jeffrey', 'A', 'shankmanhouectect', 'hunter', 'S', 'shivelyhouectect', 'phillip', 'K', 'allenhouectect', 'kevin', 'M', 'prestohouectect', 'thresa', 'A', 'allenhouectect', 'kristin', 'albrechthouectect', 'brent', 'A', 'pricehouectect', 'steve', 'jacksonhouectect', 'beth', 'perlmanhouectect', 'salli', 'beckhouectect', 'cc', 'barbara', 'lewishouectect', 'airam', 'arteagahouectect', 'cherylen', 'R', 'westbrookhouectect', 'patti', 'thompsonhouectect', 'felicia', 'doanhouectect', 'irena', 'D', 'hoganhouectect', 'ina', 'rangelhouectect', 'subject', 'system', 'meet', '718', 'pleas', 'note', 'john', 'lavorato', 'schedul', 'system', 'meet', 'tuesday', 'juli', '18', '200', '300', 'pm', 'eb3321', 'pleas', 'call', 'x30681', 'question', 'thank', 'kim', 'hilli']","[('A', 0.026845682), ('hilli', 0.020134246), ('allenhouectect', 0.020134246), ('meet', 0.020134246), ('pleas', 0.020134246), ('system', 0.020134244), ('718', 0.013422816), ('rangelhouectect', 0.013422816), ('westbrookhouectect', 0.013422816), ('patti', 0.013422816)]",A,0.02684568
142,142,140,"['I', 'would', 'look', 'properti', 'san', 'antonio', 'dalla']","[('I', 0.14285715), ('would', 0.14285715), ('look', 0.14285715), ('properti', 0.14285715), ('san', 0.14285715), ('antonio', 0.14285715), ('dalla', 0.14285715)]",I,0.1428571
143,143,141,"['celest', 'I', 'need', 'two', 'assocanalyst', 'west', 'ga', 'trade', 'desk', 'can', 'help', 'I', 'also', 'left', 'voic', 'mail', 'phillip', 'x37041']","[('I', 0.08571431), ('desk', 0.057142857), ('phillip', 0.057142857), ('mail', 0.057142857), ('voic', 0.057142857), ('left', 0.057142857), ('also', 0.057142857), ('help', 0.057142857), ('celest', 0.057142857), ('can', 0.057142857)]",I,0.0857143
144,144,142,"['how', 'tuesday', '1115', 'front', 'build']","[('how', 0.2), ('tuesday', 0.2), ('1115', 0.2), ('front', 0.2), ('build', 0.2)]",how,0.
145,145,143,"['pleas', 'add', 'mike', 'grigsbi', 'distribut', 'list']","[('pleas', 0.16666667), ('add', 0.16666667), ('mike', 0.16666667), ('grigsbi', 0.16666667), ('distribut', 0.16666667), ('list', 0.16666667)]",pleas,0.1666666
146,146,144,['test'],"[('test', 1.0)]",,
147,147,145,"['north', 'america', 'corp', 'from', 'john', 'J', 'lavorato', '07102000', '0403', 'PM', 'sent', 'kimberli', 'hilli', 'To', 'jeffrey', 'A', 'shankmanhouectect', 'hunter', 'S', 'shivelyhouectect', 'phillip', 'K', 'allenhouectect', 'steve', 'jacksonhouectect', 'kevin', 'M', 'prestohouectect', 'kristin', 'albrechthouectect', 'thresa', 'A', 'allenhouectect', 'brent', 'A', 'pricehouectect', 'cc', 'subject', 'system', 'meet', '711', 'thi', 'confirm', 'meet', 'tomorrow', 'tuesday', 'juli', '11', '200', 'pm', 'pleas', 'refer', 'meet', 'system', 'meet', 'also', 'note', 'follow', 'meet', 'the', 'meet', 'held', 'eb3321', 'call', 'kim', 'hilli', 'x30681', 'question', 'k']","[('meet', 0.054687645), ('A', 0.031250045), ('system', 0.023437517), ('allenhouectect', 0.023437515), ('hilli', 0.023437515), ('11', 0.015624995), ('juli', 0.015624995), ('tuesday', 0.015624995), ('confirm', 0.015624995), ('tomorrow', 0.015624995)]",meet,0.05468764
148,148,146,"['07102000', '0318', 'PM', 'jason', 'moor', '06262000', '1044', 'AM', 'To', 'scott', 'nealhouectect', 'cc', 'joel', 'henenbergnaenronenron', 'mari', 'G', 'gosnellhouectect', 'subject', 'natur', 'ga', 'custom', 'attach', 'pleas', 'find', 'spreadsheet', 'contain', 'list', 'natur', 'ga', 'custom', 'global', 'counterparti', 'databas', 'these', 'activ', 'counterparti', 'although', 'may', 'busi', 'current', 'If', 'question', 'pleas', 'feel', 'free', 'call', 'x33198', 'jason', 'moor']","[('counterparti', 0.032967046), ('custom', 0.032967046), ('jason', 0.032967046), ('moor', 0.032967046), ('pleas', 0.032967046), ('ga', 0.032967046), ('natur', 0.032967046), ('databas', 0.021978019), ('these', 0.021978019), ('contain', 0.021978019)]",counterparti,0.03296704
149,149,147,"['ina', 'pleas', 'sign', 'cours', 'whenev', 'hunter', 'sign', 'thank']","[('sign', 0.20000002), ('ina', 0.13333334), ('pleas', 0.13333334), ('cours', 0.13333334), ('whenev', 0.13333334), ('hunter', 0.13333334), ('thank', 0.13333334)]",sign,0.2000000
150,150,148,"['Al', 'I', 'good', 'enough', 'shape', 'ride', 'centuri', 'right', 'plu', 'Im', 'nurs', 'injuri', 'I', 'lunch', 'week', 'next', 'let', 'pick', 'day', 'phillip']","[('I', 0.0769231), ('Im', 0.05128205), ('day', 0.05128205), ('pick', 0.05128205), ('let', 0.05128205), ('next', 0.05128205), ('week', 0.05128205), ('lunch', 0.05128205), ('injuri', 0.05128205), ('Al', 0.05128205)]",I,0.076923
151,151,149,"['brenda', 'the', 'word', 'document', 'attach', 'noticecons', 'form', 'sale', 'the', 'excel', 'file', 'amort', 'tabl', 'note', 'you', 'use', 'addit', 'princip', 'reduct', 'record', 'prepay', 'pleas', 'email', 'back', 'confirm', 'receipt', 'phillip']","[('the', 0.056603797), ('prepay', 0.03773585), ('addit', 0.03773585), ('princip', 0.03773585), ('reduct', 0.03773585), ('record', 0.03773585), ('use', 0.03773585), ('receipt', 0.03773585), ('back', 0.03773585), ('note', 0.03773585)]",the,0.05660379
152,152,150,"['jeff', 'I', 'spoken', 'brenda', 'everyth', 'look', 'good', 'matt', 'lutz', 'suppos', 'email', 'languag', 'I', 'receiv', 'I', 'dont', 'follow', 'when', 'estim', 'close', 'date', 'let', 'know', 'els', 'I', 'need', 'phillip']","[('I', 0.09803929), ('close', 0.039215684), ('follow', 0.039215684), ('when', 0.039215684), ('estim', 0.039215684), ('dont', 0.039215684), ('date', 0.039215684), ('need', 0.039215684), ('els', 0.039215684), ('languag', 0.039215684)]",I,0.0980392
153,153,151,"['gari', 'I', 'also', 'speak', 'johnni', 'brown', 'san', 'antonio', 'gener', 'contractor', 'accord', 'johnni', 'I', 'would', 'pay', 'le', 'buy', 'factori', 'versu', 'purchas', 'panel', 'sinc', 'site', 'within', 'region', 'assum', 'true', 'I', 'work', 'directli', 'I', 'believ', 'sent', 'plan', 'they', 'prepar', 'kipp', 'flore', 'architect', 'can', 'confirm', 'price', 'direct', 'factori', 'distributor', 'If', 'estim', 'work', 'johnni', 'pleas', 'email', 'well', 'thank', 'time', 'I', 'excit', 'potenti', 'use', 'product', 'phillip', 'allen']","[('I', 0.052631695), ('johnni', 0.035087764), ('factori', 0.026315806), ('work', 0.026315806), ('can', 0.017543858), ('direct', 0.017543858), ('price', 0.017543858), ('confirm', 0.017543858), ('kipp', 0.017543858), ('prepar', 0.017543858)]",I,0.05263169
154,154,152,"['gari', 'thank', 'info']","[('gari', 0.33333334), ('thank', 0.33333334), ('info', 0.33333334)]",gari,0.3333333
155,155,153,"['anytim', '3', 'pm']","[('anytim', 0.33333334), ('3', 0.33333334), ('pm', 0.33333334)]",anytim,0.3333333
156,156,154,"['tim', 'matt', 'sent', 'email', 'attempt', 'organ', 'cem', 'wscc', 'data', 'tim', 'H', 'express', 'concern', 'reliabl', 'wscc', 'data', 'I', 'dont', 'know', 'scrap', 'wscc', 'keep', 'monitor', 'case', 'improv', 'let', 'know', 'think', 'phillip']","[('wscc', 0.07547175), ('know', 0.056603793), ('data', 0.056603793), ('tim', 0.056603793), ('scrap', 0.037735846), ('keep', 0.037735846), ('dont', 0.037735846), ('think', 0.037735846), ('let', 0.037735846), ('monitor', 0.037735846)]",wscc,0.0754717
157,157,155,"['folk', 'remain', 'offic', 'ena', 'yet', 'enrol', 'mandat', 'train', 'program', 'It', 'ena', 'goal', 'offic', 'program', 'end', 'calendar', 'year', '2000', 'the', 'cours', 'receiv', 'high', 'mark', 'effect', 'pleas', 'take', 'time', 'enrol', 'program', 'speak', 'HR', 'repres', 'need', 'help', 'get', 'sign', 'regard', 'delainey']","[('program', 0.05633808), ('offic', 0.04225354), ('ena', 0.04225354), ('enrol', 0.04225354), ('repres', 0.028169012), ('pleas', 0.028169012), ('take', 0.028169012), ('time', 0.028169012), ('speak', 0.028169012), ('HR', 0.028169012)]",program,0.0563380
158,158,156,"['luci', 'I', 'got', 'email', 'I', 'didnt', 'time', 'finish', 'I', 'read', 'weekend', 'ask', 'dad', 'ac', 'I', 'glad', 'enjoy', 'job', 'thi', 'weekend', 'I', 'mark', 'leas', 'rule', 'If', 'I', 'didnt', 'mention', 'I', '4th', 'paid', 'holiday', 'wade', 'have', 'good', 'weekend', 'I', 'talk', 'next', 'week', 'phillip']","[('I', 0.12500018), ('weekend', 0.055555586), ('didnt', 0.04166667), ('If', 0.027777767), ('mention', 0.027777767), ('4th', 0.027777767), ('paid', 0.027777767), ('holiday', 0.027777767), ('rule', 0.027777767), ('wade', 0.027777767)]",I,0.1250001
159,159,157,"['north', 'america', 'corp', 'from', 'david', 'W', 'delainey', '06302000', '0742', 'AM', 'sent', 'kay', 'chapman', 'To', 'raymond', 'bowenhouectect', 'we', 'colwellhouectect', 'janet', 'R', 'dietrichhouectect', 'jeff', 'donahuehouectect', 'gari', 'hickersonhouectect', 'john', 'J', 'lavoratocorpenronenron', 'georg', 'mcclellanhouectect', 'jere', 'C', 'overdykehouectect', 'brian', 'redmondhouectect', 'jeffrey', 'A', 'shankmanhouectect', 'colleen', 'sullivanhouectect', 'mark', 'E', 'haedickehouectect', 'vinc', 'J', 'kaminskihouectect', 'julia', 'murrayhouectect', 'greg', 'hermanscorpenronenron', 'paul', 'adaircorpenronenron', 'jefferi', 'aderhouectect', 'jame', 'A', 'ajellohouectect', 'jaim', 'alatorrenaenronenron', 'brad', 'alfordecphouectect', 'phillip', 'K', 'allenhouectect', 'john', 'arnoldhouectect', 'tim', 'beldenhouectect', 'michael', 'J', 'beyerhouectect', 'brian', 'bierbachdenectenron', 'donald', 'M', 'ect', 'origin', 'blackhouectect', 'greg', 'blaircorpenronenron', 'brad', 'blesiecorpenronenron', 'michael', 'W', 'bradleyhouectect', 'craig', 'breslauhouectect', 'christoph', 'F', 'calgerpdxectect', 'cari', 'M', 'carrabinecorpenronenron', 'georg', 'carrickhouectect', 'dougla', 'cliffordcorpenronenron', 'bob', 'cranehouectect', 'joseph', 'deffnerhouectect', 'kent', 'densleycorpenronenron', 'timothi', 'J', 'detmeringhouectect', 'W', 'david', 'duranhouectect', 'ranabir', 'duttcorpenronenron', 'craig', 'A', 'foxhouectect', 'juli', 'A', 'gomezhouectect', 'david', 'howecorpenronenron', 'mike', 'jakubikhouectect', 'scott', 'joseycorpenronenron', 'jeff', 'kinnemanhouectect', 'kyle', 'kitagawacalectect', 'fred', 'lagrastahouectect', 'billi', 'lemmonscorpenronenron', 'laura', 'lucecorpenronenron', 'richard', 'lydeckercorpenronenron', 'randal', 'maffetthouectect', 'rodney', 'malcolmhouectect', 'michael', 'mcdonaldsfectect', 'jesu', 'melendrezcorpenronenron', 'mmiller3enroncom', 'rob', 'milnthorpcalectect', 'gil', 'muhlcorpenronenron', 'scott', 'nealhouectect', 'edward', 'ondarzahouectect', 'michel', 'parkscorpenronenron', 'david', 'parquetsfectect', 'kevin', 'M', 'prestohouectect', 'steve', 'pruettcorpenronenron', 'daniel', 'reckhouectect', 'andrea', 'V', 'reedhouectect', 'jim', 'schwiegerhouectect', 'cliff', 'sheddnaenronenron', 'hunter', 'S', 'shivelyhouectect', 'stuart', 'staleylonectect', 'fletcher', 'J', 'sturmhouectect', 'thoma', 'M', 'suffieldcorpenronenron', 'bruce', 'sukalycorpenronenron', 'jake', 'thomashouectect', 'C', 'john', 'thompsoncorpenronenron', 'carl', 'tricolicorpenronenron', 'max', 'yzaguirrenaenronenron', 'salli', 'beckhouectect', 'nick', 'cocavessiscorpenronenron', 'peggi', 'hedstromcalectect', 'sheila', 'knudsencorpenronenron', 'jordan', 'mintzhouectect', 'david', 'oxleyhouectect', 'brent', 'A', 'pricehouectect', 'mike', 'swerzbinhouectect', 'alan', 'aronowitzhouectect', 'edward', 'D', 'baughmanhouectect', 'bryan', 'burnetthouectect', 'jame', 'I', 'ducotehouectect', 'dougla', 'B', 'dunnhouectect', 'stinson', 'gibnerhouectect', 'barbara', 'N', 'grayhouectect', 'robert', 'greerhouectect', 'jeffrey', 'T', 'hodgehouectect', 'andrew', 'kelemenhouectect', 'grant', 'massonhouectect', 'jess', 'neymanhouectect', 'ozzi', 'paganhouectect', 'mike', 'A', 'robertshouectect', 'william', 'romehouectect', 'lanc', 'schulerlegalhouectect', 'vasant', 'shanbhoguehouectect', 'gregori', 'L', 'sharphouectect', 'mark', 'taylorhouectect', 'sheila', 'tweedhouectect', 'greg', 'wolfehouectect', 'mark', 'doblernaenronenron', 'thoma', 'A', 'martinhouectect', 'steven', 'schneiderenrongateway', 'cc', 'cindi', 'skinnerhouectect', 'ted', 'C', 'blandhouectect', 'david', 'W', 'delaineyhouectect', 'marsha', 'schillerhouectect', 'shirley', 'tijerinacorpenronenron', 'christi', 'chapmanhouectect', 'stella', 'L', 'elyhouectect', 'kimberli', 'hillishouectect', 'yolanda', 'fordhouectect', 'donna', 'bakerhouectect', 'katherin', 'benedicthouectect', 'barbara', 'lewishouectect', 'janett', 'elbertsonhouectect', 'shirley', 'crenshawhouectect', 'carolyn', 'georgecorpenronenron', 'kimberli', 'brownhouectect', 'claudett', 'harveyhouectect', 'terrellyn', 'parkerhouectect', 'maria', 'elena', 'mendozanaenronenron', 'ina', 'rangelhouectect', 'debra', 'davidsonpdxectect', 'jessica', 'A', 'wentworthdenectenron', 'catherin', 'dumontpdxectect', 'betti', 'J', 'conewayhouectect', 'nicol', 'mayerhouectect', 'sherri', 'carpenterhouectect', 'susan', 'falloncorpenronenron', 'tina', 'rodehouectect', 'tonai', 'lehrcorpenronenron', 'iri', 'wongcalectect', 'rebeccayoungenroncom', 'maxin', 'E', 'levingstoncorpenronenron', 'lynn', 'pikofskycorpenronenron', 'luann', 'mitchellcorpenronenron', 'ana', 'alcantarahouectect', 'deana', 'fortinecorpenronenron', 'deborah', 'J', 'edisonhouectect', 'lisa', 'zarskyhouectect', 'angela', 'mccullochcalectect', 'dusti', 'warren', 'paezhouectect', 'cristina', 'zavalasfectect', 'felicia', 'doanhouectect', 'deni', 'watsoncorpenronenron', 'angi', 'collinshouectect', 'tammi', 'davisnaenronenron', 'gerri', 'taylorcorpenronenron', 'lori', 'leighhouectect', 'airam', 'arteagahouectect', 'tina', 'tennanthouectect', 'molli', 'gustafsonpdxectect', 'pilar', 'cerezonaenronenron', 'patti', 'thompsonhouectect', 'leticia', 'lealhouectect', 'darlen', 'C', 'forsythhouectect', 'rhonna', 'palmerhouectect', 'irena', 'D', 'hoganhouectect', 'joya', 'davishouectect', 'erica', 'bradenhouectect', 'anabel', 'gutierrezhouectect', 'jenni', 'heltonhouectect', 'christin', 'drummondhouectect', 'kevin', 'G', 'moorehouectect', 'dina', 'snowcorpenronenron', 'lillian', 'carrollhouectect', 'taffi', 'milliganhouectect', 'laura', 'hardercorpenronenron', 'nanci', 'hallhouectect', 'tina', 'rodehouectect', 'crystal', 'blairhouectect', 'angi', 'collinshouectect', 'donna', 'bakerhouectect', 'melissa', 'jonesnaenronenron', 'beth', 'A', 'ryanhouectect', 'shirley', 'crenshawhouectect', 'tamara', 'jae', 'blackhouectect', 'ami', 'cooperhouectect', 'kay', 'chapmanhouectect', 'subject', 'remind', 'updat', 'gi', 'inform', 'thi', 'remind', 'If', 'havent', 'taken', 'time', 'updat', 'gi', 'inform', 'pleas', 'It', 'essenti', 'function', 'perform', 'soon', 'possibl', 'pleas', 'read', 'follow', 'memo', 'sent', 'day', 'ago', 'question', 'regard', 'request', 'pleas', 'feel', 'free', 'call', 'ted', 'bland', '35275', 'with', 'enron', 'rapid', 'growth', 'need', 'maintain', 'abil', 'move', 'employe', 'oper', 'compani', 'new', 'ventur', 'To', 'essenti', 'one', 'process', 'enabl', 'u', 'collect', 'updat', 'retain', 'employe', 'data', 'In', 'spirit', 'one', 'enron', 'build', 'success', 'yearend', 'global', 'vpmd', 'perform', 'review', 'process', 'enron', 'vpmd', 'prc', 'request', 'enron', 'vice', 'presid', 'manag', 'director', 'updat', 'profil', 'current', 'respons', 'employ', 'histori', 'skill', 'educ', 'need', 'complet', 'via', 'HR', 'global', 'inform', 'system', 'hrgi', 'access', 'via', 'hrweb', 'home', 'page', 'intranet', 'just', 'go', 'hrwebenroncom', 'look', 'hrgi', 'link', 'Or', 'type', 'eglobalenroncom', 'command', 'line', 'browser', 'the', 'target', 'date', 'updat', 'profil', '7', 'juli', 'If', 'would', 'like', 'hard', 'copi', 'templat', 'could', 'fill', 'return', 'input', 'If', 'need', 'assist', 'hrgi', 'applic', 'pleas', 'contact', 'kathi', 'schultea', 'x33841', 'your', 'time', 'respons', 'request', 'greatli', 'appreci', 'thank', 'dave']","[('A', 0.009407589), ('J', 0.0075260513), ('david', 0.0065852823), ('updat', 0.0056445133), ('pleas', 0.0047037452), ('C', 0.0047037452), ('M', 0.0047037452), ('enron', 0.0047037452), ('W', 0.0047037452), ('mike', 0.0037629793)]",A,0.00940758
160,160,158,"['chart', 'today', 'meet', 'attach']","[('chart', 0.25), ('today', 0.25), ('meet', 0.25), ('attach', 0.25)]",chart,0.2
161,161,159,"['mark', 'We', 'current', 'backtest', 'storag', 'model', 'the', 'enclos', 'version', 'contain', 'delta', 'decis', 'variabl', 'you', 'mention', 'resourc', 'run', 'model', 'pleas', 'thi', 'help', 'u', 'gain', 'experi', 'market', 'v', 'model', 'I', 'go', 'distribut', 'articl', 'caminu', 'softwar', 'vendor', 'the', 'articl', 'illustr', 'option', 'associ', 'storag', 'oper', 'well', 'the', 'enron', 'research', 'storag', 'model', 'lot', 'like', 'although', 'implement', 'may', 'differ', 'let', 'know', 'question', 'zimin']","[('model', 0.047169883), ('the', 0.037735894), ('storag', 0.037735894), ('articl', 0.0283019), ('option', 0.01886792), ('oper', 0.01886792), ('associ', 0.01886792), ('enron', 0.01886792), ('illustr', 0.01886792), ('softwar', 0.01886792)]",model,0.04716988
162,162,160,"['voic', 'heal', 'go', 'use', 'real', 'time', 'messeng']","[('voic', 0.14285715), ('heal', 0.14285715), ('go', 0.14285715), ('use', 0.14285715), ('real', 0.14285715), ('time', 0.14285715), ('messeng', 0.14285715)]",voic,0.1428571
163,163,161,[],,,
164,164,162,"['ray', 'Is', 'detail', 'ga', 'cost', 'proxi', 'which', 'deliveri', 'point', 'public', 'use', 'basic', 'help', 'u', 'get', 'clarif', 'languag', 'averag', 'daili', 'cost', 'ga', 'deliveri', 'point', 'california', 'phillip']","[('deliveri', 0.06521741), ('ga', 0.06521741), ('cost', 0.06521741), ('point', 0.06521741), ('daili', 0.043478258), ('clarif', 0.043478258), ('languag', 0.043478258), ('u', 0.043478258), ('use', 0.043478258), ('averag', 0.043478258)]",deliveri,0.0652174
165,165,163,"['dear', 'phillip', 'frogger', 'leav', 'shockwavecom', 'soon', 'save', 'shockmachin', 'everi', 'frog', 'day', 'game', 'frogger', 'great', 'run', 'arcad', 'classic', 'leav', 'shockwavecom', 'pond', 'soon', 'the', 'good', 'news', 'download', 'shockmachin', 'forev', 'dont', 'know', 'shockmachin', 'you', 'download', 'shockmachin', 'free', 'save', 'download', 'favorit', 'play', 'offlin', 'fullscreen', 'whenev', 'want', 'download', 'frogger', 'noon', 'pst', 'june', '30th', 'still', 'site', 'shockwavecom', 'team', 'unsubscrib', 'instruct', 'sure', 'want', 'unsubscrib', 'stop', 'receiv', 'email', 'u', 'all', 'right', 'click', 'httpshockwave1m0netmushksaspepallen40enroncom', '27279']","[('shockmachin', 0.042735115), ('download', 0.042735115), ('frogger', 0.034188077), ('shockwavecom', 0.034188077), ('soon', 0.025641039), ('unsubscrib', 0.025641039), ('save', 0.025641039), ('leav', 0.025641039), ('want', 0.025641039), ('know', 0.017094012)]",shockmachin,0.04273511
166,166,164,"['north', 'america', 'corp', 'from', 'michael', 'walter', '06212000', '0417', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'paul', 'T', 'luccidenectenron', 'cc', 'tara', 'sweitzerhouectect', 'subject', 'ftdenver', 'book', 'eol', 'phil', 'paul', 'pleas', 'forward', 'note', 'torrey', 'moorer', 'tara', 'sweitzer', 'eol', 'depart', 'It', 'must', 'sent', 'per', 'request', 'ask', 'financi', 'deal', 'eol', 'bridg', 'ftdenver', 'book', 'instead', 'physic', 'ena', 'imdenv', 'book', 'thank', 'advanc', 'mick', 'walter', '34783', 'eb3299d']","[('eol', 0.037735898), ('book', 0.037735898), ('ftdenver', 0.028301902), ('tara', 0.028301902), ('walter', 0.028301902), ('paul', 0.028301902), ('per', 0.01886792), ('sent', 0.01886792), ('ask', 0.01886792), ('It', 0.01886792)]",eol,0.03773589
167,167,165,"['scott', 'I', 'email', 'question', 'friend', 'work', 'new', 'compani', 'I', 'think', 'I', 'know', 'answer', 'question', 'I', 'want', 'get', 'exact', 'detail', 'basic', 'offer', 'energi', 'onlin', 'fix', 'price', 'price', 'undercut', 'current', 'provid', 'then', 'sale', 'larg', 'enough', 'go', 'wholesal', 'market', 'hedg', 'lock', 'profit', 'the', 'risk', 'built', 'enough', 'margin', 'give', 'room', 'manag', 'price', 'risk', 'thi', 'best', 'guess', 'I', 'get', 'back', 'phillip']","[('I', 0.058823638), ('price', 0.03921573), ('get', 0.029411778), ('enough', 0.029411778), ('risk', 0.029411778), ('question', 0.029411778), ('profit', 0.019607838), ('hedg', 0.019607838), ('the', 0.019607838), ('go', 0.019607838)]",I,0.05882363
168,168,166,"['luci', 'I', 'want', 'speak', 'wade', 'He', 'call', 'work', 'home', 'Or', 'email', 'number', 'I', 'call', 'I', 'would', 'like', 'gari', 'direct', 'wade', 'renov', 'task', 'give', 'work', 'order', 'normal', 'mainten', 'I', 'call', 'tomorrow', 'discu', 'item', 'offic', 'Do', 'need', 'mari', 'come', 'friday', 'I', 'think', 'I', 'guess', 'answer', 'I', 'might', 'stop', 'friday', 'phillip']","[('I', 0.09411781), ('call', 0.047058858), ('work', 0.035294127), ('friday', 0.035294127), ('wade', 0.035294127), ('Do', 0.023529405), ('offic', 0.023529405), ('need', 0.023529405), ('discu', 0.023529405), ('think', 0.023529405)]",I,0.0941178
169,169,167,['httpectpdxsunoneectenroncomtheizenwsccnav'],"[('httpectpdxsunoneectenroncomtheizenwsccnav', 1.0)]",,
170,170,168,"['present', 'It', 'shame', 'caiso', 'doesnt', 'provid', 'actual', 'gener', 'unit', 'the', 'wscc', 'data', 'dicey', 'dont', 'juli', '1999', 'cemm', 'come', 'delay', 'ultim', 'best', 'sourc', 'for', 'purpos', 'caiso', 'may', 'suffic', 'I', 'think', 'probabl', 'know', 'alreadi', 'siginific', 'differ', 'schedul', 'actual', 'gener', 'you', 'pull', 'schedul', 'If', 'someon', 'doesnt', 'schedul', 'gener', 'gener', 'either', 'instruct', 'uninstruct', 'miss', 'you', 'may', 'also', 'miss', 'gener', 'northern', 'california', 'muni', 'smud', 'schedul', 'net', 'load', 'caiso', 'that', '1500', 'MW', 'load', '1200', 'MW', 'gener', 'may', 'simpli', 'schedul', '300', 'MW', 'load', 'sc', 'transfer', 'import', '300', 'MW', 'have', 'said', 'probabl', 'close', 'enough', 'better', 'altern', 'gener', 'side', 'On', 'load', 'side', 'I', 'think', 'I', 'would', 'simpli', 'use', 'caiso', 'actual', 'load', 'while', 'dont', 'split', 'np15', 'sp15', 'I', 'think', 'use', 'actual', 'number', 'better', 'schedul', 'number', 'the', 'util', 'play', 'lot', 'game', 'load', 'side', 'usual', 'underschedul', 'depend', 'price', 'I', 'think', 'present', 'look', 'good', 'It', 'would', 'use', 'share', 'other', 'finish', 'Id', 'like', 'see', 'much', 'ga', 'demand', 'go', 'addit', 'GW', 'gasgener', 'electr', 'especi', 'compar', 'ga', 'consumpt', 'I', 'surpris', 'small', 'ueg', 'consumpt', 'compar', 'us', 'If', 'largest', 'margin', 'consum', 'obvious', 'differ', 'stori', 'let', 'talk']","[('gener', 0.028673984), ('schedul', 0.025089724), ('load', 0.025089724), ('I', 0.025089724), ('caiso', 0.017921206), ('MW', 0.017921206), ('actual', 0.017921206), ('think', 0.017921206), ('may', 0.014336946), ('side', 0.014336946)]",gener,0.02867398
171,171,169,"['check', 'NP', 'gen', 'load', 'amw']","[('check', 0.2), ('NP', 0.2), ('gen', 0.2), ('load', 0.2), ('amw', 0.2)]",check,0.
172,172,170,"['oncomga', 'all', 'ga', 'report', 'west', 'desk', 'call', 'brian', 'hoskin', 'password']","[('oncomga', 0.1), ('all', 0.1), ('ga', 0.1), ('report', 0.1), ('west', 0.1), ('desk', 0.1), ('call', 0.1), ('brian', 0.1), ('hoskin', 0.1), ('password', 0.1)]",oncomga,0.
173,173,171,"['oncomga', 'all', 'ga', 'report', 'west', 'desk', 'call', 'brian', 'hoskin', 'password']","[('oncomga', 0.1), ('all', 0.1), ('ga', 0.1), ('report', 0.1), ('west', 0.1), ('desk', 0.1), ('call', 0.1), ('brian', 0.1), ('hoskin', 0.1), ('password', 0.1)]",oncomga,0.
174,174,172,"['httpecthouwebcl1ntectenroncomga', 'all', 'ga', 'report', 'west', 'desk', 'call', 'brian', 'hoskin', 'password']","[('httpecthouwebcl1ntectenroncomga', 0.1), ('all', 0.1), ('ga', 0.1), ('report', 0.1), ('west', 0.1), ('desk', 0.1), ('call', 0.1), ('brian', 0.1), ('hoskin', 0.1), ('password', 0.1)]",httpecthouwebcl1ntectenroncomga,0.
175,175,173,"['ned', 'regard', 'waha', 'storag', 'west', 'desk', 'strong', 'need', 'storag', 'alway', 'will', 'show', 'bid', 'base', 'current', 'summerwint', 'spread', 'cycl', 'valu', 'the', 'follow', 'assumpt', 'made', 'establish', 'bid', '5', 'daili', 'inject', 'capac', '10', 'daili', 'withdraw', 'capac', '1', 'fuel', 'inject', '001mmbtu', 'variabl', 'inject', 'withdraw', 'fee', 'also', 'undiscount', 'june', '01', 'januari', '02', 'spread', '060', 'exist', 'time', 'bid', 'bid', '1', 'year', 'storag', 'contract', 'begin', 'june', '01', 'base', 'assumpt', '005', 'mmbtumonth', '060year', 'demand', 'charg', 'I', 'sure', 'exactli', 'need', 'pleas', 'call', 'email', 'comment', 'phillip', 'allen']","[('bid', 0.03649643), ('storag', 0.029197121), ('inject', 0.029197121), ('1', 0.021897826), ('daili', 0.021897826), ('spread', 0.021897826), ('withdraw', 0.021897826), ('assumpt', 0.021897826), ('01', 0.021897826), ('capac', 0.021897826)]",bid,0.0364964
176,176,174,"['felix', 'network', 'login', 'pallen', 'pw', 'ke7davi', 'note', 'pw', 'synergi', 'My', 'locat', '3210b', 'phillip']","[('pw', 0.12000002), ('synergi', 0.080000006), ('ke7davi', 0.080000006), ('3210b', 0.080000006), ('locat', 0.080000006), ('My', 0.080000006), ('felix', 0.080000006), ('login', 0.080000006), ('pallen', 0.080000006), ('note', 0.080000006)]",pw,0.1200000
177,177,175,"['luci', 'click', 'attach', 'see', 'format', 'record', 'expens', 'you', 'keep', 'log', 'paper', 'comput', 'the', 'comput', 'would', 'better', 'send', 'updat', 'what', 'think', 'open', 'noon', 'saturday', 'thi', 'might', 'conveni', 'collect', 'rent', 'show', 'open', 'apart', 'We', 'adjust', 'offic', 'hour', 'anoth', 'day', 'phillip']","[('open', 0.04054056), ('comput', 0.04054056), ('rent', 0.027027028), ('saturday', 0.027027028), ('thi', 0.027027028), ('might', 0.027027028), ('conveni', 0.027027028), ('collect', 0.027027028), ('apart', 0.027027028), ('show', 0.027027028)]",open,0.0405405
178,178,176,"['jeff', 'I', 'respond', 'offer', 'monday', 'there', '35', 'million', 'expans', 'ad', '250', 'job', 'burnet', 'I', 'tempt', 'hold', '3000acr', 'owner', 'financ', 'would', 'still', 'work', 'Do', 'opinion', 'phillip']","[('I', 0.061224505), ('financ', 0.040816326), ('hold', 0.040816326), ('3000acr', 0.040816326), ('owner', 0.040816326), ('tempt', 0.040816326), ('would', 0.040816326), ('opinion', 0.040816326), ('Do', 0.040816326), ('job', 0.040816326)]",I,0.06122450
179,179,378,"['TW', 'sheet', 'well', 'also', 'I', 'would', 'like', 'creat', 'sheet', 'pipelin', 'expans', 'rate', 'tie', 'daili', 'curv', 'desk', 'use', 'mike']","[('sheet', 0.08571431), ('pipelin', 0.057142857), ('use', 0.057142857), ('desk', 0.057142857), ('curv', 0.057142857), ('daili', 0.057142857), ('tie', 0.057142857), ('rate', 0.057142857), ('TW', 0.057142857), ('expans', 0.057142857)]",sheet,0.0857143
180,180,177,"['Al', 'I', 'glad', 'hear', 'I', 'hope', 'put', 'past', 'behind', 'u', 'sound', 'like', 'busi', 'congratul', 'new', 'babi', 'judg', 'email', 'well', 'that', 'great', 'We', 'anoth', 'girl', 'decemb', 'evelyn', 'grace', 'three', 'u', 'what', 'target', 'the', 'two', 'well', 'soccer', 'tball', 'bike', 'ride', 'keep', 'busi', 'they', 'could', 'use', 'cole', 'coordin', 'My', 'fit', 'program', 'intens', 'right', 'I', 'mainten', 'you', 'surpris', 'hear', 'hunter', 'fanat', 'cyclist', 'We', 'ride', 'work', 'twice', 'week', 'last', 'month', 'He', 'never', 'miss', 'rain', 'shine', 'sometim', 'even', 'hit', 'trail', 'memori', 'park', 'saturday', 'mountain', 'bike', 'hard', '50', 'mile', 'trip', 'road', 'I', 'would', 'like', 'dust', 'road', 'bike', 'go', 'ride', 'saturday', 'I', 'would', 'like', 'hear', 'new', 'job', 'mayb', 'could', 'grab', 'lunch', 'sometim', 'phillip']","[('I', 0.031915), ('like', 0.02127664), ('bike', 0.02127664), ('hear', 0.02127664), ('ride', 0.02127664), ('road', 0.015957462), ('saturday', 0.015957462), ('would', 0.015957462), ('new', 0.015957462), ('could', 0.015957462)]",I,0.03191
181,181,178,"['one', 'thing', 'intramonth', 'transport', 'pl', 'look', 'strang', 'rememb', 'I', 'know', 'northwest', 'may', 'issu', 'ill', 'point', 'let', 'decid', 'let', 'know', 'OK', 'ill', 'know', 'ignor', 'futur', 'also', 'want', 'get', 'kim', 'sitara', 'peopl', 'chang', 'map', 'let', 'know', 'ill', 'take', 'care', 'On', 'pge', 'NW', 'appear', 'pgen', 'kingsgat', 'map', 'malin', 'cityg', 'curv', 'instead', 'kingsgat', 'curv', 'result', 'total', 'transport', 'loss', '235019', 'If', 'map', 'chang', 'realloc', 'plnot', 'chang', 'overal', 'pl', 'mayb', 'reason', 'map', 'mayb', 'affect', 'someth', 'els', 'somewher', 'I', 'see', 'anyway', 'deal', 'path', 'pl', 'impact', '139195', 'from', 'kingsgat', 'malin', '182030', '139196', 'from', 'kingsgat', 'pgentuscarora', '4024', '139197', 'from', 'kingsgat', 'pgen', 'malin', '8271', '231321', 'from', 'kingsgat', 'malin', '38705', '153771', 'from', 'kingsgat', 'stanfield', '1988', 'suggest', 'fix', 'chang', 'pgen', 'kingsgat', 'map', 'gdpmalin', 'cityg', 'gdpkingsgat', 'clay', 'basin', 'storagethi', 'realli', 'fyi', 'anyth', 'elsei', 'see', 'five', 'differ', 'ticket', 'sitara', 'clay', 'basin', 'activityon', 'appear', 'withdraw', 'four', 'inject', 'clay', 'basin', 'valu', 'questar', 'curv', 'substanti', 'nwpl', 'point', 'what', 'mean', 'time', 'inject', 'ga', 'ticket', 'show', 'transport', 'loss', 'time', 'withdraw', 'show', 'big', 'gain', 'transport', 'Im', 'sure', 'best', 'way', 'handl', 'sinc', 'dont', 'realli', 'systemat', 'sitara', 'way', 'handl', 'storag', 'deal', 'In', 'ideal', 'world', 'seem', 'would', 'map', 'way', 'today', 'inject', 'time', 'transport', 'cost', 'would', 'pa', 'storag', 'cost', 'anyway', 'here', 'detail', 'ticket', 'info', 'plu', 'I', 'notic', 'three', 'day', 'appear', 'withdraw', 'inject', 'clay', 'basin', 'there', 'may', 'oper', 'reason', 'occur', 'Im', 'awar', 'dollar', 'impact', 'small', 'I', 'thought', 'Id', 'bring', 'attent', 'case', 'there', 'someth', 'want', 'the', 'column', 'show', 'volum', 'ticket', 'pL', 'associ', 'deal', '251327', '159540', '265229', '106300', '201756', 'PL', '29503', '15960', '3199', '2769', '273', 'rec', 'quesclay', 'basin0184', 'nwplopal', '543', 'nwplopal', 'suma', 'nwpl', 'Gr', 'rvr', 'del', 'nwpl', 'green', 'riverclay', 'quesclay', 'basin0852', 'quesclay', 'basin0852', 'quesclay', 'basin', 'quesclay', 'basin', '1', '329', '8738', '2', '1500', '3', '2974', '11362', '4', '6741', '12349', '1439', '5', '19052', '3183', '9', '333', '13', '30863', '2680', '14', '30451', '15', '35226', '16', '6979', '235', '17', '17464', '18', '9294', '20', '10796', '771', '21', '17930', '22', '10667', '23', '14415', '9076', '25', '23934', '8695', '26', '3284', '27', '1976', '28', '1751', '29', '1591', '30', '20242']","[('kingsgat', 0.01691749), ('basin', 0.0131580215), ('map', 0.0131580215), ('transport', 0.01127829), ('quesclay', 0.01127829), ('from', 0.011278289), ('chang', 0.009398561), ('ticket', 0.009398561), ('inject', 0.009398561), ('malin', 0.009398561)]",kingsgat,0.0169174
182,182,179,"['mari', 'If', 'add', 'balanc', 'togeth', 'total', '1140', 'I', 'spread', '6', '12', 'month', '6', 'month', 'payout', 'would', '190month', '12', 'month', 'payout', 'would', '95month', 'your', 'choic', 'I', 'would', 'like', 'could', 'work', '5hr', 'friday', 'anoth', 'month', 'doe', '10hr', 'sound', 'fair', 'We', 'appli', 'loan', 'phillip']","[('month', 0.06849322), ('would', 0.054794557), ('12', 0.041095905), ('I', 0.041095905), ('payout', 0.0410959), ('6', 0.0410959), ('10hr', 0.027397253), ('friday', 0.027397253), ('anoth', 0.027397253), ('doe', 0.027397253)]",month,0.0684932
183,183,180,"['address', 'httpectpdxsunoneectenroncomctathamnavsetupindexhtm', 'id', 'pallen', 'password', 'westgasx']","[('address', 0.16666667), ('httpectpdxsunoneectenroncomctathamnavsetupindexhtm', 0.16666667), ('id', 0.16666667), ('pallen', 0.16666667), ('password', 0.16666667), ('westgasx', 0.16666667)]",address,0.1666666
184,184,181,"['luci', 'I', 'go', 'seguin', 'saturday', 'monday', 'We', 'talk', 'unit', 'wade', 'I', 'call', 'bank', 'today', 'resolv', 'author', 'account', 'let', 'keep', 'offic', 'open', 'noon', 'memori', 'day', 'philllip']","[('I', 0.061224505), ('keep', 0.040816326), ('author', 0.040816326), ('account', 0.040816326), ('let', 0.040816326), ('resolv', 0.040816326), ('offic', 0.040816326), ('day', 0.040816326), ('memori', 0.040816326), ('bank', 0.040816326)]",I,0.06122450
185,185,182,"['luci', 'did', 'get', 'set', 'check', 'account', 'tri', 'email', 'everi', 'day', 'note', 'happen', 'day', 'just', 'info', 'new', 'vacanc', 'tenant', 'apart', 'wade', 'work', 'day', 'phillip']","[('day', 0.09090913), ('just', 0.045454543), ('note', 0.045454543), ('work', 0.045454543), ('wade', 0.045454543), ('apart', 0.045454543), ('tenant', 0.045454543), ('vacanc', 0.045454543), ('new', 0.045454543), ('info', 0.045454543)]",day,0.0909091
186,186,183,"['thi', 'note', 'author', 'make', 'follow', 'chang', '1', 'set', 'new', 'book', 'frank', 'ermisnw', 'basi', '2', 'rout', 'product', 'NW', 'basi', 'nwpl', 'rkymtn', 'malin', 'pge', 'cityg', '3', 'rout', 'epng', 'permian', 'todd', 'richardson', 'book', 'ftnew', 'texa', 'call', 'question', 'x37041', 'thank', 'phillip', 'allen']","[('book', 0.041095905), ('rout', 0.041095905), ('basi', 0.041095905), ('ftnew', 0.027397256), ('3', 0.027397256), ('epng', 0.027397256), ('permian', 0.027397256), ('todd', 0.027397256), ('richardson', 0.027397256), ('pge', 0.027397256)]",book,0.04109590
187,187,184,"['meet', 'delay', 'phil', 'I', 'suspect', 'discussionsnegoti', 'take', 'place', 'behind', 'close', 'door', 'smoke', 'fill', 'room', 'directli', 'commission', 'among', 'ferc', 'staffer', 'never', 'say', 'never', 'I', 'think', 'highli', 'unlik', 'final', 'order', 'contain', 'fix', 'price', 'cap', 'I', 'base', 'belief', 'larg', 'part', 'I', 'heard', 'luncheon', 'I', 'attend', 'yesterday', 'afternoon', 'keynot', 'speaker', 'ferc', 'chairman', 'curt', 'hebert', 'although', 'chairman', 'began', 'present', 'expressli', 'state', 'would', 'comment', 'answer', 'question', 'pend', 'proceed', 'commiss', 'hebert', 'enlighten', 'comment', 'relat', 'price', 'cap', 'price', 'cap', 'almost', 'never', 'right', 'answer', 'price', 'cap', 'effect', 'prolong', 'shortag', 'competit', 'choic', 'consum', 'right', 'answer', 'ani', 'solut', 'howev', 'short', 'term', 'increas', 'suppli', 'reduc', 'demand', 'accept', 'eight', 'eleven', 'western', 'governor', 'oppos', 'price', 'cap', 'would', 'export', 'california', 'problem', 'west', 'thi', 'latest', 'intellig', 'I', 'matter', 'pretti', 'strong', 'anti', 'price', 'cap', 'posit', 'Of', 'cours', 'hebert', 'one', 'commission', '3', 'current', 'commiss', 'control', 'meet', 'agenda', 'draft', 'order', 'like', 'item', 'could', 'bump', 'agenda', 'hope', 'info', 'help', 'ray', 'phillip', 'K', 'allenect', '04252001', '0228', 'PM', 'To', 'ray', 'alvareznaenronenron', 'cc', 'subject', 'Re', 'thi', 'morn', 'commiss', 'meet', 'delay', 'are', 'behind', 'close', 'door', 'discuss', 'held', 'prior', 'meet', 'Is', 'potenti', 'surpris', 'announc', 'sort', 'fix', 'price', 'ga', 'power', 'cap', 'open', 'meet', 'final', 'happen', 'embed', 'stdolelink', 'embed', 'stdolelink']","[('price', 0.025078533), ('cap', 0.025078533), ('I', 0.021943707), ('meet', 0.018808875), ('never', 0.012539222), ('hebert', 0.012539221), ('answer', 0.012539221), ('commiss', 0.012539221), ('fix', 0.0094043985), ('order', 0.0094043985)]",price,0.02507853
188,188,185,"['imag', 'natur', 'ga', 'transpor', 'contract', 'inform', 'pipelin', 'notic', 'deliv', 'your', 'desktop', 'httpwwwcapacitycentercom', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'regist', 'now', 'sign', 'Up', 'for', 'A', 'free', 'trial', 'through', 'the', 'end', 'Of', 'may', 'bid', 'week', 'capac', 'shopper', 'learn', 'capac', 'releas', 'post', 'bid', 'pick', 'transport', 'good', 'price', 'explor', 'releas', 'thereit', 'affect', 'ga', 'price', 'daili', 'activ', 'report', 'check', 'deal', 'done', 'what', 'competitor', 'pick', 'deal', 'match', 'thi', 'offer', 'better', 'market', 'intellig', 'system', 'notic', 'have', 'system', 'notic', 'deliv', 'desk', 'dont', 'last', 'one', 'learn', 'ofo', 'busi', 'someth', 'els', 'imag', 'capac', 'shopper', 'and', 'daili', 'activ', 'report', 'have', 'improv', 'format', 'you', 'choos', 'pipelin', 'want', 'well', 'keep', 'post', 'via', 'email', 'detail', 'check', 'exampl', 'daili', 'activ', 'report', 'come', 'soon', 'A', 'statist', 'snapshot', 'capac', 'releas', 'dont', 'miss', 'memberonli', 'opportun', 'see', 'quick', 'snapshot', 'activ', '48', 'interst', 'ga', 'pipelin', 'thi', 'messag', 'sent', 'select', 'group', 'industri', 'profession', 'wish', 'receiv', 'futur', 'notic', 'pleas', 'repli', 'email', 'remov', 'subject', 'line', 'copyright', '2000', 'capacitycentercom', 'inc', 'all', 'right', 'reserv']","[('imag', 0.050000325), ('capac', 0.019230835), ('activ', 0.019230835), ('notic', 0.019230835), ('report', 0.01538465), ('pipelin', 0.01538465), ('ga', 0.01538465), ('releas', 0.015384649), ('daili', 0.015384648), ('post', 0.011538469)]",imag,0.05000032
189,189,186,"['jeff', 'I', 'would', 'consid', 'owner', 'financ', 'depend', 'establish', 'developerindividualgener', 'credit', 'risk', 'what', 'go', 'land', 'ratetermdownpay', '25', 'let', 'know', 'phillip']","[('risk', 0.052631583), ('credit', 0.052631583), ('know', 0.052631583), ('let', 0.052631583), ('25', 0.052631583), ('ratetermdownpay', 0.052631583), ('land', 0.052631583), ('go', 0.052631583), ('what', 0.052631583), ('jeff', 0.052631583)]",risk,0.05263158
190,190,187,"['05182000', '0823', 'PM', 'bruce', 'sukalyenron', '05182000', '0820', 'AM', 'To', 'john', 'arnoldhouectect', 'mike', 'maggicorpenronenron', 'jeffrey', 'A', 'shankmanhouectect', 'cc', 'subject', 'larg', 'deal', 'alert', 'To', 'make', 'long', 'stori', 'short', 'william', 'long', '4000mw', 'toll', 'sp15', 'socal', '20', 'year', 'I', 'know', 'I', 'deal', 'tuesday', 'afternoon', 'william', 'sold', '1000', 'MW', 'merril', 'lynch', 'remain', 'life', '18', 'year', 'merril', 'short', 'fix', 'price', 'ga', 'So', 'cal', 'border', '250000mmbtu', 'day', 'long', 'sp15', 'power', '1000', 'MW', 'day', 'heat', 'rate', '10500', 'socal', 'border', 'plu', '050', 'Im', 'sure', 'mrl', 'broker', 'deal', 'wareh', 'for', 'worth']","[('long', 0.027586253), ('deal', 0.027586253), ('socal', 0.02068967), ('year', 0.02068967), ('short', 0.02068967), ('william', 0.02068967), ('sp15', 0.02068967), ('day', 0.02068967), ('merril', 0.02068967), ('MW', 0.02068967)]",long,0.02758625
191,191,188,"['dawn', 'I', 'receiv', 'email', 'pl', 'pleas', 'continu', 'send', 'daili', 'thank', 'phillip']","[('dawn', 0.090909086), ('I', 0.090909086), ('receiv', 0.090909086), ('email', 0.090909086), ('pl', 0.090909086), ('pleas', 0.090909086), ('continu', 0.090909086), ('send', 0.090909086), ('daili', 0.090909086), ('thank', 0.090909086)]",dawn,0.09090908
192,192,189,"['No', 'one', 'home', '51100', 'meet', 'dsl', 'instal', 'need', 'reschedul', 'follow', 'week', 'also', 'PC', 'home', 'window', '95', 'Is', 'problem', 'call', 'question', 'x37041', 'thank', 'phillip', 'allen']","[('home', 0.06382982), ('call', 0.042553194), ('x37041', 0.042553194), ('Is', 0.042553194), ('problem', 0.042553194), ('window', 0.042553194), ('question', 0.042553194), ('thank', 0.042553194), ('also', 0.042553194), ('phillip', 0.042553194)]",home,0.0638298
193,193,225,"['will', 'here', 'list', 'top', 'item', 'need', 'work', 'improv', 'posit', 'pl', 'report', 'west', 'desk', 'My', 'underli', 'goal', 'creat', 'posit', 'manag', 'pl', 'report', 'repres', 'risk', 'held', 'desk', 'estim', 'pl', 'great', 'accuraci', 'let', 'tri', 'schedul', 'meet', 'wednesday', 'go', 'item', 'phillip']","[('pl', 0.05882359), ('posit', 0.044117674), ('item', 0.044117674), ('desk', 0.044117674), ('report', 0.044117674), ('estim', 0.029411767), ('great', 0.029411767), ('accuraci', 0.029411767), ('let', 0.029411767), ('risk', 0.029411767)]",pl,0.0588235
194,194,226,"['Go', 'ahead', 'level', 'floor', '2']","[('Go', 0.2), ('ahead', 0.2), ('level', 0.2), ('floor', 0.2), ('2', 0.2)]",Go,0.
195,195,190,"['mike', 'mcdonald', 'I', 'met', 'SW', 'ga', 'morn', 'they', 'polit', 'regard', 'asset', 'manag', 'procur', 'function', 'outsourc', 'will', 'listen', 'propos', 'howev', 'interest', 'weather', 'hedg', 'protect', 'throughput', 'relat', 'earn', 'We', 'pursu', 'confidenti', 'agreement', 'facilit', 'share', 'inform', 'enabl', 'u', 'develop', 'propos', 'our', 'pitch', 'base', 'upon', 'enhanc', 'sharehold', 'valu', 'outsourc', 'nonprofit', 'costli', 'function', 'procur', 'reduc', 'volatil', 'earn', 'manag', 'throughput', 'via', 'weather', 'product', 'As', 'question', 'We', 'yet', 'identifi', 'pursu', 'candid', 'howev', 'mike', 'mcdonald', 'I', 'develop', 'coverag', 'strategi', 'ensur', 'meet', 'potenti', 'entiti', 'investig', 'opportun', 'We', 'met', '8', 'entiti', 'week', '7', 'municip', 'swg', 'implement', 'strategi', 'california', 'are', 'entiti', 'think', 'would', 'interest', 'asset', 'manag', 'deal', 'approach', 'otherwis', 'intend', 'systemat', 'identifi', 'work', 'candid', 'laird']","[('manag', 0.021857966), ('We', 0.021857966), ('entiti', 0.021857966), ('propos', 0.016393457), ('candid', 0.016393457), ('strategi', 0.016393457), ('outsourc', 0.016393457), ('howev', 0.016393457), ('throughput', 0.016393457), ('interest', 0.016393457)]",manag,0.02185796
196,196,191,"['04122000', '1045', 'AM', 'laird', 'dyer', '04122000', '0817', 'AM', 'To', 'jane', 'M', 'tholthouectect', 'cc', 'subject', 'SW', 'ga', 'jani', 'thank', 'fax', 'SW', 'ga', 'We', 'meet', 'larri', 'black', 'bob', 'armstrong', 'Ed', 'zub', 'april', '27th', 'discu', 'asset', 'manag', 'In', 'prepar', 'meet', 'would', 'like', 'gain', 'understand', 'natur', 'busi', 'relationship', 'SW', 'could', 'gener', 'term', 'describ', 'sale', 'activ', 'SW', 'what', 'typic', 'quantiti', 'term', 'sale', 'are', 'servic', 'provid', 'how', 'much', 'pipelin', 'capac', 'buy', 'sell', 'who', 'main', 'contact', 'SW', 'ga', 'We', 'propos', 'provid', 'full', 'requir', 'suppli', 'SW', 'involv', 'control', 'asset', 'for', 'attract', 'SW', 'probabl', 'take', 'regulatori', 'risk', 'ga', 'purchas', 'disallow', 'commiss', 'thi', 'difficult', 'clear', 'mandat', 'commiss', 'accept', 'portfolio', 'fix', 'index', 'collar', 'look', 'like', 'offer', 'guarante', 'discount', '1st', 'month', 'index', 'may', 'attract', 'unless', 'accept', 'regulatori', 'risk', 'that', 'risk', 'may', 'accept', 'desk', 'I', 'investig', 'pga', 'see', 'opportun', 'As', 'asset', 'manag', 'prefer', 'structur', 'are', 'element', 'would', 'like', 'see', 'ani', 'idea', 'would', 'greatli', 'appreci', 'thank', 'laird']","[('SW', 0.032000165), ('ga', 0.020000067), ('asset', 0.016000036), ('accept', 0.016000036), ('like', 0.016000036), ('would', 0.016000036), ('risk', 0.016000036), ('commiss', 0.012000009), ('are', 0.012000009), ('manag', 0.012000009)]",SW,0.03200016
197,197,192,"['kay', 'neal', 'thank', 'rememb', 'birthday', 'you', 'beat', 'parent', 'one', 'day', 'the', 'famili', 'fine', 'grace', 'realli', 'smile', 'she', 'happi', 'babi', 'long', 'held', 'It', 'sound', 'like', 'hous', 'come', 'along', 'fast', 'I', 'think', 'folk', 'readi', 'start', 'build', 'We', 'probabl', 'visit', 'late', 'june', 'juli', 'may', 'busi', 'We', 'take', 'kid', 'disney', 'birthday', 'good', 'luck', 'hous', 'keith']","[('birthday', 0.030303054), ('We', 0.03030305), ('hous', 0.03030305), ('start', 0.02020202), ('think', 0.02020202), ('build', 0.02020202), ('visit', 0.02020202), ('readi', 0.02020202), ('I', 0.02020202), ('folk', 0.02020202)]",birthday,0.03030305
198,198,193,"['today', 'chart', 'attach']","[('today', 0.33333334), ('chart', 0.33333334), ('attach', 0.33333334)]",today,0.3333333
199,199,194,"['today', 'chart', 'attach']","[('today', 0.33333334), ('chart', 0.33333334), ('attach', 0.33333334)]",today,0.3333333
200,200,195,"['are', 'behind', 'close', 'door', 'discuss', 'held', 'prior', 'meet', 'Is', 'potenti', 'surpris', 'announc', 'sort', 'fix', 'price', 'ga', 'power', 'cap', 'open', 'meet', 'final', 'happen']","[('meet', 0.06976745), ('sort', 0.046511624), ('surpris', 0.046511624), ('final', 0.046511624), ('open', 0.046511624), ('cap', 0.046511624), ('power', 0.046511624), ('ga', 0.046511624), ('price', 0.046511624), ('fix', 0.046511624)]",meet,0.0697674
201,201,196,['2000196931'],"[('2000196931', 1.0)]",,
202,202,197,"['mari', 'I', 'spoke', 'gari', 'foundat', 'work', '2', '3', 'He', 'agre', 'would', 'better', 'clean', '3', 'whatev', 'wade', '2', 'then', 'focu', '19', 'I', 'work', 'book', 'weekend', 'I', 'need', 'time', 'finish', 'I', 'call', 'day', 'phillip']","[('I', 0.08620697), ('3', 0.051724147), ('2', 0.051724147), ('work', 0.051724147), ('book', 0.034482755), ('weekend', 0.034482755), ('need', 0.034482755), ('focu', 0.034482755), ('time', 0.034482755), ('day', 0.034482755)]",I,0.0862069
203,203,198,"['here', 'dsl', 'form']","[('here', 0.33333334), ('dsl', 0.33333334), ('form', 0.33333334)]",here,0.3333333
204,204,199,"['thank', 'help', 'My', 'assist', 'ina', 'rangel']","[('thank', 0.16666667), ('help', 0.16666667), ('My', 0.16666667), ('assist', 0.16666667), ('ina', 0.16666667), ('rangel', 0.16666667)]",thank,0.1666666
205,205,200,"['holiday', 'thank', 'juli']","[('holiday', 0.33333334), ('thank', 0.33333334), ('juli', 0.33333334)]",holiday,0.3333333
206,206,201,"['holiday', 'thank', 'juli']","[('holiday', 0.33333334), ('thank', 0.33333334), ('juli', 0.33333334)]",holiday,0.3333333
207,207,202,"['beth', 'here', 'address', 'dsl', 'line', 'hunter', 'shive', '10545', 'gawain', 'houston', 'TX', '77024', '713', '4614130', 'phillip', 'allen', '8855', 'merlin', 'Ct', 'houston', 'TX', '77055', '713', '4638626', 'mike', 'grigsbi', '6201', 'meadow', 'lake', 'houston', 'TX', '77057', '713', '7801022', 'thank', 'phillip']","[('713', 0.061538503), ('TX', 0.061538503), ('houston', 0.061538503), ('phillip', 0.04615386), ('grigsbi', 0.030769225), ('77055', 0.030769225), ('4638626', 0.030769225), ('merlin', 0.030769225), ('mike', 0.030769225), ('7801022', 0.030769225)]",713,0.06153850
208,208,203,"['are', 'go', 'inspect', 'tomorrow']","[('are', 0.25), ('go', 0.25), ('inspect', 0.25), ('tomorrow', 0.25)]",are,0.2
209,209,204,"['mac', 'We', '9th', 'I', 'bring', 'paperwork', 'phillip']","[('mac', 0.14285715), ('We', 0.14285715), ('9th', 0.14285715), ('I', 0.14285715), ('bring', 0.14285715), ('paperwork', 0.14285715), ('phillip', 0.14285715)]",mac,0.1428571
210,210,205,"['mac', 'I', 'check', 'execut', 'option', 'smith', 'barney', 'bad', 'news', 'enron', 'agreement', 'pain', 'webber', 'exclus', 'employe', 'dont', 'choic', 'exercis', 'I', 'still', 'would', 'like', 'get', 'premier', 'servic', 'account', 'I', 'transfer', 'money', 'hope', 'reach', 'phillip']","[('I', 0.064516194), ('premier', 0.032258067), ('exercis', 0.032258067), ('still', 0.032258067), ('would', 0.032258067), ('like', 0.032258067), ('get', 0.032258067), ('choic', 0.032258067), ('money', 0.032258067), ('hope', 0.032258067)]",I,0.06451619
211,211,206,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
212,212,207,"['jeff', 'could', 'set', 'inspect', 'friday', '200', 'list', 'burnet', 'mail', 'phillip']","[('jeff', 0.1), ('could', 0.1), ('set', 0.1), ('inspect', 0.1), ('friday', 0.1), ('200', 0.1), ('list', 0.1), ('burnet', 0.1), ('mail', 0.1), ('phillip', 0.1)]",jeff,0.
213,213,208,"['tara', 'pleas', 'grant', 'access', 'manag', 'financi', 'product', 'follow', 'jani', 'tholt', 'frank', 'ermi', 'steve', 'south', 'tori', 'kuykendal', 'matt', 'lenhart', 'randi', 'gay', 'We', 'make', 'market', 'one', 'day', 'ga', 'daili', 'swap', 'thank', 'phillip', 'allen']","[('one', 0.03225807), ('day', 0.03225807), ('randi', 0.03225807), ('gay', 0.03225807), ('We', 0.03225807), ('make', 0.03225807), ('market', 0.03225807), ('matt', 0.03225807), ('swap', 0.03225807), ('thank', 0.03225807)]",one,0.0322580
214,214,209,"['mari', 'Go', 'ahead', 'work', 'gari', 'get', 'new', 'fridg', '8', 'I', 'go', 'tri', 'come', 'saturday', 'talk', 'later', 'phillip']","[('I', 0.05882353), ('8', 0.05882353), ('later', 0.05882353), ('talk', 0.05882353), ('saturday', 0.05882353), ('come', 0.05882353), ('tri', 0.05882353), ('go', 0.05882353), ('mari', 0.05882353), ('get', 0.05882353)]",I,0.0588235
215,215,210,"['slide', 'week', 'strategi', 'session', 'attach']","[('slide', 0.2), ('week', 0.2), ('strategi', 0.2), ('session', 0.2), ('attach', 0.2)]",slide,0.
216,216,211,"['mark', 'thank', 'offer', 'I', 'ride', 'year', 'good', 'luck', 'phillip']","[('mark', 0.11111111), ('thank', 0.11111111), ('offer', 0.11111111), ('I', 0.11111111), ('ride', 0.11111111), ('year', 0.11111111), ('good', 0.11111111), ('luck', 0.11111111), ('phillip', 0.11111111)]",mark,0.1111111
217,217,212,"['attend', 'meet', 'thursday', 'march', '23', '1115', 'room', '3127', 'thi', 'meet', 'brief', 'I', 'would', 'like', 'take', 'time', 'introduc', 'bhavna', 'pandya', 'get', 'input', 'variou', 'project', 'assist', 'u', 'thank']","[('meet', 0.05882355), ('get', 0.039215684), ('introduc', 0.039215684), ('bhavna', 0.039215684), ('pandya', 0.039215684), ('variou', 0.039215684), ('input', 0.039215684), ('u', 0.039215684), ('assist', 0.039215684), ('like', 0.039215684)]",meet,0.0588235
218,218,213,"['stephan', 'can', 'creat', 'email', 'list', 'distribut', 'report', 'everyday', 'west', 'desk', 'Or', 'put', 'common', 'drive', 'We', 'report', 'list', 'includ', 'phillip', 'allen', 'mike', 'grigsbi', 'keith', 'holst', 'frank', 'ermi', 'steve', 'south', 'jani', 'tholt', 'tori', 'kuykendal', 'matt', 'lenhart', 'randi', 'gay', 'thank', 'phillip']","[('phillip', 0.04109591), ('list', 0.041095905), ('report', 0.041095905), ('jani', 0.027397256), ('kuykendal', 0.027397256), ('frank', 0.027397256), ('ermi', 0.027397256), ('steve', 0.027397256), ('south', 0.027397256), ('keith', 0.027397256)]",phillip,0.0410959
219,219,214,"['httpectpdxsunonectathamnavsetupindexhtm', 'id', 'pallen', 'pw', 'westgasx', 'highli', 'sensit', 'distribut']","[('httpectpdxsunonectathamnavsetupindexhtm', 0.125), ('id', 0.125), ('pallen', 0.125), ('pw', 0.125), ('westgasx', 0.125), ('highli', 0.125), ('sensit', 0.125), ('distribut', 0.125)]",httpectpdxsunonectathamnavsetupindexhtm,0.12
220,220,215,"['on', '403', '9746756']","[('on', 0.33333334), ('403', 0.33333334), ('9746756', 0.33333334)]",on,0.3333333
221,221,216,"['mari', 'I', 'offic', 'friday', 'I', 'call', 'wade', 'later', 'today', 'philip']","[('I', 0.15789478), ('mari', 0.10526316), ('offic', 0.10526316), ('friday', 0.10526316), ('call', 0.10526316), ('wade', 0.10526316), ('later', 0.10526316), ('today', 0.10526316), ('philip', 0.10526316)]",I,0.1578947
222,222,217,"['work', 'thank']","[('work', 0.5), ('thank', 0.5)]",work,0.
223,223,218,"['on', '403', '9746756']","[('on', 0.33333334), ('403', 0.33333334), ('9746756', 0.33333334)]",on,0.3333333
224,224,219,"['socal', 'posit', 'thi', 'short', 'good', 'enough']","[('socal', 0.16666667), ('posit', 0.16666667), ('thi', 0.16666667), ('short', 0.16666667), ('good', 0.16666667), ('enough', 0.16666667)]",socal,0.1666666
225,225,220,"['david', 'I', 'receiv', 'updat', 'either', 'I', 'forgot', 'password', 'one', 'can', 'check', 'phillip', 'allen', 'enron', '7138537041']","[('I', 0.1034483), ('can', 0.068965524), ('password', 0.068965524), ('enron', 0.068965524), ('allen', 0.068965524), ('phillip', 0.068965524), ('check', 0.068965524), ('david', 0.068965524), ('receiv', 0.068965524), ('either', 0.068965524)]",I,0.103448
226,226,221,"['We', 'room', 'eb3014', '3', '4', 'pm', 'wednesday', 'WK']","[('We', 0.125), ('room', 0.125), ('eb3014', 0.125), ('3', 0.125), ('4', 0.125), ('pm', 0.125), ('wednesday', 0.125), ('WK', 0.125)]",We,0.12
227,227,222,"['window', 'unit', 'check', 'gari', 'kind', 'want', 'instal']","[('window', 0.14285715), ('unit', 0.14285715), ('check', 0.14285715), ('gari', 0.14285715), ('kind', 0.14285715), ('want', 0.14285715), ('instal', 0.14285715)]",window,0.1428571
228,228,223,"['We', 'room', 'eb3014', '3', '4', 'pm', 'wednesday', 'WK']","[('We', 0.125), ('room', 0.125), ('eb3014', 0.125), ('3', 0.125), ('4', 0.125), ('pm', 0.125), ('wednesday', 0.125), ('WK', 0.125)]",We,0.12
229,229,224,"['will', 'here', 'list', 'top', 'item', 'need', 'work', 'improv', 'posit', 'pl', 'report', 'west', 'desk', 'My', 'underli', 'goal', 'creat', 'posit', 'manag', 'pl', 'report', 'repres', 'risk', 'held', 'desk', 'estim', 'pl', 'great', 'accuraci', 'let', 'tri', 'schedul', 'meet', 'wednesday', 'go', 'item', 'phillip']","[('pl', 0.05882359), ('posit', 0.044117674), ('item', 0.044117674), ('desk', 0.044117674), ('report', 0.044117674), ('estim', 0.029411767), ('great', 0.029411767), ('accuraci', 0.029411767), ('let', 0.029411767), ('risk', 0.029411767)]",pl,0.0588235
230,230,227,"['let', 'know', 'get', 'quot', 'paulin', 'I', 'expect', 'pay', 'someth', '3000', '5000', 'rang', 'I', 'would', 'like', 'see', 'quot', 'descript', 'work', 'done', 'It', 'understand', 'rock', 'remov', 'replac', 'side', 'If', 'get', 'quot', 'put', 'new', 'rock', 'need', 'clarifi', 'jacqu', 'readi', 'drop', 'dollar', 'amount', 'releas', 'If', 'negoti', 'stall', 'seem', 'like', 'I', 'need', 'go', 'ahead', 'cut', 'util', 'hope', 'thing', 'go', 'smoothli', 'phillip']","[('quot', 0.03921573), ('I', 0.03921573), ('go', 0.029411776), ('If', 0.029411776), ('rock', 0.029411776), ('like', 0.029411776), ('need', 0.029411776), ('get', 0.029411776), ('jacqu', 0.019607838), ('drop', 0.019607838)]",quot,0.0392157
231,231,228,"['onenron', '04242001', '114740', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'instruct', 'ferc', 'meet', 'Mr', 'allen', 'per', 'phone', 'convers', 'pleas', 'see', 'instruct', 'get', 'access', 'view', 'ferc', 'meet', 'pleas', 'advis', 'problem', 'question', 'concern', 'eric', 'benson', 'Sr', 'specialist', 'enron', 'govern', 'affair', 'the', 'america', '7138531711', 'forward', 'eric', 'bensonnaenron', '04242001', '0145', 'PM', 'janet', 'butler', '11062000', '0451', 'PM', 'To', 'ericbensonenroncom', 'stevekeanenroncom', 'richardshapiroenroncom', 'cc', 'subject', 'instruct', 'ferc', 'meet', 'As', 'long', 'configur', 'receiv', 'real', 'video', 'abl', 'access', 'ferc', 'meet', 'wednesday', 'novemb', '8', 'the', 'instruct', 'forward', 'janet', 'butleretsenron', '11062000', '0449', 'PM', 'janet', 'butler', '10312000', '0412', 'PM', 'To', 'christilnicolayenroncom', 'jame', 'D', 'steffesnaenronenron', 'rebeccacantrellenroncom', 'cc', 'shelley', 'cormanetsenronenron', 'subject', 'instruct', 'ferc', 'meet', 'here', 'url', 'address', 'capitol', 'connect', 'you', 'abl', 'simpli', 'click', 'url', 'come', 'thi', 'assum', 'comput', 'configur', 'real', 'videoaudio', 'We', 'pay', 'annual', 'contract', 'bill', 'cost', 'center', 'you', 'connect', 'tomorrow', 'long', 'access', 'real', 'video', 'httpwwwcapitolconnectiongmuedu', 'instruct', 'onc', 'capitol', 'connect', 'sight', 'click', 'ferc', 'click', 'first', 'line', 'either', 'click', 'box', 'dialogu', 'box', 'requir', 'person', 'name', 'enroni', 'password', 'fercnow', 'real', 'player', 'connect', 'meet', 'expand', 'screen', 'wish', 'easier', 'view', 'adjust', 'sound', 'wish']","[('instruct', 0.025362443), ('meet', 0.025362443), ('ferc', 0.025362443), ('click', 0.018116005), ('connect', 0.018116005), ('real', 0.018116005), ('PM', 0.018116005), ('subject', 0.0144927865), ('access', 0.0144927865), ('cc', 0.0144927865)]",instruct,0.02536244
232,232,229,"['steve', 'pleas', 'remov', 'bob', 'shire', 'liz', 'rivera', 'rc', '768', 'thank', 'phillip', 'allen']","[('rc', 0.08333334), ('liz', 0.08333334), ('phillip', 0.08333334), ('thank', 0.08333334), ('768', 0.08333334), ('steve', 0.08333334), ('rivera', 0.08333334), ('remov', 0.08333334), ('bob', 0.08333334), ('pleas', 0.08333334)]",rc,0.0833333
233,233,230,"['Go', 'ahead', 'order', 'ac', '27', 'can', 'email', 'fax', 'summari', 'rent', 'collect', 'august', 'decemb', 'I', 'need', 'finish', 'tax', 'return', 'I', 'expens', 'data', 'rent', 'collect', 'fax', 'number', '7136463239', 'thank', 'phillip']","[('fax', 0.05769233), ('I', 0.05769233), ('collect', 0.05769233), ('rent', 0.05769233), ('tax', 0.038461536), ('return', 0.038461536), ('expens', 0.038461536), ('thank', 0.038461536), ('number', 0.038461536), ('august', 0.038461536)]",fax,0.0576923
234,234,231,"['anymor', 'detail', 'Is', 'offer', '675', 'what', 'els', 'clean', '11cap', 'good', 'locat', 'room', 'expand']","[('clean', 0.07692308), ('els', 0.07692308), ('room', 0.07692308), ('locat', 0.07692308), ('good', 0.07692308), ('11cap', 0.07692308), ('anymor', 0.07692308), ('Is', 0.07692308), ('675', 0.07692308), ('detail', 0.07692308)]",clean,0.0769230
235,235,232,"['100', 'yard', 'seem', 'like', 'enough', '125', 'hour', 'how', 'long', 'take', 'I', 'think', '100', 'enough', 'use', 'page', 'setup', 'file', 'menu', 'chang', 'portrait', 'landscap', 'want', 'chang', 'print', 'vertic', 'print', 'horizont', 'also', 'tri', 'select', 'fit', 'one', 'page', 'want', 'print', 'one', 'page', 'use', 'print', 'preview', 'see', 'print', 'look', 'like', 'print', 'the', 'truck', 'might', 'need', 'new', 'sparkplug', 'around', '120000125000', 'mile', 'A', 'valv', 'adjust', 'might', 'good', 'It', 'idl', 'high', 'last', '25000', 'mile', 'never', 'broken', 'glad', 'hear', 'good', 'deposit', 'week', 'great', 'job', 'februari', 'phillip']","[('print', 0.051095027), ('page', 0.02919712), ('might', 0.021897824), ('chang', 0.021897824), ('100', 0.021897824), ('good', 0.021897824), ('use', 0.021897824), ('want', 0.021897824), ('one', 0.021897824), ('like', 0.021897824)]",print,0.05109502
236,236,233,"['the', 'file', 'updat', 'renam', 'ga', 'basi', 'mar', '00']","[('the', 0.125), ('file', 0.125), ('updat', 0.125), ('renam', 0.125), ('ga', 0.125), ('basi', 0.125), ('mar', 0.125), ('00', 0.125)]",the,0.12
237,237,234,"['slide', 'yesterday', 'meet', 'attach']","[('slide', 0.25), ('yesterday', 0.25), ('meet', 0.25), ('attach', 0.25)]",slide,0.2
238,238,235,"['It', 'ok', 'let', 'deposit', 'rollov', '13', 'interrupt', 'rent']","[('It', 0.125), ('ok', 0.125), ('let', 0.125), ('deposit', 0.125), ('rollov', 0.125), ('13', 0.125), ('interrupt', 0.125), ('rent', 0.125)]",It,0.12
239,239,236,"['dear', 'phillip', '7th', 'portal', 'super', 'hero', 'actionadventur', 'featur', 'global', 'band', 'teenag', 'game', 'tester', 'get', 'pull', 'parallel', 'univers', '7th', 'portal', 'creat', 'warp', 'internet', 'the', 'fate', 'earth', 'univers', 'hand', 'fight', 'mongorr', 'merci', 'evil', 'forc', 'univers', 'the', 'legendari', 'stan', 'lee', 'creator', 'spiderman', 'incred', 'hulk', 'bring', 'u', 'let', 'game', 'begin', 'episod', '1', '7th', 'portal', 'new', 'seri', 'exclus', 'shockwavecom', 'shockwavecom', 'team', 'advertis', 'dont', 'miss', 'rollingstonecom', 'watch', 'daili', 'music', 'new', 'download', 'mp3', 'read', 'album', 'review', 'get', 'scoop', '1000', 'artist', 'includ', 'exclus', 'photo', 'bio', 'song', 'clip', 'link', 'win', 'great', 'prize', 'more', 'httpads07focalinkcomsmartbannerpage1657337n', 'advertis', 'unsubscrib', 'instruct', 'sure', 'want', 'unsubscrib', 'stop', 'receiv', 'email', 'u', 'all', 'right', 'click', 'httpshockwave1m0netmushksaspepallen40enroncom', '17094']","[('univers', 0.021621669), ('7th', 0.021621669), ('portal', 0.021621669), ('game', 0.016216233), ('u', 0.016216233), ('advertis', 0.016216233), ('the', 0.016216233), ('unsubscrib', 0.016216233), ('get', 0.016216233), ('new', 0.016216233)]",univers,0.02162166
240,240,237,"['imelda', 'pleas', 'switch', 'sitara', 'access', 'central', 'west', 'email', 'password', 'thank', 'phillip']","[('imelda', 0.090909086), ('pleas', 0.090909086), ('switch', 0.090909086), ('sitara', 0.090909086), ('access', 0.090909086), ('central', 0.090909086), ('west', 0.090909086), ('email', 0.090909086), ('password', 0.090909086), ('thank', 0.090909086)]",imelda,0.09090908
241,241,238,"['tri', 'the', 'attach', 'attach']","[('attach', 0.42857143), ('tri', 0.2857143), ('the', 0.2857143)]",attach,0.4285714
242,242,239,"['frank', 'the', 'impli', 'risk', 'creat', 'san', 'juan', 'rocki', 'indec', 'partial', 'set', 'today', 'risk', 'long', 'futur', 'posit', 'whatev', 'risk', 'prior', 'matter', 'sinc', 'rest', 'book', 'short', 'price', 'larg', 'offset', 'If', 'var', 'calcul', 'match', 'compani', 'true', 'risk', 'need', 'revis', 'adjust', 'phillip']","[('risk', 0.068493225), ('var', 0.027397256), ('match', 0.027397256), ('short', 0.027397256), ('price', 0.027397256), ('larg', 0.027397256), ('offset', 0.027397256), ('If', 0.027397256), ('rest', 0.027397256), ('calcul', 0.027397256)]",risk,0.06849322
243,243,240,"['mari', 'I', 'transfer', '10000', 'check', 'account', 'monday', '22800', 'I', 'call', 'monday', 'tuesday', 'see', 'new', 'phillip']","[('I', 0.10714288), ('monday', 0.10714288), ('new', 0.071428575), ('see', 0.071428575), ('tuesday', 0.071428575), ('call', 0.071428575), ('mari', 0.071428575), ('22800', 0.071428575), ('transfer', 0.071428575), ('10000', 0.071428575)]",I,0.1071428
244,244,241,"['jeff', 'let', 'close', 'march', '1', 'phillip']","[('jeff', 0.16666667), ('let', 0.16666667), ('close', 0.16666667), ('march', 0.16666667), ('1', 0.16666667), ('phillip', 0.16666667)]",jeff,0.1666666
245,245,242,"['did', 'order', 'jen', 'forward', 'jennif', 'fraserhouect', '02192000', '20', '0356', 'PM', 'jeff', 'steel', 'jsteelepiracom', '02142000', '015100', 'PM', 'To', 'pira', 'energi', 'retain', 'client', 'jsteelepiracom', 'cc', '20', 'subject', 'pira', 'californiasouthwest', 'ga', 'pipelin', 'studi', 'pira', 'focu', 'californiasouthwest', 'region', 'studi', 'natur', 'Ga', 's20', 'pipelin', 'infrastructur', 'pira', 'energi', 'group', 'announc', 'continu', 'new', 'multicli', 'studi', '20', 'the', 'price', 'reliabl', 'the', 'valu', 'strategi', 'ga', 'transport', 'the', 'price', 'reliabl', 'deliv', '6', 'part', 'part', 'representin', 'g20', 'discret', 'north', 'american', 'region', 'offer', 'insight', 'chang', 'and20', 'develop', 'north', 'american', 'natur', 'ga', 'pipelin', 'infrastructur', 'Th', 'e20', 'updat', 'prospectu', 'attach', 'pdf', 'word', 'file', 'outlin', 'pira', 's20', 'approach', 'methodolog', 'studi', 'deliver', 'andreleas', 'date', 'thi', 'note', 'inform', 'pira', 'commenc', 'studi', 'third', '20', 'region', 'california', 'southwest', 'As', 'region', 'studi', 'begin', '20', 'fundament', 'view', 'ga', 'flow', 'US', 'canada', 'pipelin', '20', 'region', 'cover', 'CA', 'NV', 'AZ', 'NM', 'discuss', 'greater', 'detail', '20', 'within', 'north', 'american', 'context', 'then', 'turn', 'valu', '20', 'transport', 'follow', 'three', 'major', 'price', 'point', 'assessm', 'nt20', 'primari', 'market', 'firm', 'secondari', 'market', 'basi', 'asset', 'market', '1', 'southern', 'california', 'border', 'topock', '2', 'san', 'juan', 'basin', '3', 'permian', 'basin', 'waha', 'the', 'californiasw', 'region01', 'workshop', '01', 'key', 'element', 'servic', '01', 'will20', 'take', 'place', 'march', '20', '2000at', '830', 'AM', 'arizona', 'biltmor', 'hotel', '20', 'phoenixfor', 'join', 'u', 'adiscount', 'block', 'room', 'bei', 'ng20', 'held', 'februari', '25', 'the', 'attach', 'prospectu', 'explain', 'variou', 'option', 'subscribingplea', 'se20', 'note', 'two', 'key', 'issu', 'regard', 'subscrib', 'optionson', 'a20', '10', 'save', 'pira', 'retain', 'client', 'order', 'februari', '25', '2000', '20', 'andtwo', 'discount', 'purchasingmor', 'one', 'region', 'If', 'question', 'pleas', 'hesit', 'contact', 'sincer', 'jeff', 'steel', 'manag', 'busi', 'develop', 'pira', 'energi', 'group', '212', '6866808', 'jsteelepiracom', '20', 'prospectuspdf', 'prospectusdoc']","[('20', 0.030303355), ('pira', 0.020979216), ('region', 0.016317144), ('studi', 0.016317144), ('the', 0.013986107), ('ga', 0.0116550755), ('pipelin', 0.0116550755), ('jsteelepiracom', 0.009324043), ('american', 0.009324043), ('north', 0.009324043)]",20,0.03030335
246,246,245,"['mari', 'I', 'got', 'email', 'Go', 'ahead', 'get', 'carpet', 'shampooer', 'make', 'sure', 'come', 'back', 'clean', 'use', 'wade', 'tenant', 'As', 'far', 'W2', 'I', 'look', 'rule', 'withhold', 'social', 'secur', 'I', 'call', 'later', 'today', 'discu', 'phillip']","[('I', 0.064516194), ('withhold', 0.032258067), ('As', 0.032258067), ('far', 0.032258067), ('W2', 0.032258067), ('look', 0.032258067), ('rule', 0.032258067), ('tenant', 0.032258067), ('later', 0.032258067), ('today', 0.032258067)]",I,0.06451619
247,247,246,"['phillip', 'I', 'applaud', 'use', 'cycl', 'daili', 'transport', 'save', 'ga', 'pollut', 'help', 'keep', 'strong', 'healthi', 'enron', 'provid', 'bike', 'rack', 'front', 'build', 'request', 'phillip', 'I', 'wish', 'could', 'accommod', 'request', 'howev', 'the', 'bodi', 'shop', 'capac', 'assum', 'respons', 'store', 'cycl', 'daili', 'basi', 'If', 'bring', 'good', 'lock', 'abl', 'secur', 'bike', 'design', 'outsid', 'rack', 'keep', 'pedal', 'lee']","[('rack', 0.03191491), ('request', 0.03191491), ('phillip', 0.03191491), ('I', 0.03191491), ('cycl', 0.03191491), ('daili', 0.03191491), ('keep', 0.03191491), ('bike', 0.03191491), ('basi', 0.021276591), ('assum', 0.021276591)]",rack,0.0319149
248,248,247,"['slide', 'today', 'meet', 'attach']","[('slide', 0.25), ('today', 0.25), ('meet', 0.25), ('attach', 0.24999997)]",slide,0.2
249,249,248,"['ill', 'get', 'back', 'I', 'know', 'sent', 'financi', 'clinton', 'energyil', 'check', 'see', 'enough', 'In', 'meantim', 'possibl', 'show', 'indic', 'quot', 'I', 'ask', 'pleas', 'advis', 'georg', 'georg', 'rahal', 'manag', 'ga', 'trade', 'acn', 'power', 'inc', '7926', 'jone', 'branch', 'drive', 'suit', '630', 'mclean', 'VA', '221023303', 'phone', '7038934330', 'ext', '1023', 'fax', '7038934390', 'cell', '4432557699', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'monday', 'februari', '07', '2000', '554', 'PM', 'To', 'georgerahalacnpowercom', 'subject', 'Re', 'W', 'basi', 'quot', 'georg', 'can', 'pleas', 'call', 'credit', 'desk', '7138531803', 'they', 'receiv', 'financi', 'acn', 'power', 'thank', 'phillip', 'allen']","[('georg', 0.025806503), ('quot', 0.019354858), ('sent', 0.019354858), ('pleas', 0.019354858), ('I', 0.019354858), ('power', 0.019354858), ('financi', 0.019354858), ('acn', 0.019354858), ('februari', 0.012903225), ('554', 0.012903225)]",georg,0.02580650
250,250,249,"['ill', 'get', 'back', 'I', 'know', 'sent', 'financi', 'clinton', 'energyil', 'check', 'see', 'enough', 'In', 'meantim', 'possibl', 'show', 'indic', 'quot', 'I', 'ask', 'pleas', 'advis', 'georg', 'georg', 'rahal', 'manag', 'ga', 'trade', 'acn', 'power', 'inc', '7926', 'jone', 'branch', 'drive', 'suit', '630', 'mclean', 'VA', '221023303', 'phone', '7038934330', 'ext', '1023', 'fax', '7038934390', 'cell', '4432557699', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'monday', 'februari', '07', '2000', '554', 'PM', 'To', 'georgerahalacnpowercom', 'subject', 'Re', 'W', 'basi', 'quot', 'georg', 'can', 'pleas', 'call', 'credit', 'desk', '7138531803', 'they', 'receiv', 'financi', 'acn', 'power', 'thank', 'phillip', 'allen']","[('georg', 0.025806503), ('quot', 0.019354858), ('sent', 0.019354858), ('pleas', 0.019354858), ('I', 0.019354858), ('power', 0.019354858), ('financi', 0.019354858), ('acn', 0.019354858), ('februari', 0.012903225), ('554', 0.012903225)]",georg,0.02580650
251,251,250,"['I', 'spoke', 'insur', 'compani', 'they', 'go', 'cancel', 'prorat', 'polici', 'work', 'kuo', 'issu', 'new', 'polici']","[('polici', 0.11111113), ('prorat', 0.07407407), ('cancel', 0.07407407), ('issu', 0.07407407), ('kuo', 0.07407407), ('work', 0.07407407), ('I', 0.07407407), ('insur', 0.07407407), ('they', 0.07407407), ('spoke', 0.07407407)]",polici,0.1111111
252,252,251,"['pleas', 'get', 'randi', 'resolv']","[('pleas', 0.25), ('get', 0.25), ('randi', 0.25), ('resolv', 0.25)]",pleas,0.2
253,253,252,"['georg', 'can', 'pleas', 'call', 'credit', 'desk', '7138531803', 'they', 'receiv', 'financi', 'acn', 'power', 'thank', 'phillip', 'allen']","[('receiv', 0.06666667), ('they', 0.06666667), ('phillip', 0.06666667), ('thank', 0.06666667), ('power', 0.06666667), ('acn', 0.06666667), ('financi', 0.06666667), ('georg', 0.06666667), ('credit', 0.06666667), ('call', 0.06666667)]",receiv,0.0666666
254,254,253,"['kim', 'doublecheck', 'juli', 'G', 'I', 'think', 'ok', 'pay', 'jan', 'demand', 'charg']","[('kim', 0.090909086), ('doublecheck', 0.090909086), ('juli', 0.090909086), ('G', 0.090909086), ('I', 0.090909086), ('think', 0.090909086), ('ok', 0.090909086), ('pay', 0.090909086), ('jan', 0.090909086), ('demand', 0.090909086)]",kim,0.09090908
255,255,254,"['I', 'think', 'steven', 'wolf', 'person', 'talk', 'move', 'kim', 'oling', 'differ', 'RC', 'code']","[('kim', 0.08333334), ('talk', 0.08333334), ('RC', 0.08333334), ('differ', 0.08333334), ('oling', 0.08333334), ('I', 0.08333334), ('move', 0.08333334), ('steven', 0.08333334), ('wolf', 0.08333334), ('think', 0.08333334)]",kim,0.0833333
256,256,255,"['still', 'issu']","[('still', 0.5), ('issu', 0.5)]",still,0.
257,257,256,"['I', 'revis', 'suppvendor', 'sheet', 'transfer', 'total', 'summari', 'sheet', 'pleas', 'review', 'let', 'know', 'mind', 'also', 'get', 'W2', 'form', 'tax', 'get', 'your', 'privat', 'free', 'email', 'httpwwwhotmailcom', 'jan00expensexl']","[('get', 0.06250001), ('sheet', 0.06250001), ('your', 0.04166666), ('form', 0.04166666), ('tax', 0.04166666), ('free', 0.04166666), ('privat', 0.04166666), ('email', 0.04166666), ('mind', 0.04166666), ('httpwwwhotmailcom', 0.04166666)]",get,0.0625000
258,258,257,"['jim', 'updat', 'curv', 'sent', 'later', '11', 'monday', '27', 'I', 'want', 'keith', 'involv', 'process', 'He', 'today', 'sorri', 'slow', 'turnaround', 'phillip']","[('keith', 0.052631583), ('want', 0.052631583), ('turnaround', 0.052631583), ('slow', 0.052631583), ('sorri', 0.052631583), ('today', 0.052631583), ('He', 0.052631583), ('process', 0.052631583), ('involv', 0.052631583), ('jim', 0.052631583)]",keith,0.05263158
259,259,258,"['tara', 'thi', 'note', 'document', 'approv', 'grant', 'execut', 'id', 'west', 'cash', 'trader', 'thank', 'help', 'phillip']","[('west', 0.07142858), ('execut', 0.07142858), ('help', 0.07142858), ('thank', 0.07142858), ('trader', 0.07142858), ('cash', 0.07142858), ('tara', 0.07142858), ('id', 0.07142858), ('note', 0.07142858), ('approv', 0.07142858)]",west,0.0714285
260,260,259,"['file', 'I', 'show']","[('file', 0.33333334), ('I', 0.33333334), ('show', 0.33333334)]",file,0.3333333
261,261,260,"['vishal', 'resign', 'today']","[('vishal', 0.33333334), ('resign', 0.33333334), ('today', 0.33333334)]",vishal,0.3333333
262,262,261,"['onxgat', '04242001', '0925', 'AM', 'cdt', 'To', 'phillip', 'K', 'allenhouectect', 'john', 'arnoldhouectect', 'cc', 'subject', 'fyi', 'sell', '500d', 'socal', 'XH', 'lower', 'overal', 'desk', 'var', '8', 'million', 'sell', '500k', 'KV', 'lower', 'overal', 'desk', 'var', '4', 'million', 'frank']","[('desk', 0.048387114), ('sell', 0.048387114), ('lower', 0.048387114), ('million', 0.048387114), ('overal', 0.048387114), ('var', 0.048387114), ('socal', 0.032258064), ('XH', 0.032258064), ('8', 0.032258064), ('4', 0.032258064)]",desk,0.04838711
263,263,262,"['juli', 'the', 'number', 'januari', 'actual', 'flow', 'X', 'ga', 'daili', 'spread', '463000', 'actual', 'flow', 'X', 'index', 'spread', '543000', 'jan', 'valu', 'origin', 'bid', '1750000', 'estim', 'cost', 'unwind', 'hedg', '1000000', 'base', 'number', 'I', 'suggest', 'offer', 'pay', 'least', '500000', '1500000', 'I', 'want', 'input', 'negoti', 'El', 'paso', 'Do', 'push', 'actual', 'valu', 'season', 'shape', 'unwind', 'cost', 'phillip']","[('actual', 0.043478306), ('X', 0.03260871), ('flow', 0.03260871), ('spread', 0.03260871), ('I', 0.03260871), ('unwind', 0.03260871), ('number', 0.03260871), ('cost', 0.03260871), ('valu', 0.03260871), ('1500000', 0.021739125)]",actual,0.04347830
264,264,263,"['01242000', '0821', 'AM', 'mlenhart', 'mlenhartmailev1net', '01232000', '063413', 'PM', 'pleas', 'respond', 'mlenhartmailev1net', 'To', 'matthew', 'lenharthouectect', 'mmitchmmsncom', 'cc', 'subject', 'dopewar', 'dopewarsex']","[('mlenhartmailev1net', 0.081081085), ('To', 0.054054048), ('pleas', 0.054054048), ('dopewar', 0.054054048), ('subject', 0.054054048), ('cc', 0.054054048), ('mmitchmmsncom', 0.054054048), ('lenharthouectect', 0.054054048), ('matthew', 0.054054048), ('01242000', 0.054054048)]",mlenhartmailev1net,0.08108108
265,265,264,"['Re', 'your', 'livingcom', 'inquiri', 'thank', 'inquiri', 'pleas', 'creat', 'account', 'assist', 'effect', 'futur', 'Go', 'httpwwwlivingcomutilloginjhtml', 'I', 'select', 'piec', 'might', 'work', 'To', 'view', 'simpli', 'click', 'follow', 'url', 'I', 'hope', 'help', 'area', 'rug', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcispenj600282x3', '29', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcccon300703928', '2x329', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcmerilandneedl', '284x629', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcpand5921092289', '5x13529', 'sofa', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcsfup3923a', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle583slp', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle359slp', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcjjhy200104', 'chair', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle566inc', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle711rcl', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle686', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcswoo46137', 'occasion', 'tabl', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcmagp31921', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcpula623102', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlccasr01cen906', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlccasr02cen001', 'dine', 'set', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcvilacomp001', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcsitcfh402chhr', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlccoch24854', 'best', 'regard', 'erika', 'designadvicelivingcom', 'PS', 'check', 'januari', 'clearanc', 'httplivingcomsalesjanuaryclearancejhtml', 'valentin', 'day', 'gift', 'httplivingcomshoppinglistlistjhtmltype2011salevalentin', 'origin', 'messag', 'from', 'pallenenroncom', 'mailtopallenenroncom', 'sent', 'monday', 'januari', '17', '2000', '520', 'PM', 'To', 'designadvicelivingcom', 'subject', 'choos', 'style', 'I', 'plan', 'build', 'hous', 'texa', 'hillcountri', 'the', 'exterior', 'farmhous', 'style', 'porch', 'front', 'back', 'I', 'consid', 'follow', 'featur', 'stain', 'score', 'concret', 'floor', 'open', 'livingdiningkitchen', 'concept', 'lot', 'window', 'home', 'offic', '4', 'bedroom', 'upstair', 'I', 'want', 'relax', 'comfort', 'style', 'exactli', 'countri', 'can', 'help', 'addit', 'person', 'info', 'ID', '3052970', 'email', 'pallenenroncom', 'firstnam', 'phillip', 'lastnam', 'allen']","[('I', 0.022472026), ('style', 0.01498132), ('help', 0.011235973), ('follow', 0.011235973), ('To', 0.011235973), ('pallenenroncom', 0.011235973), ('inquiri', 0.011235973), ('designadvicelivingcom', 0.011235973), ('januari', 0.011235973), ('exterior', 0.007490634)]",I,0.02247202
266,266,265,"['will', 'I', 'didnt', 'get', 'review', 'I', 'give', 'feedback', 'tomorrow', 'morn', 'phillip']","[('I', 0.14285715), ('will', 0.09523809), ('didnt', 0.09523809), ('get', 0.09523809), ('review', 0.09523809), ('give', 0.09523809), ('feedback', 0.09523809), ('tomorrow', 0.09523809), ('morn', 0.09523809), ('phillip', 0.09523809)]",I,0.1428571
267,267,266,"['tara', 'pleas', 'make', 'follow', 'chang', 'ftwest', 'chang', 'master', 'person', 'phillip', 'allen', 'keith', 'holst', 'imwestchang', 'master', 'person', 'bob', 'shire', 'phillip', 'allen', 'mock', 'exist', 'profil', 'pleas', 'make', 'chang', '11700', 'noon', 'thank', 'phillip']","[('phillip', 0.07843141), ('chang', 0.07843141), ('master', 0.058823537), ('make', 0.058823537), ('pleas', 0.058823537), ('allen', 0.058823537), ('person', 0.058823537), ('profil', 0.039215673), ('mock', 0.039215673), ('11700', 0.039215673)]",phillip,0.0784314
268,268,267,"['susan', 'I', 'receiv', 'enrol', 'confirm', 'class', 'I', 'sign', 'Is', 'mistak', 'phillip', 'allen']","[('I', 0.13043483), ('susan', 0.08695652), ('receiv', 0.08695652), ('enrol', 0.08695652), ('confirm', 0.08695652), ('class', 0.08695652), ('sign', 0.08695652), ('Is', 0.08695652), ('mistak', 0.08695652), ('phillip', 0.08695652)]",I,0.1304348
269,269,268,"['jeffbrenda', 'pleas', 'author', 'follow', 'product', 'approv', 'custom', 'expect', 'see', '114', 'pge', 'citygatedaili', 'physic', 'bom', 'physic', 'monthli', 'index', 'physic', 'malindaili', 'physic', 'bom', 'physic', 'monthli', 'index', 'physic', 'keystonemonthli', 'index', 'physic', 'socal', 'borderdaili', 'physic', 'bom', 'physic', 'monthli', 'index', 'physic', 'pge', 'topockdaili', 'physic', 'bom', 'physic', 'monthli', 'index', 'physic', 'pleas', 'approv', 'forward', 'dale', 'neuner', 'thank', 'phillip']","[('physic', 0.18181843), ('index', 0.077922136), ('bom', 0.064935096), ('monthli', 0.064935096), ('pge', 0.03896103), ('pleas', 0.03896103), ('approv', 0.03896103), ('socal', 0.025974004), ('thank', 0.025974004), ('keystonemonthli', 0.025974004)]",physic,0.1818184
270,270,269,"['call', 'I', 'cant', 'get']","[('call', 0.25), ('I', 0.25), ('cant', 0.25), ('get', 0.25)]",call,0.2
271,271,270,"['forecast', 'socal', 'demandrecstorag', 'look', 'like', 'need', 'ga', 'ehrenbergth', 'swing', 'receipt', 'point', '98', '99']","[('ehrenbergth', 0.07692308), ('ga', 0.07692308), ('98', 0.07692308), ('point', 0.07692308), ('receipt', 0.07692308), ('swing', 0.07692308), ('forecast', 0.07692308), ('demandrecstorag', 0.07692308), ('like', 0.07692308), ('socal', 0.07692308)]",ehrenbergth,0.0769230
272,272,271,"['griff', 'It', 'bidweek', 'I', 'need', 'provid', 'view', 'id', 'two', 'major', 'public', 'post', 'monthli', 'indec', 'pleas', 'email', 'id', 'password', 'follow', 'dexter', 'stei', 'natur', 'ga', 'intellig', 'dexterintelligencepresscom', 'lian', 'kucher', 'insid', 'ferc', 'lkuchmhcom', 'bidweek', 'way', 'critic', 'id', 'sent', 'asap', 'thank', 'help', 'phillip', 'allen']","[('id', 0.0519481), ('bidweek', 0.03896106), ('lkuchmhcom', 0.025974024), ('critic', 0.025974024), ('intellig', 0.025974024), ('dexterintelligencepresscom', 0.025974024), ('lian', 0.025974024), ('kucher', 0.025974024), ('insid', 0.025974024), ('ferc', 0.025974024)]",id,0.051948
273,273,272,"['jeffbrenda', 'pleas', 'author', 'forward', 'tara', 'sweitzer', 'pleas', 'set', 'follow', 'abil', 'setup', 'manag', 'product', 'stack', 'manag', 'steve', 'south', 'tori', 'kuykendal', 'jani', 'tholt', 'frank', 'ermi', 'matt', 'lenhart', 'note', 'the', 'type', 'product', 'trader', 'manag', 'le', '1', 'month', 'physic', 'west', 'also', 'pleas', 'grant', 'access', 'password', 'enabl', 'trader', 'execut', 'book', 'book', 'trade', 'eol', 'If', 'possibl', 'restrict', 'execut', 'author', 'product', 'first', '3', 'month', 'thank', 'phillip', 'allen']","[('manag', 0.0366973), ('pleas', 0.0366973), ('product', 0.0366973), ('execut', 0.027522953), ('author', 0.027522953), ('month', 0.027522953), ('book', 0.027522951), ('trader', 0.027522951), ('physic', 0.01834862), ('password', 0.01834862)]",manag,0.036697
274,274,273,"['mari', 'receiv', 'email', '17', 'messag', 'pleas', 'tri', 'phillip']","[('mari', 0.125), ('receiv', 0.125), ('email', 0.125), ('17', 0.125), ('messag', 0.125), ('pleas', 0.125), ('tri', 0.125), ('phillip', 0.125)]",mari,0.12
275,275,274,"['receiv', 'file', 'It', 'work', 'good', 'job']","[('receiv', 0.16666667), ('file', 0.16666667), ('It', 0.16666667), ('work', 0.16666667), ('good', 0.16666667), ('job', 0.16666667)]",receiv,0.1666666
276,276,275,"['what', 'mari', 'write', 'stage', 'miss', 'I', 'sent', '2', 'email', 'mayb', 'mari', 'stalk', 'gari']","[('mari', 0.12000002), ('2', 0.080000006), ('I', 0.080000006), ('stalk', 0.080000006), ('mayb', 0.080000006), ('email', 0.080000006), ('what', 0.080000006), ('write', 0.080000006), ('stage', 0.080000006), ('sent', 0.080000006)]",mari,0.1200000
277,277,276,"['first', 'one', 'free', 'So', 'next', 'thousand', 'you', 'know', 'true', 'video', 'game', 'addict', 'sure', 'could', 'trap', 'free', 'game', 'centiped', 'kick', 'price', 'your', 'hook', 'but', 'that', 'shockwavecom', 'oper', 'shockmachin', 'greatest', 'thing', 'sinc', 'needl', 'exchang', 'free', 'classic', 'arcad', 'game', 'who', 'need', 'quarter', 'get', 'arcad', 'classic', 'shockwavecom', 'stick', 'em', 'shockmachin', 'play', 'offlin', 'anytim', 'want', 'httpshockwave1m0netmsasph430297053x351629', 'lick', 'frog', 'your', 'get', 'date', 'friday', 'night', 'but', 'dont', 'care', 'youv', 'got', 'date', 'frogger', 'thi', 'frog', 'wont', 'turn', 'handsom', 'princess', 'sure', 'bring', 'back', 'great', 'memori', 'hop', 'arcad', 'time', 'save', 'quarter', 'laundri', 'which', 'might', 'increas', 'potenti', 'date', 'saturday', 'httpshockwave1m0netmsasph430297053x351630', 'busi', 'meet', 'missil', 'command', 'you', 'decid', 'take', 'offlin', 'No', 'horribl', 'meet', 'bo', 'missil', 'command', 'shockmachin', 'beauti', 'featur', 'play', 'without', 'hook', 'internet', 'grab', 'game', 'shockwavecom', 'save', 'hard', 'drive', 'play', 'offlin', 'the', 'missil', 'fall', 'are', 'readi', 'save', 'world', 'httpshockwave1m0netmsasph430297053x351631', 'I', 'want', 'take', 'you', 'higher', 'wan', 'na', 'get', 'high', 'here', 'chanc', 'home', 'shockmachin', 'let', 'play', 'favorit', 'arcad', 'game', 'straight', 'comput', 'it', 'chanc', 'crack', 'old', 'high', 'score', 'get', 'higher', 'centiped', 'get', 'bug', 'httpshockwave1m0netmsasph430297053x351632', 'soul', 'sale', 'the', '80', 'may', 'left', 'mani', 'good', 'memori', 'least', 'still', 'atari', 'machin', 'what', 'you', 'sold', 'set', 'golf', 'club', 'get', 'soul', 'back', 'man', 'super', 'breakout', 'aliv', 'well', 'wait', 'shockmachin', 'now', 'find', 'record', 'player', 'loverboy', 'album', 'httpshockwave1m0netmsasph430297053x351633', 'play', 'arcad', 'classic', 'shockmachin', 'easiest', 'way', 'rememb', 'day', 'didnt', 'work', 'If', 'havent', 'alreadi', 'get', 'free', 'machin', 'httpshockwave1m0netmsasph430297053x351640', 'shockwavecom', 'team', 'httpshockwave1m0netmsasph430297053x351634', 'remov', 'from', 'mail', 'list', 'instruct', 'We', 'chang', 'unsubscrib', 'instruct', 'reliabl', 'method', 'apolog', 'previou', 'unsubscrib', 'attempt', 'take', 'effect', 'while', 'wish', 'continu', 'tell', 'new', 'shockwavecom', 'stuff', 'want', 'unsubscrib', 'pleas', 'click', 'follow', 'link', 'httpshockwave1m0netmushksaspepallen40enroncom', '9001', 'att1htm']","[('get', 0.01873553), ('shockmachin', 0.016393576), ('arcad', 0.014051624), ('game', 0.014051624), ('play', 0.014051624), ('shockwavecom', 0.014051624), ('free', 0.01170967), ('you', 0.01170967), ('classic', 0.009367718), ('unsubscrib', 0.009367718)]",get,0.0187355
278,278,277,"['naomi', 'the', 'two', 'analyst', 'I', 'contact', 'matt', 'lenhart', 'vishal', 'apt', 'matt', 'repres', 'jeff', 'shankman', 'vishal', 'join', 'group', 'octob', 'He', 'power', 'trade', 'group', 'first', '9', 'month', 'I', 'spoke', 'jim', 'fallon', 'agre', 'excel', 'categori', 'I', 'dont', 'want', 'vishal', 'go', 'unrepres', 'sinc', 'chang', 'group', 'mid', 'year', 'call', 'questionsx37041', 'phillip', 'allen', 'west', 'ga', 'trade']","[('group', 0.04347831), ('vishal', 0.04347831), ('I', 0.043478303), ('trade', 0.032608714), ('matt', 0.032608714), ('go', 0.021739127), ('want', 0.021739127), ('dont', 0.021739127), ('categori', 0.021739127), ('mid', 0.021739127)]",group,0.0434783
279,279,278,"['here', 'forecast']","[('here', 0.5), ('forecast', 0.5)]",here,0.
280,280,279,"['outlook', 'migrat', 'teamenron', '05112001', '0149', 'PM', 'To', 'cheryl', 'wilchynskihrcorpenronenron', 'cindi', 'R', 'wardnaenronenron', 'Jo', 'ann', 'hillcorpenronenron', 'sonja', 'gallowaycorpenronenron', 'bilal', 'bajwanaenronenron', 'binh', 'phamhouectect', 'bradley', 'jonesenronenronxg', 'bruce', 'millscorpenronenron', 'chanc', 'rabonenronenronxg', 'chuck', 'amesnaenronenron', 'david', 'baumbachhouectect', 'jad', 'doanenronenronxg', 'oneal', 'D', 'winfreehouectect', 'phillip', 'M', 'lovehouectect', 'sladanaanna', 'kulicenronenronxg', 'victor', 'guggenheimhouectect', 'alejandra', 'chaveznaenronenron', 'ann', 'bikeenronenronxg', 'carol', 'franknaenronenron', 'darron', 'C', 'gironhouectect', 'elizabeth', 'L', 'hernandezhouectect', 'elizabeth', 'shimcorpenronenron', 'jeff', 'royedcorpenronenron', 'kam', 'keiserhouectect', 'kimat', 'singlahouectect', 'kristen', 'clauseenronenronxg', 'kulvind', 'fowlernaenronenron', 'kyle', 'R', 'lillyhouectect', 'lucha', 'johnsonnaenronenron', 'maria', 'garzahouectect', 'patrick', 'rydernaenronenron', 'ryan', 'orourkeenronenronxg', 'yuan', 'tiannaenronenron', 'frank', 'ermishouectect', 'jane', 'M', 'tholthouectect', 'jay', 'reitmeyerhouectect', 'keith', 'holsthouectect', 'matthew', 'lenharthouectect', 'mike', 'grigsbyhouectect', 'moniqu', 'sanchezhouectect', 'phillip', 'K', 'allenhouectect', 'randal', 'L', 'gayhouectect', 'tori', 'kuykendallhouectect', 'ina', 'normanhouectect', 'jacki', 'travishouectect', 'michael', 'J', 'gasperhouectect', 'brenda', 'H', 'fletcherhouectect', 'jeann', 'wukaschcorpenronenron', 'mari', 'theresa', 'franklinhouectect', 'mike', 'potternaenronenron', 'natali', 'bakerhouectect', 'suzann', 'calcagnonaenronenron', 'albert', 'stromquistcorpenronenron', 'rajesh', 'chettiarenrondevelopmentenrondevelop', 'derek', 'andersonhouectect', 'brad', 'hornhouectect', 'camil', 'gerardcorpenronenron', 'cathi', 'liranaenronenron', 'daniel', 'castagnolaenrondevelopmentenrondevelop', 'eva', 'towcorpenronenron', 'lam', 'nguyennaenronenron', 'andi', 'pacenaenronenron', 'anna', 'santuccinaenronenron', 'claudia', 'guerranaenronenron', 'clayton', 'vernoncorpenronenron', 'david', 'ryancorpenronenron', 'eric', 'smithcontractorenron', 'communicationsenron', 'commun', 'grace', 'kimnaenronenron', 'jason', 'kanissenronenronxg', 'kevin', 'clinecorpenronenron', 'rika', 'imainaenronenron', 'todd', 'decookcorpenronenron', 'beth', 'jensennpngenronenron', 'billi', 'harrillnpngenronenron', 'martha', 'sumnerkenneynpngenronenron', 'phylli', 'millernpngenronenron', 'sandi', 'olofsonnpngenronenron', 'theresa', 'byrnenpngenronenron', 'danni', 'mccartyetsenronenron', 'deni', 'tufgtenronenron', 'john', 'A', 'ayresfgtenronenron', 'john', 'millarfgtenronenron', 'juli', 'armstrongcorpenronenron', 'maggi', 'schroederfgtenronenron', 'max', 'brownotsenronenron', 'randi', 'cantrellgcoenronenron', 'traci', 'scottcorpenronenron', 'charl', 'T', 'muzzyhouectect', 'cora', 'pendergrasscorpenronenron', 'darren', 'espeycorpenronenron', 'jessica', 'whitenaenronenron', 'kevin', 'bradynaenronenron', 'kirk', 'lenarthouectect', 'lisa', 'kinseyhouectect', 'margi', 'straighthouectect', 'mark', 'L', 'schrabhouectect', 'souad', 'mahmassanicorpenronenron', 'tammi', 'gilmorenaenronenron', 'teresa', 'mcombernaenronenron', 'we', 'dempseynaenronenron', 'barri', 'feldmannycmgusamgusa', 'catherin', 'huynhnaenronenron', 'cc', 'subject', '2', 'surveyinform', 'email', '514', '01', 'current', 'note', 'user', 'To', 'ensur', 'experi', 'success', 'migrat', 'note', 'outlook', 'necessari', 'gather', 'individu', 'person', 'inform', 'prior', 'date', 'migrat', 'pleas', 'take', 'minut', 'complet', 'fill', 'follow', 'survey', 'doubl', 'click', 'document', 'put', 'edit', 'mode', 'when', 'finish', 'simpli', 'click', 'repli', 'with', 'histori', 'button', 'hit', 'send', 'your', 'survey', 'automat', 'sent', 'outlook', '2000', 'migrat', 'mailbox', 'thank', 'outlook', '2000', 'migrat', 'team', 'full', 'name', 'phillip', 'allen', 'login', 'ID', 'pallen', 'extens', '37041', 'offic', 'locat', 'eb3210c', 'what', 'type', 'comput', 'desktop', 'laptop', 'both', 'both', 'Do', 'pda', 'If', 'ye', 'type', 'none', 'ipaq', 'palm', 'pilot', 'jornada', 'ipaq', 'Do', 'permiss', 'access', 'anyon', 'emailcalendar', 'If', 'ye', 'doe', 'anyon', 'permiss', 'access', 'emailcalendar', 'ye', 'ina', 'rangel', 'If', 'ye', 'are', 'respons', 'updat', 'anyon', 'el', 'address', 'book', 'If', 'ye', 'Is', 'anyon', 'els', 'respons', 'updat', 'address', 'book', 'If', 'ye', 'Do', 'access', 'share', 'calendar', 'If', 'ye', 'share', 'calendar', 'Do', 'distribut', 'group', 'messag', 'maintain', 'mass', 'mail', 'If', 'ye', 'pleas', 'list', 'pleas', 'list', 'note', 'databas', 'applic', 'current', 'use', 'In', 'effort', 'plan', 'exact', 'datetim', 'migrat', 'also', 'need', 'know', 'what', 'normal', 'work', 'hour', 'from', '7', 'To', '5', 'will', 'offic', 'near', 'futur', 'vacat', 'leav', 'etc', 'If', 'from', 'mmddyy', 'To', 'mmddyy']","[('ye', 0.012016234), ('If', 0.012016234), ('migrat', 0.009345939), ('outlook', 0.006675643), ('anyon', 0.006675643), ('Do', 0.0066756424), ('To', 0.0066756424), ('pleas', 0.005340497), ('L', 0.005340497), ('note', 0.005340497)]",ye,0.01201623
281,281,280,"['let', 'know', 'get', 'quot', 'paulin', 'I', 'expect', 'pay', 'someth', '3000', '5000', 'rang', 'I', 'would', 'like', 'see', 'quot', 'descript', 'work', 'done', 'It', 'understand', 'rock', 'remov', 'replac', 'side', 'If', 'get', 'quot', 'put', 'new', 'rock', 'need', 'clarifi', 'jacqu', 'readi', 'drop', 'dollar', 'amount', 'releas', 'If', 'negoti', 'stall', 'seem', 'like', 'I', 'need', 'go', 'ahead', 'cut', 'util', 'hope', 'thing', 'go', 'smoothli', 'phillip']","[('quot', 0.03921573), ('I', 0.03921573), ('go', 0.029411776), ('If', 0.029411776), ('rock', 0.029411776), ('like', 0.029411776), ('need', 0.029411776), ('get', 0.029411776), ('jacqu', 0.019607838), ('drop', 0.019607838)]",quot,0.0392157
282,282,281,"['jeff', 'jacqu', 'craig', 'draw', 'releas', 'what', 'statu', 'quot', 'wade', 'phillip']","[('jeff', 0.1), ('jacqu', 0.1), ('craig', 0.1), ('draw', 0.1), ('releas', 0.1), ('what', 0.1), ('statu', 0.1), ('quot', 0.1), ('wade', 0.1), ('phillip', 0.1)]",jeff,0.
283,283,282,"['send', 'resum', 'karen', 'buckley', 'I', 'believ', 'full', 'round', 'interview', 'trade', 'track', 'may']","[('round', 0.08333334), ('believ', 0.08333334), ('track', 0.08333334), ('trade', 0.08333334), ('interview', 0.08333334), ('send', 0.08333334), ('full', 0.08333334), ('karen', 0.08333334), ('buckley', 0.08333334), ('resum', 0.08333334)]",round,0.0833333
284,284,283,"['attach', 'final', 'version', 'california', 'summari', 'report', 'map', 'graph', 'histor', 'data', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'bcc', 'subject', 'addit', 'california', 'load', 'inform', 'addit', 'chart', 'attempt', 'explain', 'increas', 'demand', 'hydro', 'load', 'growth', 'temperatur', 'mani', 'assumpt', 'made', 'the', 'data', 'solid', 'number', 'first', 'set', 'graph']","[('graph', 0.038961057), ('data', 0.038961057), ('addit', 0.038961057), ('load', 0.038961057), ('california', 0.038961057), ('increas', 0.025974022), ('demand', 0.025974022), ('growth', 0.025974022), ('explain', 0.025974022), ('mani', 0.025974022)]",graph,0.03896105
285,285,284,"['onf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'pleas', 'forward', 'anyon', 'team', 'want', 'updat', 'western', 'wholesal', 'matter', 'also', 'give', 'opportun', 'rais', 'state', 'matter', 'want', 'discu', 'jim', 'forward', 'jame', 'D', 'steffesnaenron', '05032001', '0742', 'AM', 'ray', 'alvarez', '05022001', '0540', 'PM', 'To', 'steve', 'waltonhouectect', 'susan', 'J', 'maranaenronenron', 'alan', 'comnespdxectect', 'lesli', 'lawnernaenronenron', 'rebecca', 'W', 'cantrellhouectect', 'donna', 'fultoncorpenronenron', 'jeff', 'dasovichnaenronenron', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'jalexandergibbsbrunscom', 'phillip', 'K', 'allenhouectect', 'cc', 'linda', 'J', 'noskehouectect', 'subject', 'Re', 'western', 'wholesal', 'activ', 'ga', 'power', 'conf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'date', 'everi', 'thursday', 'time', '100', 'pm', 'pacif', '300', 'pm', 'central', '400', 'pm', 'eastern', 'time', 'number', '18882710949', 'host', 'code', '661877', 'jim', 'particip', 'code', '936022', 'everyon', 'els', 'attach', 'tabl', 'ongo', 'ferc', 'issu', 'proceed', 'updat', 'use', 'tomorrow', 'confer', 'call', 'It', 'avail', 'team', 'member', 'O', 'drive', 'pleas', 'feel', 'free', 'reviseadd', 'updat', 'tabl', 'appropri', 'propos', 'agenda', 'tomorrow', 'power', 'discuss', 'ferc', 'market', 'monitor', 'mitig', 'order', 'el009512', 'review', 'upcom', 'file', 'ga', 'respons', 'subpoena', 'socal', 'edison', 'rp00241', 'upcom', 'item', 'misc', 'I', 'unabl', 'particip', 'call', 'tomorrow', 'I', 'attend', 'senat', 'energi', 'resourc', 'committe', 'hear', 'element', 'ferc', 'market', 'monitor', 'mitig', 'order']","[('privileg', 0.015723342), ('commun', 0.015723342), ('call', 0.015723342), ('updat', 0.012578659), ('tomorrow', 0.012578659), ('pm', 0.012578659), ('ferc', 0.012578657), ('I', 0.009433975), ('particip', 0.009433975), ('jame', 0.009433975)]",privileg,0.01572334
286,286,285,"['If', 'question', 'pleas', 'contact', 'kristin', 'walsh', '713', '8539510', 'bridg', 'loan', 'financ', 'bill', 'may', 'not', 'meet', 'their', 'may', '8th', 'deadlin', 'due', 'lack', 'support', 'sourc', 'report', 'vote', 'regard', 'author', 'bond', 'issuancebridg', 'loan', 'may', '8th', 'deadlin', 'ani', 'possibl', 'deal', 'reportedli', 'fallen', 'apart', 'accord', 'sourc', 'republican', 'democrat', 'caucu', 'turn', 'davi', 'the', 'democrat', 'caucu', 'reportedli', 'unwil', 'fight', 'davi', 'mani', 'legisl', 'republican', 'democrat', 'reportedli', 'trust', 'davi', 'express', 'concern', 'bond', 'issu', 'replenish', 'gener', 'fund', 'davi', 'would', 'doubl', 'dip', 'fund', 'clearli', 'lack', 'good', 'faith', 'legislatur', 'governor', 'howev', 'believ', 'davi', 'disclos', 'detail', 'power', 'contract', 'negoti', 'bond', 'issuanc', 'take', 'place', 'addit', 'gener', 'sourc', 'report', 'longterm', 'power', 'contract', 'oppos', 'still', 'develop', 'requir', 'bond', 'issuanc', 'happen', 'juli', '1', '2001', 'If', 'state', 'may', 'breach', 'contract', 'sourc', 'state', 'legislatur', 'pa', 'bridg', 'loan', 'legisl', 'may', '8th', 'bond', 'issuanc', 'juli', '1st', 'difficult', 'the', 'republican', 'plan', 'offer', 'altern', 'plan', 'wherebi', 'state', 'would', 'eat', '5', 'billion', 'cost', 'power', 'spent', 'date', 'gener', 'fund', 'therebi', 'decreas', 'amount', 'bond', 'issuanc', 'approxim', '8', 'billion', 'howev', 'reportedli', 'go', 'offer', 'even', 'concess', 'sourc', 'report', 'republican', 'intend', 'hold', 'full', 'disclosur', 'governor', 'plan', 'handl', 'crisi', 'includ', 'detail', 'term', 'longterm', 'contract', 'negoti', 'support', 'bond', 'issuanc', 'go', 'forward', 'current', 'two', 'bill', 'deal', 'bridg', 'loan', 'AB', '8X', 'AB', '31x', 'AB', '8X', 'author', 'dwr', 'sell', '10', 'billion', 'bond', 'thi', 'bill', 'pass', 'senat', 'march', 'stall', 'assembl', 'due', 'lack', 'republican', 'support', 'AB', '31x', 'deal', 'energi', 'conserv', 'program', 'commun', 'colleg', 'district', 'howev', 'sourc', 'report', 'bill', 'may', 'amend', 'includ', 'languag', 'relev', 'bond', 'sale', 'senat', 'bowen', 'current', 'AB', '8X', 'senat', 'bowen', 'languag', 'state', 'state', 'get', 'paid', 'util', 'rate', 'payment', 'pass', 'would', 'like', 'caus', 'socal', 'bankruptci', 'accord', 'sourc', 'close', 'republican', 'legislatur', 'republican', 'believ', 'bridg', 'loan', 'due', 'money', 'avail', 'gener', 'fund', 'for', 'instanc', 'toni', 'strickland', 'state', '12', 'bond', 'approxim', '5', 'billion', 'issu', 'other', 'republican', 'reportedli', 'support', 'issu', 'bond', 'the', 'republican', 'intend', 'bring', 'debat', 'monday', 'addit', 'lehman', 'brother', 'reportedli', 'also', 'feel', 'bridg', 'loan', 'unnecessari', 'indic', 'lehman', 'may', 'back', 'bridg', 'loan', 'key', 'point', 'bridg', 'financ', 'initi', 'loan', 'amount', '4125', 'B', 'lender', 'JP', 'morgan', '25', 'B', 'lehman', 'brother', '10', 'B', 'bear', 'stearn', '625', 'M', 'tax', 'exempt', 'portion', 'Of', '4125', 'B', '16', 'B', 'expect', 'taxexempt', 'project', 'interest', 'rate', 'taxabl', 'rate', '577', 'taxexempt', 'rate', '477', 'current', 'project', 'blend', 'IR', '538', 'matur', 'date', 'august', '29', '2001', 'for', 'detail', 'pleas', 'contact', '713', '8539510', 'bill', 'SB', '6X', 'pass', 'senat', 'yesterday', 'littl', 'can', 'done', 'thi', 'time', 'the', 'senat', 'pass', 'SB', '6X', 'yesterday', 'author', '5', 'billion', 'creat', 'california', 'consum', 'power', 'conserv', 'author', 'the', '5', 'billion', 'author', 'SB', '6X', '5', 'billion', 'must', 'author', 'legislatur', 'pay', 'power', 'alreadi', 'purchas', 'addit', 'amount', 'bond', 'must', 'author', 'pay', 'purchas', 'power', 'go', 'forward', 'again', 'republican', 'support', 'author', 'without', 'detail', 'longterm', 'power', 'contract', 'governor', 'negoti', 'republican', 'know', 'final', 'bond', 'amount', 'must', 'issu', 'taxpay', 'pay', 'support', 'No', 'action', 'taken', 'regard', 'implement', 'SB', '6X', 'clarifi', 'state', 'util', 'get', 'paid', 'purchas', 'power', 'also', 'staff', 'defin', 'purpos', 'etc', 'california', 'public', 'power', 'conserv', 'author', 'howev', 'consid', 'victori', 'consum', 'advoc', 'began', 'promot', 'idea', 'earlier', 'crisi', 'socal', 'edison', 'bankruptci', 'At', 'point', 'two', 'event', 'would', 'like', 'trigger', 'socal', 'bankruptci', 'the', 'first', 'would', 'legisl', 'reject', 'mou', 'socal', 'governor', 'the', 'specifi', 'deadlin', 'legisl', 'approv', 'mou', 'august', '15th', 'howev', 'decis', 'like', 'made', 'earlier', 'accord', 'sourc', 'state', 'yet', 'sign', 'mou', 'socal', 'though', 'socal', 'sign', 'the', 'republican', 'mou', 'current', 'form', 'davi', 'senat', 'lack', 'vote', 'need', 'pa', 'If', 'legislatur', 'indic', 'pa', 'mou', 'socal', 'would', 'like', 'file', 'voluntari', 'bankruptci', 'creditor', 'involuntari', 'due', 'lack', 'oper', 'cash', 'the', 'second', 'like', 'trigger', 'event', 'link', 'directli', 'bond', 'issuanc', 'would', 'effort', 'senat', 'bowen', 'amend', 'SB', '31x', 'bridg', 'loan', 'state', 'dwr', 'would', 'receiv', '100', 'payment', 'ratepay', 'util', 'would', 'receiv', 'residu', 'amount', 'In', 'word', 'state', 'get', 'paid', 'util', 'If', 'languag', 'includ', 'pass', 'legislatur', 'appear', 'like', 'socal', 'like', 'file', 'bankruptci', 'socal', 'urg', 'legislatur', 'pay', 'util', 'dwr', 'proportion', 'rate', 'payment']","[('bond', 0.017442156), ('republican', 0.015116519), ('state', 0.012790885), ('socal', 0.011628067), ('would', 0.011628067), ('author', 0.011628067), ('the', 0.011628067), ('power', 0.011628067), ('loan', 0.011628067), ('bridg', 0.01046525)]",bond,0.01744215
287,287,304,"['are', 'behind', 'close', 'door', 'discuss', 'held', 'prior', 'meet', 'Is', 'potenti', 'surpris', 'announc', 'sort', 'fix', 'price', 'ga', 'power', 'cap', 'open', 'meet', 'final', 'happen']","[('meet', 0.06976745), ('sort', 0.046511624), ('surpris', 0.046511624), ('final', 0.046511624), ('open', 0.046511624), ('cap', 0.046511624), ('power', 0.046511624), ('ga', 0.046511624), ('price', 0.046511624), ('fix', 0.046511624)]",meet,0.0697674
288,288,305,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
289,289,329,"['bruce', 'thank', 'bid', 'I', 'decid', 'floor', 'plan', 'I', 'go', 'architect', 'austin', 'draw', 'plan', 'help', 'work', 'detail', 'specif', 'list', 'I', 'send', 'detail', 'plan', 'spec', 'list', 'complet', 'final', 'bid', 'probabl', 'earli', 'mid', 'june', 'phillip']","[('I', 0.07017548), ('plan', 0.07017548), ('list', 0.052631594), ('detail', 0.052631594), ('bid', 0.052631594), ('complet', 0.035087712), ('final', 0.035087712), ('send', 0.035087712), ('spec', 0.035087712), ('mid', 0.035087712)]",I,0.0701754
290,290,330,"['jeff', 'jacqu', 'craig', 'draw', 'releas', 'what', 'statu', 'quot', 'wade', 'phillip']","[('jeff', 0.1), ('jacqu', 0.1), ('craig', 0.1), ('draw', 0.1), ('releas', 0.1), ('what', 0.1), ('statu', 0.1), ('quot', 0.1), ('wade', 0.1), ('phillip', 0.1)]",jeff,0.
291,291,331,"['I', 'still', 'use', 'servic']","[('I', 0.25), ('still', 0.25), ('use', 0.25), ('servic', 0.25)]",I,0.2
292,292,332,"['north', 'america', 'corp', 'from', 'stephen', 'swain', '04102001', '1158', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'tim', 'heizenraderpdxectect', 'tim', 'beldenhouectect', 'matt', 'motleypdxectect', 'michael', 'M', 'driscollpdxectect', 'chri', 'mallorypdxectect', 'jeff', 'richterhouectect', 'robert', 'badeerhouectect', 'sean', 'crandallpdxectect', 'mark', 'fischerpdxectect', 'bill', 'william', 'iiipdxectect', 'diana', 'scholteshouectect', 'subject', 'caiso', 'demand', 'reduct', 'phillip', 'et', 'al', 'I', 'dig', 'answer', 'question', 'demand', 'reduct', 'west', 'your', 'intuit', 'reduct', 'seen', 'far', 'eg', 'march', '2001', 'v', 'march', '2000', 'absolut', 'correct', 'At', 'point', 'appear', 'demand', 'last', '12', 'month', 'caiso', 'control', 'area', 'adjust', 'temperatur', 'time', 'use', 'factor', 'fallen', '6', 'thi', 'translat', 'reduct', '15001600', 'mwa', 'last', 'month', 'march', '2001', 'compar', 'previou', 'year', 'look', 'forward', 'summer', 'I', 'believ', 'see', 'voluntari', 'reduct', 'oppos', 'forc', 'reduct', 'via', 'roll', 'blackout', 'other', 'forecast', 'eg', 'pira', 'estim', 'anoth', '12001300', 'mwa', 'make', 'total', 'yearonyear', 'reduct', '27002800', 'come', 'start', 'june', 'thi', 'scenario', 'difficult', 'imagin', 'would', 'requir', 'coupl', 'percentag', 'point', 'reduct', 'overal', 'peak', 'demand', 'given', '6', 'decreas', 'seen', 'far', 'come', 'without', 'real', 'price', 'signal', 'retail', 'market', 'rate', 'schedul', 'increas', 'I', 'think', 'possibl', 'could', 'see', 'peak', 'demand', 'fall', 'much', '10', 'rel', 'last', 'year', 'thi', 'would', 'mean', 'peak', 'demand', 'reduct', 'approx', '33003500', 'mwa', 'junaug', 'In', 'addit', 'number', 'effort', 'aim', 'specif', 'conserv', 'promot', 'state', 'increas', 'likelihood', 'meet', 'perhap', 'exceed', '3500', 'mwa', 'figur', 'final', 'gener', 'econom', 'slowdown', 'calif', 'could', 'also', 'depress', 'demand', 'least', 'make', '3500', 'mwa', 'number', 'much', 'attain', 'note', 'number', 'I', 'report', 'caiso', 'control', 'area', 'repres', '89', 'total', 'calif', 'load', '3637', 'wscc', 'US', 'summer', 'load', 'I', 'think', 'reason', 'assum', 'noniso', 'portion', 'calif', 'ie', 'ladwp', 'iid', 'see', 'similar', 'reduct', 'demand', 'As', 'rest', 'wscc', 'much', 'difficult', 'call', 'As', 'awar', 'pacif', 'NW', 'alreadi', 'seen', '2000', 'mwa', 'aluminum', 'smelter', 'load', 'come', 'sinc', 'dec', 'load', 'expect', 'stay', 'least', 'sep', 'possibl', 'next', 'coupl', 'year', 'bpa', 'get', 'wish', 'thi', 'figur', 'repres', 'approx', '4', 'noncalif', 'wscc', 'sever', 'mine', 'oper', 'SW', 'rocki', 'recent', 'announc', 'sharpli', 'curtail', 'product', 'I', 'yet', 'abl', 'pin', 'exactli', 'mani', 'MW', 'translat', 'I', 'continu', 'research', 'issu', 'other', 'larg', 'industri', 'may', 'follow', 'suit', 'rippl', 'effect', 'calif', 'econom', 'slowdown', 'could', 'factor', 'throughout', 'west', 'while', 'rest', 'wscc', 'may', 'see', '10', 'reduct', 'I', 'expect', 'calif', 'I', 'think', 'could', 'easili', 'expect', 'addit', '23', 'top', '4', 'alreadi', 'realiz', 'approx', '10001500', 'mwa', 'demand', 'reduct', 'noncalif', 'wscc', 'summer', 'thi', 'would', 'bring', 'total', 'reduct', 'wscc', 'includ', '2000', 'mwa', 'aluminum', 'load', 'alreadi', 'seen', 'around', '65007000', 'mwa', 'compar', 'last', 'summer', 'I', 'continu', 'research', 'monitor', 'situat', 'provid', 'updat', 'new', 'better', 'inform', 'becom', 'avail', 'meantim', 'I', 'hope', 'help', 'pleas', 'feel', 'free', 'call', '5034648671', 'question', 'need', 'inform']","[('reduct', 0.021978365), ('I', 0.018838584), ('demand', 0.0156988), ('mwa', 0.0156988), ('wscc', 0.0109891305), ('thi', 0.009419241), ('calif', 0.009419241), ('load', 0.009419241), ('see', 0.007849352), ('could', 0.007849352)]",reduct,0.02197836
293,293,286,"['onf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'pleas', 'forward', 'anyon', 'team', 'want', 'updat', 'western', 'wholesal', 'matter', 'also', 'give', 'opportun', 'rais', 'state', 'matter', 'want', 'discu', 'jim', 'forward', 'jame', 'D', 'steffesnaenron', '05032001', '0742', 'AM', 'ray', 'alvarez', '05022001', '0540', 'PM', 'To', 'steve', 'waltonhouectect', 'susan', 'J', 'maranaenronenron', 'alan', 'comnespdxectect', 'lesli', 'lawnernaenronenron', 'rebecca', 'W', 'cantrellhouectect', 'donna', 'fultoncorpenronenron', 'jeff', 'dasovichnaenronenron', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'jalexandergibbsbrunscom', 'phillip', 'K', 'allenhouectect', 'cc', 'linda', 'J', 'noskehouectect', 'subject', 'Re', 'western', 'wholesal', 'activ', 'ga', 'power', 'conf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'date', 'everi', 'thursday', 'time', '100', 'pm', 'pacif', '300', 'pm', 'central', '400', 'pm', 'eastern', 'time', 'number', '18882710949', 'host', 'code', '661877', 'jim', 'particip', 'code', '936022', 'everyon', 'els', 'attach', 'tabl', 'ongo', 'ferc', 'issu', 'proceed', 'updat', 'use', 'tomorrow', 'confer', 'call', 'It', 'avail', 'team', 'member', 'O', 'drive', 'pleas', 'feel', 'free', 'reviseadd', 'updat', 'tabl', 'appropri', 'propos', 'agenda', 'tomorrow', 'power', 'discuss', 'ferc', 'market', 'monitor', 'mitig', 'order', 'el009512', 'review', 'upcom', 'file', 'ga', 'respons', 'subpoena', 'socal', 'edison', 'rp00241', 'upcom', 'item', 'misc', 'I', 'unabl', 'particip', 'call', 'tomorrow', 'I', 'attend', 'senat', 'energi', 'resourc', 'committe', 'hear', 'element', 'ferc', 'market', 'monitor', 'mitig', 'order']","[('privileg', 0.015723342), ('commun', 0.015723342), ('call', 0.015723342), ('updat', 0.012578659), ('tomorrow', 0.012578659), ('pm', 0.012578659), ('ferc', 0.012578657), ('I', 0.009433975), ('jame', 0.009433975), ('particip', 0.009433975)]",privileg,0.01572334
294,294,287,"['travel', 'busi', 'meet', 'take', 'fun', 'trip', 'especi', 'prepar', 'present', 'I', 'would', 'suggest', 'hold', 'busi', 'plan', 'meet', 'take', 'trip', 'without', 'formal', 'busi', 'meet', 'I', 'would', 'even', 'tri', 'get', 'honest', 'opinion', 'whether', 'trip', 'even', 'desir', 'necessari', 'As', 'far', 'busi', 'meet', 'I', 'think', 'would', 'product', 'tri', 'stimul', 'discuss', 'across', 'differ', 'group', 'work', 'too', 'often', 'present', 'speak', 'other', 'quiet', 'wait', 'turn', 'the', 'meet', 'might', 'better', 'held', 'round', 'tabl', 'discuss', 'format', 'My', 'suggest', 'go', 'austin', 'play', 'golf', 'rent', 'ski', 'boat', 'jet', 'ski', 'fli', 'somewher', 'take', 'much', 'time']","[('meet', 0.04195815), ('busi', 0.034965113), ('would', 0.02797207), ('trip', 0.02797207), ('take', 0.02797207), ('I', 0.02797207), ('present', 0.020979036), ('suggest', 0.020979036), ('discuss', 0.020979036), ('ski', 0.020979036)]",meet,0.0419581
295,295,288,"['tim', 'mike', 'grigsbi', 'problem', 'access', 'west', 'power', 'site', 'can', 'pleas', 'make', 'sure', 'activ', 'password', 'thank', 'phillip']","[('pleas', 0.0625), ('site', 0.0625), ('thank', 0.0625), ('password', 0.0625), ('activ', 0.0625), ('sure', 0.0625), ('make', 0.0625), ('tim', 0.0625), ('can', 0.0625), ('access', 0.0625)]",pleas,0.062
296,296,289,"['reagan', 'just', 'want', 'give', 'updat', 'I', 'chang', 'unit', 'mix', 'includ', '1', 'bedroom', 'reduc', 'number', 'build', '12', 'kipp', 'flore', 'work', 'construct', 'draw', 'At', 'time', 'I', 'pursu', 'fha', 'financ', 'onc', 'construct', 'draw', 'complet', 'I', 'send', 'revis', 'bid', 'your', 'origin', 'bid', 'competit', 'I', 'still', 'attract', 'firm', 'strong', 'local', 'presenc', 'contact', 'phillip']","[('I', 0.055555634), ('bid', 0.03333335), ('draw', 0.03333335), ('construct', 0.03333335), ('revis', 0.022222219), ('complet', 0.022222219), ('financ', 0.022222219), ('send', 0.022222219), ('competit', 0.022222219), ('onc', 0.022222219)]",I,0.05555563
297,297,290,"['jim', 'Is', 'go', 'confer', 'call', 'type', 'weekli', 'meet', 'regulatori', 'issu', 'face', 'california', 'week', 'can', 'make', 'sure', 'ga', 'desk', 'includ', 'phillip']","[('california', 0.049999997), ('issu', 0.049999997), ('includ', 0.049999997), ('desk', 0.049999997), ('ga', 0.049999997), ('sure', 0.049999997), ('make', 0.049999997), ('can', 0.049999997), ('week', 0.049999997), ('jim', 0.049999997)]",california,0.04999999
298,298,291,"['37041', 'offic', 'locat', 'eb3210c', 'what', 'type', 'comput', 'desktop', 'laptop', 'both', 'both', 'Do', 'pda', 'If', 'ye', 'type', 'none', 'ipaq', 'palm', 'pilot', 'jornada', 'ipaq', 'Do', 'permiss', 'access', 'anyon', 'emailcalendar', 'NO', 'If', 'ye', 'doe', 'anyon', 'permiss', 'access', 'emailcalendar', 'ye', 'If', 'ye', 'ina', 'rangel', 'are', 'respons', 'updat', 'anyon', 'el', 'address', 'book', 'If', 'ye', 'NO', 'Is', 'anyon', 'els', 'respons', 'updat', 'address', 'book', 'If', 'ye', 'NO', 'Do', 'access', 'share', 'calendar', 'If', 'ye', 'share', 'calendar', 'ye', 'west', 'calendar', 'Do', 'distribut', 'group', 'messag', 'maintain', 'mass', 'mail', 'If', 'ye', 'pleas', 'list', 'NO', 'pleas', 'list', 'note', 'databas', 'applic', 'current', 'use', 'none', 'In', 'effort', 'plan', 'exact', 'datetim', 'migrat', 'also', 'need', 'know', 'what', 'normal', 'work', 'hour', 'from', '700', 'AM', 'To', '500', 'PM', 'will', 'offic', 'near', 'futur', 'vacat', 'leav', 'etc', 'NO', 'If', 'from', 'mmddyy', 'To', 'mmddyy']","[('ye', 0.05025147), ('If', 0.045226306), ('NO', 0.03015084), ('Do', 0.025125684), ('anyon', 0.025125684), ('calendar', 0.02010053), ('access', 0.02010053), ('ipaq', 0.015075379), ('permiss', 0.015075379), ('emailcalendar', 0.015075379)]",ye,0.0502514
299,299,292,"['have', 'send', 'resum', 'karen', 'buckley', 'HR', 'there', 'new', 'round', 'trade', 'track', 'interview', 'may']","[('new', 0.07692308), ('there', 0.07692308), ('interview', 0.07692308), ('track', 0.07692308), ('trade', 0.07692308), ('round', 0.07692308), ('have', 0.07692308), ('resum', 0.07692308), ('buckley', 0.07692308), ('send', 0.07692308)]",new,0.0769230
300,300,293,"['current', 'note', 'user', 'reason', 'for', 'use', 'outlook', 'web', 'access', 'owa', '1', 'onc', 'mailbox', 'migrat', 'note', 'outlook', 'outlook', 'client', 'configur', 'comput', 'after', 'migrat', 'mailbox', 'abl', 'send', 'reciev', 'mail', 'via', 'note', 'abl', 'start', 'use', 'outlook', 'configur', 'outlook', 'migrat', 'team', 'morn', 'mailbox', 'migrat', 'dure', 'period', 'use', 'outlook', 'web', 'access', 'owa', 'via', 'web', 'browser', 'internet', 'explor', '50', 'read', 'send', 'mail', 'pleas', 'note', 'your', 'calendar', 'entri', 'person', 'address', 'book', 'journal', 'todo', 'entri', 'import', 'note', 'avail', 'outlook', 'client', 'configur', 'desktop', '2', 'remot', 'access', 'mailbox', 'after', 'outlook', 'client', 'configur', 'use', 'outlook', 'web', 'access', 'owa', 'remot', 'access', 'mailbox', 'pleas', 'note', 'At', 'time', 'owa', 'client', 'access', 'connect', 'enron', 'network', 'lan', 'there', 'futur', 'plan', 'make', 'owa', 'avail', 'home', 'travel', 'abroad', 'how', 'TO', 'access', 'outlook', 'web', 'access', 'owa', 'launch', 'internet', 'explor', '50', 'address', 'window', 'type', 'httpnahoumsowa01pexchangejohndo', 'substitut', 'johndo', 'first', 'last', 'name', 'click', 'enter', 'you', 'prompt', 'sign', 'box', 'shown', 'type', 'corpyour', 'person', 'id', 'person', 'name', 'NT', 'password', 'logon', 'owa', 'click', 'OK', 'you', 'abl', 'view', 'mailbox', 'pleas', 'note', 'there', 'subtl', 'differ', 'function', 'outlook', 'owa', 'client', 'you', 'abl', 'mani', 'thing', 'owa', 'outlook', 'below', 'brief', 'list', 'function', 'not', 'avail', 'via', 'owa', 'featur', 'not', 'avail', 'use', 'owa', 'task', 'journal', 'spell', 'checker', 'offlin', 'use', 'print', 'templat', 'remind', 'time', 'deliveri', 'expir', 'outlook', 'rule', 'vote', 'messag', 'flag', 'messag', 'recal', 'share', 'contact', 'other', 'task', 'deleg', 'direct', 'resourc', 'book', 'person', 'distribut', 'list', 'question', 'OR', 'concern', 'If', 'question', 'concern', 'use', 'owa', 'client', 'pleas', 'contact', 'outlook', '2000', 'question', 'answer', 'mailbox', 'outlook2000enroncom', 'otherwis', 'may', 'contact', 'resolut', 'center', '7138531411', 'thank', 'outlook', '2000', 'migrat', 'team']","[('outlook', 0.043478627), ('owa', 0.035326354), ('access', 0.024456678), ('mailbox', 0.021739256), ('use', 0.021739256), ('note', 0.021739256), ('client', 0.019021837), ('web', 0.016304418), ('migrat', 0.016304418), ('abl', 0.013587)]",outlook,0.04347862
301,301,322,"['the', 'insur', 'compani', 'central', 'insur', 'agenc', 'inc', '6000', 'N', 'lamar', 'PO', 'box', '15427', 'austin', 'TX', '787615427', 'polici', 'cbi420478', 'contact', 'jeanett', 'peterson', '5124516551', 'the', 'actual', 'polici', 'sign', 'vista', 'insur', 'partner', 'pleas', 'tri', 'schedul', 'apprais', 'sometim', '1', 'pm', 'dad', 'walk', 'around', 'I', 'town', 'tuesday', 'what', 'els', 'need', 'get', 'done', 'close', 'phillip']","[('insur', 0.042553235), ('the', 0.03191491), ('polici', 0.03191491), ('pm', 0.021276593), ('1', 0.021276593), ('apprais', 0.021276593), ('sometim', 0.021276593), ('tri', 0.021276593), ('schedul', 0.021276593), ('pleas', 0.021276593)]",insur,0.04255323
302,302,323,"['I', 'email', 'insur', 'info', 'tomorrow']","[('I', 0.2), ('email', 0.2), ('insur', 0.2), ('info', 0.2), ('tomorrow', 0.2)]",I,0.
303,303,324,"['yet', 'even', 'without', 'new', 'plant', 'look', 'like', 'Q3', 'wors', 'last', 'year', 'can', 'take', 'look', 'get', 'back', 'bullish', 'case', 'thank', 'phillip']","[('look', 0.0769231), ('can', 0.05128205), ('last', 0.05128205), ('thank', 0.05128205), ('case', 0.05128205), ('bullish', 0.05128205), ('back', 0.05128205), ('get', 0.05128205), ('take', 0.05128205), ('yet', 0.05128205)]",look,0.076923
304,304,325,"['here', 'simplist', 'spreadsheet', 'I', 'didnt', 'drop', 'new', 'gener', 'yet', 'even', 'without', 'new', 'plant', 'look', 'like', 'Q3', 'wors', 'last', 'year', 'can', 'take', 'look', 'get', 'back', 'bullish', 'case', 'thank', 'phillip']","[('look', 0.055555575), ('new', 0.055555575), ('last', 0.037037037), ('year', 0.037037037), ('can', 0.037037037), ('take', 0.037037037), ('Q3', 0.037037037), ('get', 0.037037037), ('thank', 0.037037037), ('case', 0.037037037)]",look,0.05555557
305,305,326,"['I', 'tri', 'get', 'dad', 'take', 'apprais', 'coupl', 'unit', 'let', 'know', 'day', 'time', 'phillip']","[('unit', 0.07692308), ('coupl', 0.07692308), ('time', 0.07692308), ('day', 0.07692308), ('know', 0.07692308), ('let', 0.07692308), ('I', 0.07692308), ('get', 0.07692308), ('take', 0.07692308), ('tri', 0.07692308)]",unit,0.0769230
306,306,327,"['larri', 'It', 'sound', 'like', 'claudia', 'jacqu', 'almost', 'finish', 'document', 'there', 'one', 'item', 'I', 'unsur', 'wa', 'environment', 'report', 'prepar', 'origin', 'purchas', 'If', 'ye', 'shouldnt', 'list', 'asset', 'partnership', 'cost', 'recov', 'phillip']","[('ye', 0.034482755), ('list', 0.034482755), ('prepar', 0.034482755), ('origin', 0.034482755), ('purchas', 0.034482755), ('If', 0.034482755), ('environment', 0.034482755), ('shouldnt', 0.034482755), ('recov', 0.034482755), ('partnership', 0.034482755)]",ye,0.03448275
307,307,294,"['current', 'note', 'user', 'To', 'ensur', 'experi', 'success', 'migrat', 'note', 'outlook', 'necessari', 'gather', 'individu', 'person', 'inform', 'prior', 'date', 'migrat', 'pleas', 'take', 'minut', 'complet', 'fill', 'follow', 'survey', 'when', 'finish', 'simpli', 'click', 'repli', 'button', 'hit', 'send', 'your', 'survey', 'automat', 'sent', 'outlook', '2000', 'migrat', 'mailbox', 'thank', 'outlook', '2000', 'migrat', 'team', 'full', 'name', 'login', 'ID', 'extens', 'offic', 'locat', 'what', 'type', 'comput', 'desktop', 'laptop', 'both', 'Do', 'pda', 'If', 'ye', 'type', 'none', 'ipaq', 'palm', 'pilot', 'jornada', 'Do', 'permiss', 'access', 'anyon', 'emailcalendar', 'If', 'ye', 'doe', 'anyon', 'permiss', 'access', 'emailcalendar', 'If', 'ye', 'are', 'respons', 'updat', 'anyon', 'el', 'address', 'book', 'If', 'ye', 'Is', 'anyon', 'els', 'respons', 'updat', 'address', 'book', 'If', 'ye', 'Do', 'access', 'share', 'calendar', 'If', 'ye', 'share', 'calendar', 'Do', 'distribut', 'group', 'messag', 'maintain', 'mass', 'mail', 'If', 'ye', 'pleas', 'list', 'pleas', 'list', 'note', 'databas', 'applic', 'current', 'use', 'In', 'effort', 'plan', 'exact', 'datetim', 'migrat', 'also', 'need', 'know', 'what', 'normal', 'work', 'hour', 'from', 'To', 'will', 'offic', 'near', 'futur', 'vacat', 'leav', 'etc', 'If', 'from', 'mmddyy', 'To', 'mmddyy']","[('If', 0.03488391), ('ye', 0.03100791), ('migrat', 0.023255907), ('Do', 0.019379908), ('anyon', 0.019379908), ('pleas', 0.0155039085), ('To', 0.0155039085), ('note', 0.0155039085), ('outlook', 0.0155039085), ('access', 0.0155039085)]",If,0.0348839
308,308,295,"['alan', 'you', 'receiv', 'updat', 'number', 'keith', 'holst', 'call', 'receiv', 'phillip']","[('receiv', 0.15789478), ('alan', 0.10526316), ('you', 0.10526316), ('updat', 0.10526316), ('number', 0.10526316), ('keith', 0.10526316), ('holst', 0.10526316), ('call', 0.10526316), ('phillip', 0.10526316)]",receiv,0.1578947
309,309,296,"['phillip', 'I', 'got', 'request', 'On', 'ga', 'side', 'I', 'think', 'keanlay', 'need', 'updat', 'tabl', 'prepar', 'month', 'ago', 'ive', 'attach', 'can', 'oblig', 'thank', 'alan', 'comn', 'forward', 'alan', 'comnespdxect', '04272001', '0142', 'PM', 'janel', 'guerreroenron', '04272001', '1244', 'PM', 'To', 'alan', 'comnespdxectect', 'jeff', 'dasovichnaenronenron', 'cc', 'paul', 'kaufmanpdxectect', 'richard', 'shapironaenronenron', 'subject', 'request', 'steve', 'kean', 'alan', 'steve', 'ask', 'updat', 'power', 'point', 'reflect', 'stupid', 'regulatorylegisl', 'decis', 'sinc', 'begin', 'year', 'ken', 'want', 'updat', 'chart', 'brief', 'book', 'next', 'week', 'ken', 'lay', 'tour', 'CA', 'He', 'also', 'want', 'forward', 'price', 'curv', 'ga', 'power', 'CA', 'can', 'get', 'three', 'document', 'monday', 'afternoon']","[('alan', 0.031446617), ('updat', 0.025157275), ('forward', 0.01886794), ('want', 0.01886794), ('PM', 0.01886794), ('ken', 0.01886794), ('can', 0.01886794), ('CA', 0.01886794), ('steve', 0.01886794), ('04272001', 0.01886794)]",alan,0.03144661
310,310,297,"['phillip', 'I', 'got', 'request', 'On', 'ga', 'side', 'I', 'think', 'keanlay', 'need', 'updat', 'tabl', 'prepar', 'month', 'ago', 'ive', 'attach', 'can', 'oblig', 'thank', 'alan', 'comn', 'forward', 'alan', 'comnespdxect', '04272001', '0142', 'PM', 'janel', 'guerreroenron', '04272001', '1244', 'PM', 'To', 'alan', 'comnespdxectect', 'jeff', 'dasovichnaenronenron', 'cc', 'paul', 'kaufmanpdxectect', 'richard', 'shapironaenronenron', 'subject', 'request', 'steve', 'kean', 'alan', 'steve', 'ask', 'updat', 'power', 'point', 'reflect', 'stupid', 'regulatorylegisl', 'decis', 'sinc', 'begin', 'year', 'ken', 'want', 'updat', 'chart', 'brief', 'book', 'next', 'week', 'ken', 'lay', 'tour', 'CA', 'He', 'also', 'want', 'forward', 'price', 'curv', 'ga', 'power', 'CA', 'can', 'get', 'three', 'document', 'monday', 'afternoon']","[('alan', 0.031446617), ('updat', 0.025157275), ('forward', 0.01886794), ('want', 0.01886794), ('PM', 0.01886794), ('ken', 0.01886794), ('can', 0.01886794), ('CA', 0.01886794), ('steve', 0.01886794), ('04272001', 0.01886794)]",alan,0.03144661
311,311,298,"['tim', 'can', 'author', 'access', 'west', 'power', 'site', 'keith', 'holtz', 'He', 'southern', 'california', 'basi', 'trader', 'two', 'year', 'contract', 'On', 'anoth', 'note', 'imagin', 'sarr', 'websit', 'lower', 'forecast', 'mcnari', 'discharg', 'may', 'It', 'seem', 'like', 'flow', 'lower', '130', 'rang', 'fewer', 'day', 'near', '170', 'also', 'second', 'half', 'april', 'doesnt', 'seem', 'pan', 'I', 'expect', 'the', 'outflow', 'stay', '100110', 'mcnari', 'can', 'email', 'call', 'addit', 'insight', 'thank', 'phillip']","[('lower', 0.025862088), ('can', 0.025862088), ('mcnari', 0.025862088), ('seem', 0.025862088), ('near', 0.017241377), ('second', 0.017241377), ('also', 0.017241377), ('170', 0.017241377), ('april', 0.017241377), ('130', 0.017241377)]",lower,0.02586208
312,312,299,"['gari', 'I', 'also', 'speak', 'johnni', 'brown', 'san', 'antonio', 'gener', 'contractor', 'accord', 'johnni', 'I', 'would', 'pay', 'le', 'buy', 'factori', 'versu', 'purchas', 'panel', 'sinc', 'site', 'within', 'region', 'assum', 'true', 'I', 'work', 'directli', 'I', 'believ', 'sent', 'plan', 'they', 'prepar', 'kipp', 'flore', 'architect', 'can', 'confirm', 'price', 'direct', 'factori', 'distributor', 'If', 'estim', 'work', 'johnni', 'pleas', 'email', 'well', 'thank', 'time', 'I', 'excit', 'potenti', 'use', 'product', 'phillip', 'allen']","[('I', 0.052631695), ('johnni', 0.035087764), ('factori', 0.026315806), ('work', 0.026315806), ('can', 0.017543858), ('direct', 0.017543858), ('price', 0.017543858), ('confirm', 0.017543858), ('kipp', 0.017543858), ('prepar', 0.017543858)]",I,0.05263169
313,313,300,"['ray', 'Is', 'detail', 'ga', 'cost', 'proxi', 'which', 'deliveri', 'point', 'public', 'use', 'basic', 'help', 'u', 'get', 'clarif', 'languag', 'averag', 'daili', 'cost', 'ga', 'deliveri', 'point', 'california', 'phillip']","[('deliveri', 0.06521741), ('ga', 0.06521741), ('cost', 0.06521741), ('point', 0.06521741), ('daili', 0.043478258), ('clarif', 0.043478258), ('languag', 0.043478258), ('u', 0.043478258), ('use', 0.043478258), ('averag', 0.043478258)]",deliveri,0.0652174
314,314,301,"['andrea', 'after', 'review', 'bryan', 'hull', 'resum', 'I', 'think', 'would', 'best', 'suit', 'trade', 'track', 'program', 'pleas', 'forward', 'resum', 'karen', 'buckley', 'phillip']","[('resum', 0.0769231), ('trade', 0.05128205), ('best', 0.05128205), ('buckley', 0.05128205), ('karen', 0.05128205), ('forward', 0.05128205), ('pleas', 0.05128205), ('program', 0.05128205), ('track', 0.05128205), ('andrea', 0.05128205)]",resum,0.076923
315,315,302,"['ned', 'regard', 'waha', 'storag', 'west', 'desk', 'strong', 'need', 'storag', 'alway', 'will', 'show', 'bid', 'base', 'current', 'summerwint', 'spread', 'cycl', 'valu', 'the', 'follow', 'assumpt', 'made', 'establish', 'bid', '5', 'daili', 'inject', 'capac', '10', 'daili', 'withdraw', 'capac', '1', 'fuel', 'inject', '001mmbtu', 'variabl', 'inject', 'withdraw', 'fee', 'also', 'undiscount', 'june', '01', 'januari', '02', 'spread', '060', 'exist', 'time', 'bid', 'bid', '1', 'year', 'storag', 'contract', 'begin', 'june', '01', 'base', 'assumpt', '005', 'mmbtumonth', '060year', 'demand', 'charg', 'I', 'sure', 'exactli', 'need', 'pleas', 'call', 'email', 'comment', 'phillip', 'allen']","[('bid', 0.03649643), ('storag', 0.029197121), ('inject', 0.029197121), ('1', 0.021897826), ('daili', 0.021897826), ('spread', 0.021897826), ('withdraw', 0.021897826), ('assumpt', 0.021897826), ('01', 0.021897826), ('capac', 0.021897826)]",bid,0.0364964
316,316,303,"['meet', 'delay', 'phil', 'I', 'suspect', 'discussionsnegoti', 'take', 'place', 'behind', 'close', 'door', 'smoke', 'fill', 'room', 'directli', 'commission', 'among', 'ferc', 'staffer', 'never', 'say', 'never', 'I', 'think', 'highli', 'unlik', 'final', 'order', 'contain', 'fix', 'price', 'cap', 'I', 'base', 'belief', 'larg', 'part', 'I', 'heard', 'luncheon', 'I', 'attend', 'yesterday', 'afternoon', 'keynot', 'speaker', 'ferc', 'chairman', 'curt', 'hebert', 'although', 'chairman', 'began', 'present', 'expressli', 'state', 'would', 'comment', 'answer', 'question', 'pend', 'proceed', 'commiss', 'hebert', 'enlighten', 'comment', 'relat', 'price', 'cap', 'price', 'cap', 'almost', 'never', 'right', 'answer', 'price', 'cap', 'effect', 'prolong', 'shortag', 'competit', 'choic', 'consum', 'right', 'answer', 'ani', 'solut', 'howev', 'short', 'term', 'increas', 'suppli', 'reduc', 'demand', 'accept', 'eight', 'eleven', 'western', 'governor', 'oppos', 'price', 'cap', 'would', 'export', 'california', 'problem', 'west', 'thi', 'latest', 'intellig', 'I', 'matter', 'pretti', 'strong', 'anti', 'price', 'cap', 'posit', 'Of', 'cours', 'hebert', 'one', 'commission', '3', 'current', 'commiss', 'control', 'meet', 'agenda', 'draft', 'order', 'like', 'item', 'could', 'bump', 'agenda', 'hope', 'info', 'help', 'ray', 'phillip', 'K', 'allenect', '04252001', '0228', 'PM', 'To', 'ray', 'alvareznaenronenron', 'cc', 'subject', 'Re', 'thi', 'morn', 'commiss', 'meet', 'delay', 'are', 'behind', 'close', 'door', 'discuss', 'held', 'prior', 'meet', 'Is', 'potenti', 'surpris', 'announc', 'sort', 'fix', 'price', 'ga', 'power', 'cap', 'open', 'meet', 'final', 'happen']","[('price', 0.02555927), ('cap', 0.02555927), ('I', 0.022364348), ('meet', 0.01916943), ('hebert', 0.01277959), ('answer', 0.01277959), ('commiss', 0.01277959), ('never', 0.012779589), ('order', 0.009584674), ('final', 0.009584674)]",price,0.0255592
317,317,306,"['Mr', 'allen', 'per', 'phone', 'convers', 'pleas', 'see', 'instruct', 'get', 'access', 'view', 'ferc', 'meet', 'pleas', 'advis', 'problem', 'question', 'concern', 'eric', 'benson', 'Sr', 'specialist', 'enron', 'govern', 'affair', 'the', 'america', '7138531711', 'forward', 'eric', 'bensonnaenron', '04242001', '0145', 'PM', 'janet', 'butler', '11062000', '0451', 'PM', 'To', 'ericbensonenroncom', 'stevekeanenroncom', 'richardshapiroenroncom', 'cc', 'subject', 'instruct', 'ferc', 'meet', 'As', 'long', 'configur', 'receiv', 'real', 'video', 'abl', 'access', 'ferc', 'meet', 'wednesday', 'novemb', '8', 'the', 'instruct', 'forward', 'janet', 'butleretsenron', '11062000', '0449', 'PM', 'janet', 'butler', '10312000', '0412', 'PM', 'To', 'christilnicolayenroncom', 'jame', 'D', 'steffesnaenronenron', 'rebeccacantrellenroncom', 'cc', 'shelley', 'cormanetsenronenron', 'subject', 'instruct', 'ferc', 'meet', 'here', 'url', 'address', 'capitol', 'connect', 'you', 'abl', 'simpli', 'click', 'url', 'come', 'thi', 'assum', 'comput', 'configur', 'real', 'videoaudio', 'We', 'pay', 'annual', 'contract', 'bill', 'cost', 'center', 'you', 'connect', 'tomorrow', 'long', 'access', 'real', 'video', 'httpwwwcapitolconnectiongmuedu', 'instruct', 'onc', 'capitol', 'connect', 'sight', 'click', 'ferc', 'click', 'first', 'line', 'either', 'click', 'box', 'dialogu', 'box', 'requir', 'person', 'name', 'enroni', 'password', 'fercnow', 'real', 'player', 'connect', 'meet', 'expand', 'screen', 'wish', 'easier', 'view', 'adjust', 'sound', 'wish']","[('instruct', 0.023346402), ('meet', 0.023346402), ('ferc', 0.023346398), ('PM', 0.019455317), ('click', 0.019455317), ('real', 0.019455317), ('connect', 0.019455317), ('janet', 0.015564235), ('access', 0.015564235), ('configur', 0.01167316)]",instruct,0.02334640
318,318,307,"['frank', 'the', 'impli', 'risk', 'creat', 'san', 'juan', 'rocki', 'indec', 'partial', 'set', 'today', 'risk', 'long', 'futur', 'posit', 'whatev', 'risk', 'prior', 'matter', 'sinc', 'rest', 'book', 'short', 'price', 'larg', 'offset', 'If', 'var', 'calcul', 'match', 'compani', 'true', 'risk', 'need', 'revis', 'adjust', 'phillip']","[('risk', 0.068493225), ('var', 0.027397256), ('match', 0.027397256), ('short', 0.027397256), ('price', 0.027397256), ('larg', 0.027397256), ('offset', 0.027397256), ('If', 0.027397256), ('rest', 0.027397256), ('calcul', 0.027397256)]",risk,0.06849322
319,319,308,"['I', 'spoke', 'insur', 'compani', 'they', 'go', 'cancel', 'prorat', 'polici', 'work', 'kuo', 'issu', 'new', 'polici']","[('polici', 0.11111113), ('prorat', 0.07407407), ('cancel', 0.07407407), ('issu', 0.07407407), ('kuo', 0.07407407), ('work', 0.07407407), ('I', 0.07407407), ('insur', 0.07407407), ('they', 0.07407407), ('spoke', 0.07407407)]",polici,0.1111111
320,320,309,"['fyi', 'sell', '500d', 'socal', 'XH', 'lower', 'overal', 'desk', 'var', '8', 'million', 'sell', '500k', 'KV', 'lower', 'overal', 'desk', 'var', '4', 'million', 'frank']","[('million', 0.083333336), ('desk', 0.083333336), ('lower', 0.083333336), ('overal', 0.083333336), ('sell', 0.083333336), ('var', 0.083333336), ('4', 0.055555537), ('KV', 0.055555537), ('500k', 0.055555537), ('fyi', 0.055555537)]",million,0.08333333
321,321,310,"['griff', 'It', 'bidweek', 'I', 'need', 'provid', 'view', 'id', 'two', 'major', 'public', 'post', 'monthli', 'indec', 'pleas', 'email', 'id', 'password', 'follow', 'dexter', 'stei', 'natur', 'ga', 'intellig', 'dexterintelligencepresscom', 'lian', 'kucher', 'insid', 'ferc', 'lkuchmhcom', 'bidweek', 'way', 'critic', 'id', 'sent', 'asap', 'thank', 'help', 'phillip', 'allen']","[('id', 0.0519481), ('bidweek', 0.03896106), ('lkuchmhcom', 0.025974024), ('critic', 0.025974024), ('intellig', 0.025974024), ('dexterintelligencepresscom', 0.025974024), ('lian', 0.025974024), ('kucher', 0.025974024), ('insid', 0.025974024), ('ferc', 0.025974024)]",id,0.051948
322,322,311,"['I', 'think', 'chad', 'deserv', 'interview']","[('I', 0.2), ('think', 0.2), ('chad', 0.2), ('deserv', 0.2), ('interview', 0.2)]",I,0.
323,323,312,"['send', 'resum', 'karen', 'buckley', 'I', 'believ', 'full', 'round', 'interview', 'trade', 'track', 'may']","[('round', 0.08333334), ('believ', 0.08333334), ('track', 0.08333334), ('trade', 0.08333334), ('interview', 0.08333334), ('send', 0.08333334), ('full', 0.08333334), ('karen', 0.08333334), ('buckley', 0.08333334), ('resum', 0.08333334)]",round,0.0833333
324,324,313,"['have', 'send', 'resum', 'karen', 'buckley', 'HR', 'there', 'new', 'round', 'trade', 'track', 'interview', 'may']","[('new', 0.07692308), ('there', 0.07692308), ('interview', 0.07692308), ('track', 0.07692308), ('trade', 0.07692308), ('round', 0.07692308), ('have', 0.07692308), ('resum', 0.07692308), ('buckley', 0.07692308), ('send', 0.07692308)]",new,0.0769230
325,325,314,"['andrea', 'after', 'review', 'bryan', 'hull', 'resum', 'I', 'think', 'would', 'best', 'suit', 'trade', 'track', 'program', 'pleas', 'forward', 'resum', 'karen', 'buckley', 'phillip']","[('resum', 0.0769231), ('trade', 0.05128205), ('best', 0.05128205), ('buckley', 0.05128205), ('karen', 0.05128205), ('forward', 0.05128205), ('pleas', 0.05128205), ('program', 0.05128205), ('track', 0.05128205), ('andrea', 0.05128205)]",resum,0.076923
326,326,315,"['johnni', 'thank', 'meet', 'friday', 'I', 'left', 'feel', 'optimist', 'panel', 'system', 'I', 'would', 'like', 'find', 'way', 'incorpor', 'panel', 'home', 'design', 'I', 'show', 'In', 'order', 'make', 'feasibl', 'within', 'budget', 'I', 'sure', 'take', 'sever', 'iter', 'the', 'prospect', 'purchas', 'panel', 'framer', 'instal', 'may', 'consid', 'howev', 'first', 'choic', 'would', 'gener', 'contractor', 'I', 'realiz', 'receiv', 'number', 'call', 'seek', 'inform', 'product', 'littl', 'probabl', 'sale', 'I', 'want', 'assur', 'I', 'go', 'build', 'hous', 'fall', 'I', 'would', 'serious', 'consid', 'use', 'panel', 'system', 'truli', 'slight', 'increas', 'cost', 'stick', 'built', 'pleas', 'email', 'cost', 'estim', 'complet', 'thank', 'phillip', 'allen']","[('I', 0.057692524), ('panel', 0.03205136), ('would', 0.025641069), ('consid', 0.019230783), ('system', 0.019230783), ('cost', 0.019230783), ('thank', 0.019230783), ('littl', 0.012820507), ('sale', 0.012820507), ('want', 0.012820507)]",I,0.05769252
327,327,316,"['Hi', 'philip', 'If', 'slide', 'preapr', 'assist', 'email', 'copi', 'mog', 'heu', 'confer', 'new', 'york', 'thank', 'karen', 'origin', 'messag', 'from', 'allen', 'phillip', 'sent', 'wednesday', 'april', '18', '2001', '1030', 'AM', 'To', 'buckley', 'karen', 'subject', 'Re', 'present', 'trade', 'track', 'AA', 'the', 'topic', 'western', 'natur', 'ga', 'market', 'I', 'may', 'overhead', 'slide', 'I', 'bring', 'handout']","[('I', 0.031578965), ('karen', 0.031578965), ('slide', 0.031578965), ('track', 0.02105263), ('trade', 0.02105263), ('present', 0.02105263), ('AA', 0.02105263), ('Re', 0.02105263), ('buckley', 0.02105263), ('topic', 0.02105263)]",I,0.03157896
328,328,317,"['chad', 'call', 'ted', 'bland', 'trade', 'track', 'program', 'all', 'desk', 'tri', 'use', 'program', 'train', 'analyst', 'trader', 'your', 'experi', 'help', 'process', 'make', 'risk', 'rotat', 'unnecessari', 'unless', 'die', 'anoth', 'rotat', 'risk', 'phillip']","[('rotat', 0.054545466), ('program', 0.054545466), ('risk', 0.054545466), ('help', 0.03636363), ('process', 0.03636363), ('make', 0.03636363), ('your', 0.03636363), ('anoth', 0.03636363), ('unless', 0.03636363), ('analyst', 0.03636363)]",rotat,0.05454546
329,329,318,"['how', 'I', 'send', 'money', 'silent', 'second', 'regular', 'mail', 'overnight', 'wire', 'transfer', 'I', 'dont', 'see', 'bank', 'make', 'fund', 'avail', 'friday', 'unless', 'I', 'wire', 'money', 'If', 'I', 'need', 'pleas', 'send', 'wire', 'instruct']","[('I', 0.0943397), ('wire', 0.07547175), ('send', 0.056603793), ('money', 0.056603793), ('friday', 0.03773585), ('If', 0.03773585), ('avail', 0.03773585), ('make', 0.03773585), ('pleas', 0.03773585), ('need', 0.03773585)]",I,0.094339
330,330,319,"['the', 'topic', 'western', 'natur', 'ga', 'market', 'I', 'may', 'overhead', 'slide', 'I', 'bring', 'handout']","[('I', 0.12000002), ('market', 0.080000006), ('bring', 0.080000006), ('slide', 0.080000006), ('overhead', 0.080000006), ('may', 0.080000006), ('the', 0.080000006), ('western', 0.080000006), ('natur', 0.080000006), ('topic', 0.080000006)]",I,0.1200000
331,331,320,"['johnni', 'thank', 'meet', 'friday', 'I', 'left', 'feel', 'optimist', 'panel', 'system', 'I', 'would', 'like', 'find', 'way', 'incorpor', 'panel', 'home', 'design', 'I', 'show', 'In', 'order', 'make', 'feasibl', 'within', 'budget', 'I', 'sure', 'take', 'sever', 'iter', 'the', 'prospect', 'purchas', 'panel', 'framer', 'instal', 'may', 'consid', 'howev', 'first', 'choic', 'would', 'gener', 'contractor', 'I', 'realiz', 'receiv', 'number', 'call', 'seek', 'inform', 'product', 'littl', 'probabl', 'sale', 'I', 'want', 'assur', 'I', 'go', 'build', 'hous', 'fall', 'I', 'would', 'serious', 'consid', 'use', 'panel', 'system', 'truli', 'slight', 'increas', 'cost', 'stick', 'built', 'pleas', 'email', 'cost', 'estim', 'complet', 'thank', 'phillip', 'allen']","[('I', 0.057692524), ('panel', 0.03205136), ('would', 0.025641069), ('consid', 0.019230783), ('system', 0.019230783), ('cost', 0.019230783), ('thank', 0.019230783), ('littl', 0.012820507), ('sale', 0.012820507), ('want', 0.012820507)]",I,0.05769252
332,332,321,"['wholesal', 'servic', 'ee', 'ga', 'desk', 'approv', 'trader', 'list', 'name', 'titl', 'region', 'basi', 'onli', 'black', 'don', 'vice', 'presid', 'ani', 'desk', 'hewitt', 'jess', 'director', 'all', 'desk', 'vanderhorst', 'barri', 'director', 'east', 'west', 'shireman', 'kri', 'director', 'west', 'de', 'champ', 'joe', 'director', 'central', 'reynold', 'roger', 'director', 'west', 'migliano', 'andi', 'manag', 'central', 'wiltfong', 'jim', 'manag', 'all', 'desk', 'barker', 'jim', 'Sr', 'specialist', 'east', 'fleme', 'matt', 'Sr', 'specialist', 'east', 'basi', 'tate', 'paul', 'Sr', 'specialist', 'east', 'basi', 'driscol', 'mard', 'Sr', 'specialist', 'east', 'basi', 'arnold', 'laura', 'Sr', 'specialist', 'central', 'basi', 'blain', 'jay', 'Sr', 'specialist', 'east', 'basi', 'guerra', 'jesu', 'Sr', 'specialist', 'central', 'basi', 'bangl', 'christina', 'Sr', 'specialist', 'east', 'basi', 'smith', 'rhonda', 'Sr', 'specialist', 'east', 'basi', 'boettcher', 'amanda', 'Sr', 'specialist', 'central', 'basi', 'pendegraft', 'sherri', 'Sr', 'specialist', 'east', 'basi', 'rubi', 'robinson', 'specialist', 'west', 'basi', 'diza', 'alain', 'specialist', 'east', 'basi', 'monday', 'april', '16', '2001', 'jess', 'P', 'hewitt', 'revis', 'approv', 'trader', 'listdoc']","[('basi', 0.066666946), ('specialist', 0.066666946), ('Sr', 0.057143085), ('east', 0.052381154), ('central', 0.02857149), ('director', 0.02857149), ('west', 0.023809558), ('desk', 0.023809558), ('jess', 0.014285705), ('manag', 0.014285705)]",basi,0.06666694
333,333,328,"['luci', 'the', 'spreadsheet', 'look', 'fine', 'phillip']","[('luci', 0.16666667), ('the', 0.16666667), ('spreadsheet', 0.16666667), ('look', 0.16666667), ('fine', 0.16666667), ('phillip', 0.16666667)]",luci,0.1666666
334,334,347,"['jacqu', 'I', 'offic', 'rest', 'week', 'have', 'ever', 'seen', 'anyon', 'miss', 'much', 'work', 'I', 'last', '6', 'week', 'I', 'assur', 'unusu', 'hope', 'sign', 'document', 'monday', 'call', 'cell', 'phone', 'need', 'phillip']","[('I', 0.07547176), ('week', 0.056603797), ('document', 0.037735846), ('unusu', 0.037735846), ('hope', 0.037735846), ('sign', 0.037735846), ('assur', 0.037735846), ('monday', 0.037735846), ('need', 0.037735846), ('phone', 0.037735846)]",I,0.0754717
335,335,333,"['luci', 'here', 'rentrol', 'last', 'friday', 'the', 'close', 'thursday', 'delay', 'friday', 'april', '20th', 'If', 'stay', 'april', '20th', 'would', 'help', 'If', 'made', 'commit', 'I', 'understand', 'gari', 'plan', 'put', 'AC', '35', 'you', 'give', 'work', 'numer', '713', '8537041', 'phillip']","[('april', 0.045454573), ('friday', 0.045454573), ('If', 0.045454573), ('20th', 0.045454573), ('you', 0.030303033), ('plan', 0.030303033), ('put', 0.030303033), ('AC', 0.030303033), ('35', 0.030303033), ('understand', 0.030303033)]",april,0.04545457
336,336,334,"['thank', 'help']","[('thank', 0.5), ('help', 0.5)]",thank,0.
337,337,335,"['jed', 'thank', 'respons', 'phillip', 'allen']","[('jed', 0.2), ('thank', 0.2), ('respons', 0.2), ('phillip', 0.2), ('allen', 0.2)]",jed,0.
338,338,336,"['the', 'follow', 'price', 'request', 'unfortun', 'unwil', 'transact', 'level', 'due', 'current', 'market', 'volatil', 'consid', 'accur', 'market', 'price', 'may01oct01', 'socaljuan', 'offer', '870', 'usdmmbtu', 'apr02oct02', 'socaljuan', 'offer', '353', 'usdmmbtu', 'our', 'present', 'valu', 'mark', 'market', 'calcul', 'trade', 'follow', 'may01oct01', '30000day', '05975', '44165200', 'apr02oct02', '060', '5920980', 'apr02oct02', '0745', '5637469', 'apr02oct02', '055', '3006092', 'If', 'question', 'call', '203', '3555059', 'jed', 'hershey', 'thi', 'email', 'contain', 'privileg', 'attorneycli', 'commun', 'andor', 'confidenti', 'inform', 'use', 'intend', 'recipi', 'receipt', 'unintend', 'recipi', 'constitut', 'waiver', 'applic', 'privileg', 'read', 'disclosur', 'discuss', 'dissemin', 'distribut', 'copi', 'inform', 'anyon', 'intend', 'recipi', 'employe', 'agent', 'strictli', 'prohibit', 'If', 'receiv', 'commun', 'error', 'pleas', 'immedi', 'notifi', 'u', 'delet', 'origin', 'materi', 'comput', 'sempra', 'energi', 'trade', 'corp', 'set', 'compani', 'sdge', 'socalga', 'util', 'own', 'set', 'parent', 'compani', 'set', 'regul', 'california', 'public', 'util', 'commiss', 'buy', 'set', 'product', 'servic', 'continu', 'receiv', 'qualiti', 'regul', 'servic', 'util']","[('set', 0.021929905), ('apr02oct02', 0.021929905), ('market', 0.017543903), ('recipi', 0.017543903), ('util', 0.017543903), ('usdmmbtu', 0.013157912), ('offer', 0.013157912), ('may01oct01', 0.013157912), ('inform', 0.013157912), ('follow', 0.013157912)]",set,0.02192990
339,339,337,"['reagan', 'I', 'sent', 'email', 'last', 'week', 'state', 'I', 'would', 'san', 'marco', 'friday', 'april', '13th', 'howev', 'close', 'postpon', 'As', 'I', 'mention', 'I', 'go', 'cari', 'kipp', 'draw', 'plan', 'resid', 'I', 'get', 'back', 'touch', 'finish', 'regard', 'multifamili', 'project', 'I', 'go', 'work', 'project', 'manag', 'san', 'antonio', 'for', 'first', 'develop', 'project', 'I', 'feel', 'comfort', 'experi', 'obtain', 'fha', 'financ', 'We', 'work', 'kipp', 'flore', 'final', 'floor', 'plan', 'begin', 'construct', 'draw', 'your', 'bid', 'construct', 'compet', 'construct', 'estim', 'I', 'still', 'attract', 'firm', 'possibl', 'builder', 'due', 'strong', 'local', 'relationship', 'I', 'get', 'back', 'touch', 'made', 'final', 'determin', 'unit', 'mix', 'site', 'plan', 'phillip', 'allen']","[('I', 0.062112026), ('construct', 0.024844756), ('project', 0.024844756), ('plan', 0.024844756), ('go', 0.01863355), ('get', 0.01863355), ('back', 0.01863355), ('touch', 0.01863355), ('draw', 0.01863355), ('work', 0.01863355)]",I,0.06211202
340,340,338,"['jacqu', 'the', 'amount', 'need', 'fill', 'blank', 'exhibit', 'B', 'follow', 'kipp', 'florestot', 'contract', '23600', '2375', 'paid', '21225', 'outstand', 'kohutek', '2150', 'cuatro', '37800', 'georg', 'larri', 'paid', '3500', 'apprais', 'I', 'agre', 'reimburs', 'amount', 'the', 'total', 'cash', 'keith', 'I', 'pay', 'seller', '5875', '3500', 'apprais', '2375', 'engin', 'I', 'couldnt', 'find', 'refer', 'cash', 'consider', 'paid', 'buyer', 'let', 'know', 'I', 'need', 'anyth', 'els', 'forward', 'seller', 'execut', 'phillip']","[('I', 0.046729036), ('paid', 0.037383217), ('3500', 0.028037395), ('amount', 0.028037395), ('need', 0.028037395), ('apprais', 0.028037395), ('the', 0.028037395), ('cash', 0.028037395), ('2375', 0.028037395), ('seller', 0.028037395)]",I,0.04672903
341,341,339,"['john', 'regard', 'employ', 'agreement', 'mike', 'declin', 'without', 'counter', 'keith', 'said', 'would', 'sign', '75k', 'cash250', 'equiti', 'I', 'still', 'believ', 'frank', 'receiv', 'sign', 'incent', 'keith', 'phillip']","[('sign', 0.06521742), ('keith', 0.06521742), ('still', 0.04347826), ('equiti', 0.04347826), ('I', 0.04347826), ('believ', 0.04347826), ('incent', 0.04347826), ('receiv', 0.04347826), ('would', 0.04347826), ('frank', 0.04347826)]",sign,0.0652174
342,342,340,"['thank', 'respons', 'I', 'think', 'right', 'engag', 'architect', 'next', 'logic', 'step', 'I', 'alreadi', 'contact', 'cari', 'kipp', 'sent', 'floor', 'plan', 'He', 'got', 'back', 'yesterday', 'first', 'draft', 'He', 'took', 'plan', 'improv', 'I', 'go', 'offici', 'engag', 'cari', 'draw', 'plan', 'while', 'work', 'I', 'want', 'tri', 'work', 'detail', 'specif', 'list', 'also', 'I', 'would', 'like', 'visit', 'coupl', 'home', 'built', 'speak', '1', '2', 'satisfi', 'home', 'owner', 'I', 'san', 'marco', 'friday', 'april', '13th', 'are', 'home', 'near', 'complet', 'I', 'could', 'walk', 'day', 'also', 'provid', 'refer', 'onc', 'I', 'plan', 'spec', 'I', 'send', 'adjust', 'bid', 'phillip']","[('I', 0.0666669), ('plan', 0.0333334), ('home', 0.026666699), ('cari', 0.02000001), ('He', 0.02000001), ('work', 0.02000001), ('also', 0.02000001), ('engag', 0.02000001), ('2', 0.013333324), ('1', 0.013333324)]",I,0.066666
343,343,341,"['one', 'desk', 'would', 'interest', 'meet', 'new', 'ga', 'desk', 'team', 'httpwwwamericangreetingscompickuppdi172082367m1891', 'thank', 'jess']","[('desk', 0.13043483), ('one', 0.08695652), ('would', 0.08695652), ('interest', 0.08695652), ('meet', 0.08695652), ('new', 0.08695652), ('ga', 0.08695652), ('team', 0.08695652), ('httpwwwamericangreetingscompickuppdi172082367m1891', 0.08695652), ('thank', 0.08695652)]",desk,0.1304348
344,344,342,"['onxgat', '04182001', '1056', 'AM', 'cdt', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'RE', 'present', 'trade', 'track', 'AA', 'Hi', 'philip', 'If', 'slide', 'preapr', 'assist', 'email', 'copi', 'mog', 'heu', 'confer', 'new', 'york', 'thank', 'karen', 'origin', 'messag', 'from', 'allen', 'phillip', 'sent', 'wednesday', 'april', '18', '2001', '1030', 'AM', 'To', 'buckley', 'karen', 'subject', 'Re', 'present', 'trade', 'track', 'AA', 'the', 'topic', 'western', 'natur', 'ga', 'market', 'I', 'may', 'overhead', 'slide', 'I', 'bring', 'handout']","[('I', 0.0252101), ('AA', 0.0252101), ('track', 0.0252101), ('trade', 0.0252101), ('slide', 0.025210097), ('present', 0.025210097), ('subject', 0.025210097), ('karen', 0.025210097), ('AM', 0.025210097), ('To', 0.025210097)]",I,0.025210
345,345,343,"['jacqu', 'the', 'asset', 'liabil', 'will', 'assum', 'list', 'asset', 'land', 'preliminari', 'architectur', 'designkipp', 'flore', 'architect', 'preliminari', 'engineeringcuatro', 'consult', 'ltd', 'soil', 'studykohutek', 'engin', 'test', 'inc', 'appraisalatrium', 'real', 'estat', 'servic', 'liabil', 'note', 'phillip', 'allen', 'outstand', 'invoic', 'kipp', 'flore', 'cuatro', 'kohutek', 'addit', 'consider', 'concess', 'forgiv', 'interest', 'due', 'reimburs', '3500', 'apprais', '2375', 'partial', 'payment', 'engin', 'let', 'know', 'need', 'detail', 'phillip']","[('asset', 0.028846169), ('liabil', 0.028846169), ('engin', 0.028846169), ('flore', 0.028846169), ('phillip', 0.028846169), ('preliminari', 0.028846169), ('consider', 0.019230766), ('kohutek', 0.019230766), ('concess', 0.019230766), ('interest', 0.019230766)]",asset,0.02884616
346,346,344,"['My', 'locat', 'eb3210c']","[('My', 0.33333334), ('locat', 0.33333334), ('eb3210c', 0.33333334)]",My,0.3333333
347,347,345,"['the', 'enron', 'center', 'garag', 'open', 'soon', 'employe', 'work', 'busi', 'unit', 'schedul', 'move', 'new', 'build', 'current', 'park', 'allen', 'center', 'met', 'garag', 'offer', 'park', 'space', 'new', 'enron', 'center', 'garag', 'thi', 'offer', 'receiv', 'initi', 'migrat', 'new', 'garag', 'space', 'fill', 'first', 'come', 'first', 'serv', 'basi', 'the', 'cost', 'new', 'garag', 'allen', 'center', 'garag', 'current', '16500', 'per', 'month', 'le', 'compani', 'subsidi', 'leav', 'monthli', 'employe', 'cost', '9400', 'If', 'choos', 'accept', 'offer', 'time', 'may', 'add', 'name', 'enron', 'center', 'garag', 'wait', 'list', 'later', 'day', 'offer', 'made', 'space', 'becom', 'avail', 'the', 'saturn', 'ring', 'connect', 'garag', 'build', 'open', 'summer', '2001', 'all', 'initi', 'parker', 'use', 'street', 'level', 'entranc', 'enron', 'center', 'north', 'saturn', 'ring', 'access', 'avail', 'garag', 'stairway', 'next', 'elev', 'lobbi', 'floor', 'may', 'use', 'exit', 'event', 'elev', 'troubl', 'If', 'interest', 'accept', 'offer', 'pleas', 'repli', 'via', 'email', 'park', 'transport', 'soon', 'reach', 'decis', 'follow', 'email', 'arrang', 'made', 'turn', 'old', 'park', 'card', 'receiv', 'park', 'transpond', 'along', 'new', 'inform', 'packet', 'new', 'garag', 'the', 'park', 'transport', 'desk', 'may', 'reach', 'via', 'email', 'park', 'transportationcorpenron', '7138537060', 'question', 'you', 'must', 'enter', 'exit', 'clay', 'St', 'first', 'two', 'week', 'also', 'pedestrian', 'use', 'garag', 'stairwel', 'locat', 'corner', 'bell', 'smith']","[('garag', 0.042253785), ('park', 0.028169157), ('center', 0.024648001), ('new', 0.024648001), ('offer', 0.021126844), ('the', 0.017605685), ('enron', 0.017605685), ('space', 0.014084533), ('may', 0.014084533), ('first', 0.014084533)]",garag,0.04225378
348,348,346,['httpswww4rswebcom61045'],"[('httpswww4rswebcom61045', 1.0)]",,
349,349,348,"['reagan', 'I', 'still', 'review', 'number', 'initi', 'thought', 'are', 'propos', 'cost', 'plu', 'contract', 'cap', 'what', 'role', 'would', 'play', 'obtain', 'financ', 'ani', 'experi', 'fha', '221d', 'loan', 'although', 'fee', 'lower', 'georg', 'larri', 'I', 'still', 'get', 'market', 'quot', 'lower', 'yet', 'I', 'receiv', 'estim', 'structur', 'follow', '5', 'onsit', 'expens', 'supervis', 'clean', 'equip', '2', 'overhead', '4', 'profit', 'I', 'want', 'give', 'initi', 'feedback', 'I', 'also', 'attach', 'extrem', 'primit', 'spreadsheet', 'outlin', 'project', 'As', 'see', 'even', 'reduc', 'builder', 'fee', 'number', 'project', 'would', 'gener', '219194', 'cash', 'flow', 'return', '21', 'I', 'thrill', 'low', 'return', 'I', 'think', 'I', 'need', 'find', 'way', 'get', 'total', 'cost', '10500000', 'would', 'boost', 'return', '31', 'ani', 'idea', 'I', 'realiz', 'offer', 'signific', 'develop', 'experi', 'plu', 'local', 'connect', 'I', 'discount', 'servic', 'I', 'offic', 'rest', 'week', 'I', 'call', 'earli', 'next', 'week', 'phillip']","[('I', 0.060465455), ('would', 0.018604692), ('return', 0.018604692), ('cost', 0.0139534995), ('fee', 0.0139534995), ('lower', 0.0139534995), ('plu', 0.0139534995), ('experi', 0.0139534995), ('week', 0.0139534995), ('initi', 0.0139534995)]",I,0.06046545
350,350,349,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
351,351,350,"['cari', 'here', 'pictur', 'hous', 'I', 'mind', 'I', 'go', 'simpl', 'farmhous', 'style', 'place', '5', 'acr', 'near', 'wimberley', 'A', 'point', 'might', 'obviou', 'plan', 'there', 'doubl', 'porch', 'across', 'back', 'like', 'front', 'No', 'dormer', 'metal', 'roof', '12', 'bath', 'stair', 'overal', 'dimens', '55', '40', 'what', 'I', 'look', 'littl', 'design', 'help', 'kitchen', 'more', 'cabinet', 'mayb', 'differ', 'shape', 'island', 'way', 'enlarg', 'pantri', 'reagan', 'suggest', 'I', 'find', 'way', 'make', 'exterior', 'attract', 'I', 'want', 'keep', 'simpl', 'roof', 'line', 'avoid', 'leak', 'I', 'think', 'bring', 'left', 'side', 'forward', 'front', 'hous', 'place', '1', 'gabl', 'front', 'that', 'might', 'look', 'good', 'exterior', 'stone', 'stucco', 'also', 'front', 'porch', 'would', 'smaller', 'I', '3', 'bid', 'builder', 'around', '325000', 'I', 'readi', 'go', 'ahead', 'plan', 'done', 'I', 'spec', 'finish', 'choos', 'builder', 'I', 'want', 'give', 'opportun', 'work', 'As', 'I', 'mention', 'altern', '060ft', 'I', 'thought', 'sinc', 'I', 'detail', 'sketch', 'might', 'consid', 'job', 'le', '6000', 'reagan', 'allow', 'phillip', 'allen', '7138537041', 'forward', 'phillip', 'K', 'allenhouect', '03292001', '0910', 'AM', 'hunter', 'S', 'shive', '03262001', '1001', 'AM', 'To', 'phillipkallenenroncom', 'cc', 'subject', 'see', 'attach', 'file', 'f828fa00pdf', 'see', 'attach', 'file', 'f828fa00pdf', 'f828fa00pdf']","[('I', 0.04827623), ('front', 0.017241446), ('f828fa00pdf', 0.013793141), ('might', 0.013793141), ('want', 0.010344837), ('builder', 0.010344837), ('plan', 0.010344837), ('AM', 0.010344837), ('reagan', 0.010344837), ('exterior', 0.010344837)]",I,0.0482762
352,352,351,"['transcript', 'session', 'follow', 'scsatkfacaprocknet', 'the', 'person', 'email', 'name', 'found', 'receiv', 'postmasterenroncom', '1921521409', 'mail1caprocknet', 'microsoft', 'smtpsvc55187719719', 'thu', '29', 'mar', '2001', '093649', '0600', 'receiv', 'mailmanenroncom', 'mailmanenroncom', '19216818966', 'postmasterenroncom', '888888postmaster100', 'esmtp', 'id', 'pab09150', 'scsatkfacaprocknet', 'thu', '29', 'mar', '2001', '154203', 'gmt', 'from', 'phillipkallenenroncom', 'receiv', 'nahoumsmsw03pxcorpenroncom', '172281039', 'mailmanenroncom', '81018101corp105', 'esmtp', 'id', 'f2tfg2l03725', 'scsatkfacaprocknet', 'thu', '29', 'mar', '2001', '094202', '0600', 'cst', 'receiv', 'enemta01enroncom', 'unverifi', 'nahoumsmsw03pxcorpenroncom', 'content', 'technolog', 'smtpr', '415', 'esmtp', 'id', 'tac1c0a2752962e2481nahoumsmsw03pxcorpenroncom', 'scsatkfacaprocknet', 'thu', '29', 'mar', '2001', '094204', '0600', 'To', 'scsatkfacaprocknet', 'date', 'thu', '29', 'mar', '2001', '094158', '0600', 'messageid', 'of1845f8dc31de1eafon86256a1e00535fa2enroncom', 'xmimetrack', 'serial', 'router', 'enemta01enronreleas', '506', 'decemb', '14', '2000', '03292001', '093828', 'AM', 'mimevers', '10', 'contenttyp', 'multipartmix', 'boundary086256a1e00535fa28f9e8a93df938690918c86256a1e00535fa2', 'contentdisposit', 'inlin', 'returnpath', 'phillipkallenenroncom', 'cari', 'here', 'pictur', 'hous', 'I', 'mind', 'I', 'go', 'simpl', 'farmhous', 'style', 'place', '5', 'acr', 'near', 'wimberley', 'A', 'point', 'might', 'obviou', 'plan', 'there', 'doubl', 'porch', 'across', 'back', 'like', 'front', 'No', 'dormer', 'metal', 'roof', '12', 'bath', 'stair', 'overal', 'dimens', '55', '40', 'what', 'I', 'look', 'littl', 'design', 'help', 'kitchen', 'more', 'cabinet', 'mayb', 'differ', 'shape', 'island', 'way', 'enlarg', 'pantri', 'reagan', 'suggest', 'I', 'find', 'way', 'make', 'exterior', 'attract', 'I', 'want', 'keep', 'simpl', 'roof', 'line', 'avoid', 'leak', 'I', 'think', 'bring', 'left', 'side', 'forward', 'front', 'hous', 'place', '1', 'gabl', 'front', 'that', 'might', 'look', 'good', 'exterior', 'stone', 'stucco', 'also', 'front', 'porch', 'would', 'smaller', 'I', '3', 'bid', 'builder', 'around', '325000', 'I', 'readi', 'go', 'ahead', 'plan', 'done', 'I', 'spec', 'finish', 'choos', 'builder', 'I', 'want', 'give', 'opportun', 'work', 'As', 'I', 'mention', 'altern', '060ft', 'I', 'thought', 'sinc', 'I', 'detail', 'sketch', 'might', 'consid', 'job', 'le', '6000', 'reagan', 'allow', 'phillip', 'allen', '7138537041', 'forward', 'phillip', 'K', 'allenhouect', '03292001', '0910', 'AM', 'hunter', 'S', 'shive', '03262001', '1001', 'AM', 'To', 'phillipkallenenroncom', 'cc', 'subject', 'see', 'attach', 'file', 'f828fa00pdf', 'f828fa00pdf']","[('I', 0.03076959), ('thu', 0.013186908), ('2001', 0.013186908), ('scsatkfacaprocknet', 0.013186908), ('mar', 0.013186908), ('29', 0.013186908), ('receiv', 0.0109890755), ('front', 0.0109890755), ('0600', 0.0109890755), ('esmtp', 0.008791245)]",I,0.0307695
353,353,352,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
354,354,353,"['chad', 'call', 'ted', 'bland', 'trade', 'track', 'program', 'all', 'desk', 'tri', 'use', 'program', 'train', 'analyst', 'trader', 'your', 'experi', 'help', 'process', 'make', 'risk', 'rotat', 'unnecessari', 'unless', 'die', 'anoth', 'rotat', 'risk', 'phillip']","[('rotat', 0.054545466), ('program', 0.054545466), ('risk', 0.054545466), ('help', 0.03636363), ('process', 0.03636363), ('make', 0.03636363), ('your', 0.03636363), ('anoth', 0.03636363), ('unless', 0.03636363), ('analyst', 0.03636363)]",rotat,0.05454546
355,355,354,['problem'],"[('problem', 1.0)]",,
356,356,355,"['reagan', 'thank', 'quick', 'respons', 'bid', 'resid', 'below', 'list', 'question', 'spec', '1', 'Is', 'frame', 'lumber', '2', 'yellow', 'pine', 'wouldnt', 'fir', 'spruce', 'warp', 'le', 'cost', '2', 'what', 'type', 'floor', 'joist', 'would', 'use', '2x12', 'sort', 'factori', 'joist', '3', 'what', 'type', 'roof', 'frame', 'On', 'site', 'built', 'rafter', 'engin', 'truss', '4', 'are', 'plan', 'insul', 'floor', 'dampen', 'sound', 'what', 'type', 'insul', 'floor', 'ceil', 'batt', 'blown', 'fiberglass', 'cellulos', '5', 'ani', 'ridg', 'vent', 'vent', 'power', 'turbin', '6', 'did', 'bid', 'interior', 'window', 'trim', '4', 'side', 'I', 'didnt', 'know', 'differ', 'apron', 'stool', '7', 'Do', 'anyth', 'special', 'upstair', 'tile', 'floor', 'prevent', 'crack', 'doubl', 'plywood', 'hardi', 'board', 'underlay', '8', 'On', 'stair', 'allow', 'bannist', 'I', 'think', 'partial', 'one', 'iron', 'onli', '5', 'foot', '9', 'I', 'label', 'plan', 'I', 'intend', '12', 'bath', 'stair', 'A', 'pedest', 'sink', 'would', 'probabl', 'work', '10', 'are', 'undermount', 'sink', 'differ', 'drop', 'in', 'I', 'think', 'undermount', 'stainless', 'kitchen', 'undermount', 'cast', 'iron', 'bath', '11', '1', '2', 'AC', 'unit', 'I', 'assum', '2', '12', 'prewir', 'sound', 'indoor', 'outdoor', '13', 'No', 'door', 'drawer', 'pull', 'cabinet', 'bath', 'cabinet', '14', 'exterior', 'porch', 'includ', 'bid', 'cedar', 'deck', 'upstair', 'iron', 'rail', '15', 'what', 'type', 'construct', 'contract', 'would', 'use', 'fix', 'price', 'except', 'chang', 'order', 'I', 'want', 'get', 'pain', 'detail', 'spec', 'I', 'make', 'decis', 'start', 'I', 'think', 'I', 'readi', 'get', 'plan', 'drawn', 'I', 'go', 'call', 'cari', 'kipp', 'see', 'set', 'design', 'meet', 'see', 'I', 'like', 'idea', 'phillip', 'I']","[('I', 0.037634775), ('2', 0.013440929), ('what', 0.013440929), ('type', 0.013440929), ('floor', 0.013440929), ('would', 0.010752725), ('bath', 0.010752725), ('think', 0.010752725), ('plan', 0.0107527245), ('bid', 0.0107527245)]",I,0.03763477
357,357,356,"['larri', 'jacqu', 'sent', 'document', 'claudia', 'review', 'just', 'drop', 'line', 'confirm', 'seen', 'phillip']","[('drop', 0.08333334), ('review', 0.08333334), ('seen', 0.08333334), ('confirm', 0.08333334), ('line', 0.08333334), ('larri', 0.08333334), ('just', 0.08333334), ('sent', 0.08333334), ('document', 0.08333334), ('jacqu', 0.08333334)]",drop,0.0833333
358,358,357,"['jacqu', 'would', 'ok', 'I', 'sign', 'new', 'consult', 'agreement', 'engin', 'architect', 'they', 'sent', 'agreement', 'the', 'payment', 'georg', 'larri', 'made', '2350', 'architect', 'I', 'written', 'person', 'check', 'amount', '25000', 'architect', '13950', 'engin', 'I', 'wonder', 'prior', 'work', 'even', 'need', 'list', 'asset', 'partnership', 'I', 'would', 'like', 'agreement', 'consult', 'partnership', 'should', 'I', 'wait', 'partnership', 'convey', 'sign', 'name', 'partnership', 'let', 'know', 'think', 'phillip']","[('I', 0.06185577), ('partnership', 0.05154646), ('agreement', 0.04123715), ('architect', 0.04123715), ('engin', 0.030927846), ('consult', 0.030927846), ('sign', 0.030927846), ('would', 0.030927846), ('asset', 0.020618549), ('even', 0.020618549)]",I,0.0618557
359,359,358,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
360,360,359,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
361,361,360,"['greg', 'here', 'comment', 'question', 'cost', 'estim', 'cost', 'per', 'squar', 'foot', 'seem', 'low', 'construct', '3330sf', 'gross36sf', 'rentabl', 'what', 'cost', 'onsit', 'gener', 'requir', '299818', 'repres', 'will', 'review', 'builder', 'profit', 'fee', 'you', 'mention', '2', 'overhead', '3', '5', 'profit', 'whi', 'profit', '4', 'whi', 'architect', 'fee', '200k', 'I', 'thought', 'would', '80k', 'what', '617k', 'profit', 'allow', 'Is', 'develop', 'profit', 'boost', 'loan', 'amount', 'real', 'cost', 'total', 'close', 'applic', 'cost', '350k', 'that', 'seem', 'high', 'who', 'receiv', '2', 'point', 'how', 'much', 'sunk', 'cost', 'fha', 'declin', 'u', 'where', '1', 'are', 'receiv', 'one', 'point', 'loan', 'what', 'statu', 'oper', 'pro', 'forma', 'My', 'back', 'envelop', 'put', 'noi', '877k', 'assum', '6251br', '13003br', '9502br', '5', 'vacanc', '40', 'expens', 'after', 'debt', 'servic', 'would', 'leav', '122k', 'the', 'coverag', 'would', '116', 'talk', 'afternoon', 'phillip']","[('cost', 0.033175495), ('profit', 0.028436122), ('would', 0.018957388), ('what', 0.018957388), ('fee', 0.014218022), ('whi', 0.014218022), ('seem', 0.014218022), ('loan', 0.014218022), ('2', 0.014218022), ('5', 0.014218022)]",cost,0.03317549
362,362,361,"['Hi', 'phillip', 'it', 'time', 'month', 'could', 'kind', 'thank', 'dexter', 'dexter', 'stei', 'execut', 'publish', 'intellig', 'press', 'inc', '22648', 'glenn', 'drive', 'suit', '305', 'sterl', 'VA', '20164', 'tel', '703', '3188848', 'fax', '703', '3180597', 'httpintelligencepresscom', 'httpwwwgasmartcom', 'At', '0957', 'AM', '12601', '0600', 'wrote', 'dexter', 'you', 'receiv', 'guest', 'id', 'shortli', 'phillip']","[('dexter', 0.046511676), ('phillip', 0.03488374), ('703', 0.03488374), ('At', 0.023255812), ('tel', 0.023255812), ('3188848', 0.023255812), ('fax', 0.023255812), ('3180597', 0.023255812), ('httpintelligencepresscom', 0.023255812), ('httpwwwgasmartcom', 0.023255812)]",dexter,0.04651167
363,363,362,"['john', 'mike', 'fine', 'sign', 'new', 'contract', 'subject', 'read', 'term', 'cours', 'He', 'prefer', 'set', 'strike', '3', 'month', 'period', 'hi', 'exist', 'contract', 'pay', 'retent', 'payment', '55000', 'next', 'week', 'He', 'still', 'want', 'receiv', 'payment', 'phillip']","[('payment', 0.049180336), ('contract', 0.049180336), ('He', 0.049180336), ('next', 0.03278688), ('exist', 0.03278688), ('pay', 0.03278688), ('retent', 0.03278688), ('period', 0.03278688), ('55000', 0.03278688), ('receiv', 0.03278688)]",payment,0.04918033
364,364,363,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
365,365,364,"['how', 'I', 'send', 'money', 'silent', 'second', 'regular', 'mail', 'overnight', 'wire', 'transfer', 'I', 'dont', 'see', 'bank', 'make', 'fund', 'avail', 'friday', 'unless', 'I', 'wire', 'money', 'If', 'I', 'need', 'pleas', 'send', 'wire', 'instruct']","[('I', 0.0943397), ('wire', 0.07547175), ('send', 0.056603793), ('money', 0.056603793), ('friday', 0.03773585), ('If', 0.03773585), ('avail', 0.03773585), ('make', 0.03773585), ('pleas', 0.03773585), ('need', 0.03773585)]",I,0.094339
366,366,365,"['greg', 'someth', 'I', 'forgot', 'ask', 'Do', 'know', 'hugo', 'plan', 'replatt', 'use', 'administr', 'process', 'I', 'understand', 'quicker', 'full', 'replat', 'process', '3', 'week', 'also', 'let', 'know', 'park', 'the', 'builder', 'san', 'marco', 'believ', 'plan', '321', 'park', 'spot', 'would', 'requir', '382', 'code', 'the', 'townhom', 'across', 'street', 'seriou', 'park', 'problem', 'they', 'probabl', 'plan', 'student', 'park', 'garag', 'instead', 'use', 'extra', 'room', 'phillip']","[('park', 0.049019683), ('plan', 0.03921573), ('know', 0.029411776), ('I', 0.029411776), ('the', 0.029411776), ('process', 0.029411776), ('use', 0.029411776), ('townhom', 0.019607838), ('street', 0.019607838), ('code', 0.019607838)]",park,0.04901968
367,367,366,"['keith', 'holst', 'sent', 'email', 'detail']","[('keith', 0.2), ('holst', 0.2), ('sent', 0.2), ('email', 0.2), ('detail', 0.2)]",keith,0.
368,368,367,"['jacqu', 'the', 'agreement', 'look', 'fine', 'My', 'comment', 'georg', 'larri', 'might', 'object', 'languag', 'bank', 'request', 'financ', 'construct', 'project', 'declin', 'make', 'loan', 'base', 'high', 'cost', 'construct', 'project', 'technic', 'bank', 'lower', 'loan', 'amount', 'base', 'lower', 'estim', 'rent', 'alter', 'amount', 'equiti', 'would', 'requir', 'did', 'I', 'loan', '1300000', 'I', 'thought', 'le', 'regard', 'exhibit', 'A', 'asset', 'includ', 'land', 'architectur', 'plan', 'engin', 'complet', 'apprais', 'soil', 'studi', 'most', 'item', 'state', 'partial', 'complet', 'consult', 'I', 'speak', 'directli', 'architect', 'engin', 'soil', 'engin', 'I', 'unclear', 'best', 'way', 'proceed', 'consult', 'the', 'oblig', 'includ', 'fee', 'owe', 'consult', 'Do', 'need', 'list', 'balanc', 'due', 'list', 'work', 'complet', 'asset', 'give', 'consider', '5875', 'cash', 'paid', 'engin', 'appraisor', 'phillip']","[('engin', 0.027933033), ('I', 0.027933033), ('loan', 0.022346409), ('consult', 0.022346409), ('complet', 0.022346409), ('construct', 0.016759789), ('bank', 0.016759789), ('project', 0.016759789), ('lower', 0.016759789), ('the', 0.016759789)]",engin,0.02793303
369,369,368,"['onal', 'address', 'book', 'call', 'question', 'erika', 'group', 'east', 'desk', 'basic', 'group', 'name', 'east', 'desk', 'group', 'type', 'multipurpos', 'descript', 'member', 'matthew', 'B', 'fleminghoue', 'jame', 'R', 'barkerhoue', 'barend', 'vanderhorsthoue', 'jay', 'blainehoue', 'paul', 'tatehoue', 'alain', 'dizahoue', 'rhonda', 'smithhoue', 'christina', 'banglehoue', 'sherri', 'pendegrafthoue', 'mard', 'L', 'driscollhoue', 'daniel', 'salinashoue', 'sharon', 'hausingerhoue', 'joshua', 'brayhoue', 'jame', 'wiltfonghoue', 'owner', 'erika', 'duprehoue', 'administr', 'erika', 'duprehoue', 'foreign', 'directori', 'sync', 'allow', 'ye', 'group', 'west', 'desk', 'basic', 'group', 'name', 'west', 'desk', 'group', 'type', 'multipurpos', 'descript', 'member', 'jesu', 'guerrahoue', 'monica', 'robertshoue', 'laura', 'R', 'arnoldhoue', 'amanda', 'boettcherhoue', 'C', 'kyle', 'griffinhoue', 'jess', 'hewitthoue', 'artemio', 'munizhoue', 'eugen', 'zeitzhoue', 'brandon', 'whittakerhoue', 'roland', 'aguilarhoue', 'rubi', 'robinsonhoue', 'roger', 'reynoldshoue', 'david', 'coolidgehoue', 'joseph', 'de', 'champshoue', 'kristann', 'shiremanhoue', 'owner', 'erika', 'duprehoue', 'administr', 'erika', 'duprehoue', 'foreign', 'directori', 'sync', 'allow', 'ye']","[('group', 0.03431386), ('erika', 0.02941187), ('duprehoue', 0.024509877), ('desk', 0.024509877), ('allow', 0.014705895), ('directori', 0.014705895), ('ye', 0.014705895), ('east', 0.014705895), ('owner', 0.0147058945), ('jame', 0.0147058945)]",group,0.0343138
370,370,369,"['steve', 'tri', 'bmckayenroncom', 'bradmckayenroncom']","[('steve', 0.25), ('tri', 0.25), ('bmckayenroncom', 0.25), ('bradmckayenroncom', 0.25)]",steve,0.2
371,371,370,"['larri', 'jacqu', 'work', 'claudia', 'I', 'check', 'progress', 'morn', 'let', 'know', 'phillip']","[('larri', 0.090909086), ('jacqu', 0.090909086), ('work', 0.090909086), ('claudia', 0.090909086), ('I', 0.090909086), ('check', 0.090909086), ('progress', 0.090909086), ('morn', 0.090909086), ('let', 0.090909086), ('know', 0.090909086)]",larri,0.09090908
372,372,371,"['greg', 'note', 'let', 'know', 'I', 'offic', 'wed321', 'thurs323', 'the', 'kid', 'spring', 'break', 'I', 'san', 'marco', 'reach', 'cell', 'phone', '7134104679', 'email', 'pallen70hotmailcom', 'I', 'plan', 'stop', 'see', 'hugo', 'elizondo', 'thursday', 'drop', 'check', 'give', 'green', 'light', 'file', 'replat', 'what', 'chang', 'want', 'tri', 'complet', 'project', 'phase', 'doe', 'need', 'chang', 'go', 'submit', 'citi', 'I', 'spoke', 'gordon', 'kohutek', 'morn', 'He', 'contract', 'complet', 'soil', 'studi', 'He', 'say', 'done', 'report', 'end', 'week', 'I', 'dont', 'know', 'need', 'report', 'I', 'told', 'gordon', 'might', 'call', 'inquir', 'work', 'perform', 'hi', 'number', '5129305832', 'We', 'spoke', 'phone', 'issu', 'talk', 'later', 'phillip']","[('I', 0.04375015), ('spoke', 0.018750016), ('chang', 0.018750016), ('report', 0.018750016), ('He', 0.018750016), ('gordon', 0.018750016), ('phone', 0.018750016), ('complet', 0.018750016), ('know', 0.018750016), ('need', 0.018750016)]",I,0.0437501
373,373,372,"['phillip', 'titl', 'compani', 'held', '15000', 'escrow', 'return', 'It', 'longer', 'issu', 'larri', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'monday', 'march', '19', '2001', '845', 'AM', 'To', 'llewteraustinrrcom', 'subject', 'Re', 'buyout', 'larrri', 'I', 'realiz', 'disappoint', 'project', 'It', 'desir', 'left', 'pocket', 'expens', 'the', 'item', 'list', 'I', 'need', 'clarif', '15000', 'worth', 'extens', 'you', 'mention', 'appli', 'cost', 'land', 'actual', 'repres', 'cash', 'invest', 'land', 'I', 'agre', 'refund', 'cash', 'invest', 'My', 'request', 'help', 'locat', 'amount', 'close', 'statement', 'document', 'phillip']","[('I', 0.029850796), ('land', 0.02238808), ('15000', 0.02238808), ('phillip', 0.02238808), ('cash', 0.02238808), ('invest', 0.02238808), ('It', 0.022388078), ('worth', 0.014925372), ('you', 0.014925372), ('extens', 0.014925372)]",I,0.02985079
374,374,373,"['thi', 'request', 'pend', 'approv', '9', 'day', 'pleas', 'click', 'httpitcappscorpenroncomsrrsauthemaillinkaspid000000000021442pag', 'approv', 'review', 'act', 'upon', 'request', 'request', 'ID', '000000000021442', 'request', 'creat', 'date', '3201', '82700', 'AM', 'request', 'for', 'mikegrigsbyenroncom', 'resourc', 'name', 'market', 'data', 'bloomberg', 'resourc', 'type', 'applic']","[('request', 0.09677432), ('resourc', 0.048387114), ('approv', 0.048387114), ('82700', 0.032258064), ('AM', 0.032258064), ('for', 0.032258064), ('mikegrigsbyenroncom', 0.032258064), ('3201', 0.032258064), ('type', 0.032258064), ('data', 0.032258064)]",request,0.0967743
375,375,374,"['jacqu', 'still', 'tri', 'close', 'loop', '15000', 'extens', 'assum', 'work', 'today', 'tomorrow', 'I', 'would', 'like', 'get', 'whatev', 'document', 'need', 'complet', 'convey', 'partnership', 'done', 'I', 'need', 'work', 'engin', 'architect', 'get', 'thing', 'move', 'I', 'plan', 'write', 'person', 'check', 'engin', 'I', 'set', 'new', 'account', 'let', 'know', 'reason', 'I', 'thank', 'help', 'far', 'between', 'connect', 'expertis', 'structur', 'loan', 'save', 'u', 'get', 'bad', 'deal', 'phillip']","[('I', 0.056074873), ('get', 0.037383225), ('work', 0.0280374), ('engin', 0.0280374), ('need', 0.0280374), ('thank', 0.018691586), ('reason', 0.018691586), ('let', 0.018691586), ('set', 0.018691586), ('account', 0.018691586)]",I,0.05607487
376,376,375,"['the', 'topic', 'western', 'natur', 'ga', 'market', 'I', 'may', 'overhead', 'slide', 'I', 'bring', 'handout']","[('I', 0.12000002), ('market', 0.080000006), ('bring', 0.080000006), ('slide', 0.080000006), ('overhead', 0.080000006), ('may', 0.080000006), ('the', 0.080000006), ('western', 0.080000006), ('natur', 0.080000006), ('topic', 0.080000006)]",I,0.1200000
377,377,376,"['larrri', 'I', 'realiz', 'disappoint', 'project', 'It', 'desir', 'left', 'pocket', 'expens', 'the', 'item', 'list', 'I', 'need', 'clarif', '15000', 'worth', 'extens', 'you', 'mention', 'appli', 'cost', 'land', 'actual', 'repres', 'cash', 'invest', 'land', 'I', 'agre', 'refund', 'cash', 'invest', 'My', 'request', 'help', 'locat', 'amount', 'close', 'statement', 'document', 'phillip']","[('I', 0.04938277), ('land', 0.03703706), ('cash', 0.03703706), ('invest', 0.03703706), ('refund', 0.024691358), ('cost', 0.024691358), ('actual', 0.024691358), ('repres', 0.024691358), ('agre', 0.024691358), ('appli', 0.024691358)]",I,0.0493827
378,378,377,"['jacqu', 'I', 'think', 'reach', 'agreement', 'georg', 'larri', 'pick', 'item', 'valu', 'pay', 'fee', 'time', 'It', 'look', 'abl', 'use', 'everyth', 'done', 'engin', 'architectur', 'survey', 'apprais', 'one', 'point', 'unclear', 'claim', '15000', 'extens', 'paid', 'appli', 'purchas', 'price', 'land', 'like', 'earnest', 'money', 'would', 'appli', 'I', 'look', 'close', 'statement', 'I', 'didnt', 'see', '15000', 'appli', 'purchas', 'price', 'can', 'help', 'clear', 'assum', 'clear', '15000', 'need', 'get', 'properti', 'releas', 'keith', 'I', 'concern', 'take', 'bishop', 'corner', 'partnership', 'risk', 'could', 'undisclos', 'liabil', 'On', 'hand', 'convey', 'partnership', 'would', 'time', 'money', 'saver', 'clean', 'what', 'inclin', 'call', 'soon', 'chanc', 'review', 'phillip']","[('I', 0.031446617), ('15000', 0.025157277), ('appli', 0.025157277), ('price', 0.01886794), ('time', 0.01886794), ('partnership', 0.01886794), ('look', 0.01886794), ('purchas', 0.01886794), ('would', 0.01886794), ('clear', 0.01886794)]",I,0.03144661
379,379,379,"['luci', 'here', 'rentrol', 'My', 'question', '18', '25', '37', 'miss', 'rent', 'ani', 'special', 'reason', 'It', 'look', 'like', 'five', 'vacanc', '21220a3540', 'If', 'want', 'run', 'ad', 'paper', '50', 'discount', 'fine', 'I', 'write', 'letter', 'recommend', 'when', 'need', 'you', 'use', 'refer', 'In', 'next', 'two', 'week', 'realli', 'good', 'idea', 'whether', 'sale', 'go', 'phillip']","[('recommend', 0.021276597), ('letter', 0.021276597), ('you', 0.021276597), ('need', 0.021276597), ('when', 0.021276597), ('refer', 0.021276597), ('fine', 0.021276597), ('I', 0.021276597), ('In', 0.021276597), ('write', 0.021276597)]",recommend,0.02127659
380,380,380,"['I', 'also', 'need', 'know', 'base', 'salari', 'jay', 'reitmey', 'moniqu', 'sanchez', 'they', 'job', 'matt']","[('reitmey', 0.07692308), ('jay', 0.07692308), ('job', 0.07692308), ('they', 0.07692308), ('sanchez', 0.07692308), ('moniqu', 0.07692308), ('I', 0.07692308), ('need', 0.07692308), ('base', 0.07692308), ('also', 0.07692308)]",reitmey,0.0769230
381,381,381,"['fyi', 'western', 'price', 'survey', 'contact', 'caliso', 'declar', 'stage', 'two', 'alert', 'morn', 'trigger', 'part', 'decis', 'bonnevil', 'power', 'administr', 'ceas', 'hourtohour', 'sale', 'california', '600', 'MW', '1000', 'MW', 'make', 'past', 'week', 'accord', 'bpa', 'excess', 'energi', 'sell', 'result', 'run', 'water', 'meet', 'biolog', 'opinion', 'flow', 'standard', 'stop', 'order', 'allow', 'reservoir', 'fill', 'runoff', 'the', 'agenc', 'said', 'tell', 'california', 'depart', 'water', 'resourc', 'sale', 'could', 'ceas', 'time', 'morn', 'end', 'caliso', 'report', '1600', 'MW', 'le', 'import', 'today', 'yesterday', 'appear', 'seller', 'also', 'cut', 'back', 'yesterday', 'powerex', 'said', 'sell', 'california', 'concern', 'water', 'reserv', 'bpa', 'said', 'still', 'send', 'exchang', 'energi', 'california', 'howev', 'more', 'detail', 'avail', 'includ', 'friday', 'edit', 'western', 'price', 'survey', 'california', 'energi', 'market', 'newslett']","[('california', 0.032608803), ('said', 0.021739172), ('water', 0.021739172), ('energi', 0.021739172), ('MW', 0.021739172), ('western', 0.016304359), ('bpa', 0.016304359), ('sale', 0.016304359), ('sell', 0.016304359), ('ceas', 0.016304359)]",california,0.03260880
382,382,382,"['thank', 'inform', 'It', 'would', 'help', 'would', 'send', 'detail', 'worksheet', 'mention', 'I', 'surpris', 'hear', 'restrict', 'share', 'left', 'one', 'grant', 'januari', 'I', 'alway', 'elect', 'defer', 'distribut', 'restrict', 'stock', 'I', 'believ', 'I', 'select', 'minimum', 'amount', 'requir', 'kept', 'enron', 'stock', '50', 'are', 'say', 'previou', 'grant', 'fulli', 'vest', 'distribut', 'deferr', 'account', 'thank', 'look', 'issu', 'phillip']","[('I', 0.05494513), ('grant', 0.032967042), ('restrict', 0.032967042), ('distribut', 0.032967042), ('would', 0.032967042), ('thank', 0.032967042), ('stock', 0.032967042), ('enron', 0.021978017), ('50', 0.021978017), ('amount', 0.021978017)]",I,0.0549451
383,383,383,"['see', 'attach', 'file', 'outlinedoc', 'see', 'attach', 'file', 'mapttraxl', 'sampl', 'checklist', 'item', 'need', 'close', 'We', 'receiv', 'item', 'date', 'see', 'attach', 'file', 'checklistdoc', 'outlinedoc', 'mapttraxl', 'checklistdoc']","[('attach', 0.105263196), ('see', 0.105263196), ('file', 0.105263196), ('item', 0.07894738), ('checklistdoc', 0.07894738), ('outlinedoc', 0.07894738), ('mapttraxl', 0.07894738), ('receiv', 0.05263157), ('close', 0.05263157), ('date', 0.05263157)]",attach,0.10526319
384,384,384,"['luci', 'somehow', 'email', 'account', 'lost', 'rentrol', 'sent', 'tuesday', 'pleas', 'resend', 'I', 'roll', 'week', 'morn', 'phillip']","[('pleas', 0.06666667), ('tuesday', 0.06666667), ('morn', 0.06666667), ('week', 0.06666667), ('roll', 0.06666667), ('I', 0.06666667), ('resend', 0.06666667), ('luci', 0.06666667), ('lost', 0.06666667), ('account', 0.06666667)]",pleas,0.0666666
385,385,385,"['from', 'keith', 'holst', '03142001', '0430', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject']","[('phillip', 0.08333334), ('PM', 0.08333334), ('cc', 0.08333334), ('allenhouectect', 0.08333334), ('K', 0.08333334), ('from', 0.08333334), ('To', 0.08333334), ('holst', 0.08333334), ('03142001', 0.08333334), ('keith', 0.08333334)]",phillip,0.0833333
386,386,386,"['jeff', 'I', 'offic', 'today', 'ani', 'isssu', 'deal', 'stagecoach', 'phillip']","[('jeff', 0.11111111), ('I', 0.11111111), ('offic', 0.11111111), ('today', 0.11111111), ('ani', 0.11111111), ('isssu', 0.11111111), ('deal', 0.11111111), ('stagecoach', 0.11111111), ('phillip', 0.11111111)]",jeff,0.1111111
387,387,387,"['imageimag', '8511', 'horsesho', 'ledg', 'austin', 'TX', '787302840', 'telephon', '512', '3381119', 'fax5123381103', 'email', 'cbpresaustinrrcom', 'march', '13', '2001', 'phillip', 'allen', 'keith', 'holst', 'enron', '1400', 'smith', 'street', 'houston', 'TX', '770027361', 'subject', 'bishop', 'corner', 'ltd', 'restructur', 'buyout', 'dear', 'phillip', 'keith', 'We', 'prepar', 'sell', 'bishop', 'corner', 'ltd', 'reimburs', 'cash', 'expenditur', 'compens', 'manag', 'servic', 'assumpt', 'note', 'oblig', 'design', 'contract', 'As', 'shown', 'attach', 'summari', 'tabl', 'cash', 'expenditur', 'total', '21196', 'exist', 'contract', 'architect', 'civil', 'engin', 'soil', 'test', 'compani', 'apprais', 'total', '67050', 'the', 'due', 'contract', '61175', 'current', 'unpaid', 'invoic', 'due', 'total', '37325', 'act', 'good', 'faith', 'invest', 'enorm', 'amount', 'time', 'project', 'five', 'month', 'complet', 'major', 'design', 'preconstruct', 'element', 'As', 'major', 'project', 'firm', 'size', 'given', 'top', 'prioriti', 'project', 'delay', 'reject', 'left', 'project', 'pursu', 'two', 'method', 'valu', 'develop', 'manag', '1', 'base', 'percentag', 'minimum', '14mm', 'fee', 'earn', '2', 'base', 'prior', 'valuat', 'time', 'for', 'first', 'feel', 'least', '25', '350000', 'minimum', '14mm', 'fee', 'earn', 'date', 'for', 'second', 'prior', 'correspond', 'valu', 'time', '500000', 'per', 'year', 'would', 'mean', 'period', 'worth', '208333', 'either', 'valuat', 'seem', 'quit', 'fair', 'reason', 'especi', 'neither', 'includ', 'forfeit', '40', 'interest', 'project', 'worth', '0812mm', 'howev', 'hope', 'maintain', 'good', 'relationship', 'prospect', 'futur', 'project', 'will', 'accept', 'small', 'monthli', 'fee', '15000', 'per', 'month', 'cover', 'portion', 'direct', 'time', 'overhead', 'As', 'shown', 'attach', 'tabl', 'fee', 'plu', 'cash', 'outlay', 'le', 'accru', 'interest', 'bring', 'total', 'net', 'buyout', '78946', 'We', 'still', 'believ', 'project', 'need', 'profession', 'servic', 'offer', 'provid', 'howev', 'accept', 'term', 'buyout', 'offer', 'truli', 'feel', 'quit', 'fair', 'reason', 'prepar', 'bought', 'leav', 'extraordinari', 'project', 'If', 'choic', 'either', 'contact', 'u', 'attorney', 'contact', 'attorney', 'claudia', 'crocker', 'later', 'friday', 'week', 'the', 'attorney', 'draft', 'whatev', 'minim', 'document', 'necessari', 'transfer', 'bishop', 'corner', 'ltd', 'partnership', 'follow', 'receipt', 'buyout', 'amount', 'assumpt', 'outstand', 'profession', 'design', 'contract', 'thank', 'sincer', 'imag', 'georg', 'W', 'richard', 'presid', 'PS', 'copi', 'contract', 'forward', 'upon', 'accept', 'buyout', 'cc', 'larri', 'lewter', 'claudia', 'crocker', 'image001wmz', 'image002gif', 'image003png', 'image004gif', 'headerhtm', 'oledatamso', 'restructur', 'buyoutxl']","[('project', 0.017964274), ('contract', 0.01197615), ('buyout', 0.01197615), ('time', 0.009980109), ('fee', 0.009980109), ('total', 0.009980108), ('bishop', 0.007984069), ('design', 0.007984069), ('attorney', 0.007984069), ('ltd', 0.007984069)]",project,0.01796427
388,388,388,"['1400', 'concess']","[('1400', 0.5), ('concess', 0.5)]",1400,0.
389,389,389,"['gentlemen', 'today', 'I', 'final', 'receiv', 'inform', 'statu', 'work', 'done', 'date', 'I', 'spoke', 'hugo', 'alexandro', 'cuatro', 'consult', 'the', 'properti', 'still', 'two', 'parcel', 'hugo', 'complet', 'platt', 'combin', 'one', 'lot', 'readi', 'submit', 'citi', 'san', 'marco', 'He', 'also', 'complet', 'topograph', 'survey', 'tree', 'survey', 'In', 'addit', 'begun', 'coordin', 'citi', 'replat', 'coupl', 'easement', 'smaller', 'parcel', 'well', 'begin', 'work', 'grade', 'hugo', 'go', 'fax', 'written', 'letter', 'scope', 'work', 'engag', 'complet', 'the', 'total', 'cost', 'servic', 'estim', '38000', '14000', 'due', 'work', 'complet', 'We', 'tri', 'resolv', 'issu', 'outstand', 'work', 'bill', 'incur', 'origin', 'develop', 'obtain', 'titl', 'land', 'If', 'continu', 'use', 'cuatro', 'would', 'one', 'le', 'point', 'content', 'hugo', 'number', '5122958052', 'I', 'thought', 'might', 'want', 'contact', 'directli', 'ask', 'question', 'I', 'spoke', 'possibl', 'call', 'fine', 'now', 'go', 'tri', 'determin', 'work', 'perform', 'kipp', 'flore', 'use', 'keith', 'I', 'appreci', 'meet', 'u', 'sunday', 'We', 'left', 'optimist', 'prospect', 'work', 'project', 'call', 'feedback', 'speak', 'hugo', 'idea', 'move', 'project', 'forward', 'phillip']","[('work', 0.032000165), ('hugo', 0.0240001), ('I', 0.0240001), ('complet', 0.020000067), ('cuatro', 0.01200001), ('use', 0.01200001), ('parcel', 0.01200001), ('citi', 0.01200001), ('tri', 0.01200001), ('the', 0.01200001)]",work,0.03200016
390,390,390,"['here', 'buyout', 'spreadsheet', 'slight', 'tweak', 'format', 'the', 'summari', 'present', 'number', '1400', 'concess']","[('summari', 0.08333334), ('format', 0.08333334), ('1400', 0.08333334), ('number', 0.08333334), ('present', 0.08333334), ('here', 0.08333334), ('the', 0.08333334), ('spreadsheet', 0.08333334), ('slight', 0.08333334), ('buyout', 0.08333334)]",summari,0.0833333
391,391,391,"['imageimag', '8511', 'horsesho', 'ledg', 'austin', 'TX', '787302840', 'telephon', '512', '3381119', 'fax5123381103', 'email', 'cbpresaustinrrcom', 'march', '13', '2001', 'phillip', 'allen', 'keith', 'holst', 'enron', '1400', 'smith', 'street', 'houston', 'TX', '770027361', 'subject', 'bishop', 'corner', 'ltd', 'restructur', 'buyout', 'dear', 'phillip', 'keith', 'We', 'prepar', 'sell', 'bishop', 'corner', 'ltd', 'reimburs', 'cash', 'expenditur', 'compens', 'manag', 'servic', 'assumpt', 'note', 'oblig', 'design', 'contract', 'As', 'shown', 'attach', 'summari', 'tabl', 'cash', 'expenditur', 'total', '21196', 'exist', 'contract', 'architect', 'civil', 'engin', 'soil', 'test', 'compani', 'apprais', 'total', '67050', 'the', 'due', 'contract', '61175', 'current', 'unpaid', 'invoic', 'due', 'total', '37325', 'act', 'good', 'faith', 'invest', 'enorm', 'amount', 'time', 'project', 'five', 'month', 'complet', 'major', 'design', 'preconstruct', 'element', 'As', 'major', 'project', 'firm', 'size', 'given', 'top', 'prioriti', 'project', 'delay', 'reject', 'left', 'project', 'pursu', 'two', 'method', 'valu', 'develop', 'manag', '1', 'base', 'percentag', 'minimum', '14mm', 'fee', 'earn', '2', 'base', 'prior', 'valuat', 'time', 'for', 'first', 'feel', 'least', '25', '350000', 'minimum', '14mm', 'fee', 'earn', 'date', 'for', 'second', 'prior', 'correspond', 'valu', 'time', '500000', 'per', 'year', 'would', 'mean', 'period', 'worth', '208333', 'either', 'valuat', 'seem', 'quit', 'fair', 'reason', 'especi', 'neither', 'includ', 'forfeit', '40', 'interest', 'project', 'worth', '0812mm', 'howev', 'hope', 'maintain', 'good', 'relationship', 'prospect', 'futur', 'project', 'will', 'accept', 'small', 'monthli', 'fee', '15000', 'per', 'month', 'cover', 'portion', 'direct', 'time', 'overhead', 'As', 'shown', 'attach', 'tabl', 'fee', 'plu', 'cash', 'outlay', 'le', 'accru', 'interest', 'bring', 'total', 'net', 'buyout', '78946', 'We', 'still', 'believ', 'project', 'need', 'profession', 'servic', 'offer', 'provid', 'howev', 'accept', 'term', 'buyout', 'offer', 'truli', 'feel', 'quit', 'fair', 'reason', 'prepar', 'bought', 'leav', 'extraordinari', 'project', 'If', 'choic', 'either', 'contact', 'u', 'attorney', 'contact', 'attorney', 'claudia', 'crocker', 'later', 'friday', 'week', 'the', 'attorney', 'draft', 'whatev', 'minim', 'document', 'necessari', 'transfer', 'bishop', 'corner', 'ltd', 'partnership', 'follow', 'receipt', 'buyout', 'amount', 'assumpt', 'outstand', 'profession', 'design', 'contract', 'thank', 'sincer', 'imag', 'georg', 'W', 'richard', 'presid', 'PS', 'copi', 'contract', 'forward', 'upon', 'accept', 'buyout', 'cc', 'larri', 'lewter', 'claudia', 'crocker', 'image001wmz', 'image002gif', 'image003png', 'image004gif', 'headerhtm', 'oledatamso', 'restructur', 'buyoutxl']","[('project', 0.017964274), ('buyout', 0.01197615), ('contract', 0.01197615), ('fee', 0.009980109), ('time', 0.009980109), ('total', 0.009980109), ('bishop', 0.007984069), ('attorney', 0.007984069), ('corner', 0.007984069), ('cash', 0.007984069)]",project,0.01796427
392,392,392,"['notic', 'regard', 'entri', 'order', 'instruct', 'pleas', 'transmit', 'order', 'andor', 'instruct', 'regard', 'painewebb', 'account', 'email', 'order', 'andor', 'instruct', 'transmit', 'email', 'accept', 'painewebb', 'painewebb', 'respons', 'carri', 'order', 'andor', 'instruct', 'notic', 'regard', 'privaci', 'confidenti', 'painewebb', 'reserv', 'right', 'monitor', 'review', 'content', 'email', 'commun', 'sent', 'andor', 'receiv', 'employe', '1494', 'how', 'To', 'filepdf']","[('painewebb', 0.065789536), ('andor', 0.065789536), ('order', 0.065789536), ('instruct', 0.065789536), ('regard', 0.052631617), ('email', 0.052631617), ('notic', 0.039473694), ('transmit', 0.039473694), ('sent', 0.02631578), ('commun', 0.02631578)]",painewebb,0.06578953
393,393,393,"['georg', 'I', 'didnt', 'receiv', 'inform', 'work', 'complet', 'start', 'pleas', 'send', 'morn', 'We', 'havent', 'discuss', 'proceed', 'land', 'the', 'easiest', 'treatment', 'would', 'deed', 'u', 'howev', 'might', 'advantag', 'convey', 'partnership', 'also', 'I', 'would', 'like', 'speak', 'hugo', 'today', 'I', 'didnt', 'find', 'quattro', 'engin', 'buda', 'can', 'put', 'contact', 'talk', 'later', 'phillip']","[('I', 0.04545459), ('didnt', 0.034090932), ('would', 0.034090932), ('like', 0.022727272), ('convey', 0.022727272), ('speak', 0.022727272), ('today', 0.022727272), ('also', 0.022727272), ('quattro', 0.022727272), ('partnership', 0.022727272)]",I,0.0454545
394,394,394,"['follow', 'databas', 'hourli', 'storag', 'activ', 'socal', 'begin', 'forecast', 'hourli', 'daili', 'activ', 'back', 'receipt', 'use', 'iso', 'load', 'actual', 'back', 'real', 'time', 'import', 'get', 'state', 'gen', 'number', 'ga', 'consumpt', 'use', 'temp', 'estim', 'core', 'ga', 'load', 'back', 'test', 'get', 'databas', 'creat', 'help', 'forecast', 'core', 'demand', 'updat', 'socal', 'pge', 'forecast', 'sheet', 'also', 'break', 'new', 'gen', 'epng', 'TW', 'pipelin', 'mike']","[('back', 0.041666705), ('forecast', 0.041666705), ('load', 0.03125001), ('gen', 0.03125001), ('use', 0.03125001), ('databas', 0.03125001), ('get', 0.03125001), ('core', 0.03125001), ('ga', 0.03125001), ('socal', 0.03125001)]",back,0.04166670
395,395,395,"['luci', 'here', 'rentrol', 'week', 'what', 'outstand', 'balanc', '1', 'It', 'look', 'like', '190', '110thi', 'week', '300', 'I', 'dont', 'think', 'make', 'pay', 'late', 'fee', 'cant', 'commun', 'clearli', '2', 'still', 'owe', 'deposit', '9', 'what', 'day', 'pay', 'go', 'pay', 'monthli', 'biweekli', 'have', 'good', 'weekend', 'I', 'talk', 'next', 'week', 'In', 'two', 'week', 'know', 'sure', 'buyer', 'go', 'buy', 'properti', 'I', 'keep', 'inform', 'phillip']","[('week', 0.04761912), ('I', 0.03809528), ('pay', 0.03809528), ('go', 0.028571442), ('what', 0.028571442), ('have', 0.019047614), ('biweekli', 0.019047614), ('weekend', 0.019047614), ('day', 0.019047614), ('9', 0.019047614)]",week,0.0476191
396,396,396,"['pleas', 'approv', 'mike', 'grigsbi', 'bloomberg', 'thank', 'you', 'phillip', 'allen']","[('pleas', 0.11111111), ('approv', 0.11111111), ('mike', 0.11111111), ('grigsbi', 0.11111111), ('bloomberg', 0.11111111), ('thank', 0.11111111), ('you', 0.11111111), ('phillip', 0.11111111), ('allen', 0.11111111)]",pleas,0.1111111
397,397,408,"['the', 'insur', 'compani', 'central', 'insur', 'agenc', 'inc', '6000', 'N', 'lamar', 'PO', 'box', '15427', 'austin', 'TX', '787615427', 'polici', 'cbi420478', 'contact', 'jeanett', 'peterson', '5124516551', 'the', 'actual', 'polici', 'sign', 'vista', 'insur', 'partner', 'pleas', 'tri', 'schedul', 'apprais', 'sometim', '1', 'pm', 'dad', 'walk', 'around', 'I', 'town', 'tuesday', 'what', 'els', 'need', 'get', 'done', 'close', 'phillip']","[('insur', 0.042553235), ('the', 0.03191491), ('polici', 0.03191491), ('pm', 0.021276593), ('1', 0.021276593), ('apprais', 0.021276593), ('sometim', 0.021276593), ('tri', 0.021276593), ('schedul', 0.021276593), ('pleas', 0.021276593)]",insur,0.04255323
398,398,468,"['jeff', 'My', 'target', 'get', '225', 'back', 'stage', 'therefor', 'I', 'could', 'take', 'sale', 'price', '740k', 'carri', 'second', 'note', '210k', 'thi', 'would', 'still', 'requir', '75k', 'cash', 'buyer', 'after', 'broker', 'fee', 'titl', 'polici', 'I', 'would', 'net', 'around', '20k', 'cash', 'you', 'go', 'ahead', 'negoti', 'buyer', 'strike', 'deal', '740', 'higher', 'term', 'describ', '1st', 'email', 'Do', 'want', 'give', 'new', 'braunfel', 'buyer', 'quick', 'look', 'deal', 'phillip']","[('buyer', 0.035714332), ('I', 0.026785731), ('deal', 0.026785731), ('cash', 0.026785731), ('would', 0.026785731), ('strike', 0.017857142), ('negoti', 0.017857142), ('ahead', 0.017857142), ('740', 0.017857142), ('around', 0.017857142)]",buyer,0.03571433
399,399,397,"['wholesal', 'servic', 'ee', 'ga', 'desk', 'approv', 'trader', 'list', 'name', 'titl', 'region', 'basi', 'onli', 'black', 'don', 'vice', 'presid', 'ani', 'desk', 'hewitt', 'jess', 'director', 'all', 'desk', 'vanderhorst', 'barri', 'director', 'east', 'west', 'shireman', 'kri', 'director', 'west', 'de', 'champ', 'joe', 'director', 'central', 'reynold', 'roger', 'director', 'west', 'migliano', 'andi', 'manag', 'central', 'wiltfong', 'jim', 'manag', 'all', 'desk', 'barker', 'jim', 'Sr', 'specialist', 'east', 'fleme', 'matt', 'Sr', 'specialist', 'east', 'basi', 'tate', 'paul', 'Sr', 'specialist', 'east', 'basi', 'driscol', 'mard', 'Sr', 'specialist', 'east', 'basi', 'arnold', 'laura', 'Sr', 'specialist', 'central', 'basi', 'blain', 'jay', 'Sr', 'specialist', 'east', 'basi', 'guerra', 'jesu', 'Sr', 'specialist', 'central', 'basi', 'bangl', 'christina', 'Sr', 'specialist', 'east', 'basi', 'smith', 'rhonda', 'Sr', 'specialist', 'east', 'basi', 'boettcher', 'amanda', 'Sr', 'specialist', 'central', 'basi', 'pendegraft', 'sherri', 'Sr', 'specialist', 'east', 'basi', 'rubi', 'robinson', 'specialist', 'west', 'basi', 'diza', 'alain', 'specialist', 'east', 'basi', 'monday', 'april', '16', '2001', 'jess', 'P', 'hewitt', 'revis', 'approv', 'trader', 'listdoc']","[('basi', 0.066666946), ('specialist', 0.066666946), ('Sr', 0.05714309), ('east', 0.052381154), ('central', 0.02857149), ('director', 0.02857149), ('west', 0.023809563), ('desk', 0.023809563), ('jess', 0.014285705), ('manag', 0.014285705)]",basi,0.06666694
400,400,398,"['forward', 'andrew', 'M', 'ozunatxbancon', '03072001', '0141', 'PM', 'andrew', 'M', 'ozuna', '03062001', '0314', 'PM', 'To', 'georg', 'richard', 'cbpresaustinrrcom', 'cc', 'subject', 'sagewood', 'phase', 'II', 'georg', 'thank', 'opportun', 'review', 'financ', 'request', 'sagewood', 'phase', 'II', 'project', 'upon', 'receipt', 'request', 'inform', 'regard', 'project', 'complet', 'somewhat', 'due', 'dilig', 'market', 'there', 'number', 'concern', 'need', 'address', 'prior', 'bank', 'move', 'forward', 'transact', 'first', 'proforma', 'rental', 'rate', 'compar', 'bedroom', 'bedroom', 'basi', 'high', 'rel', 'market', 'We', 'adjust', 'proforma', 'downward', 'match', 'market', 'rate', 'rate', 'per', 'bedroom', 'acheiv', 'exist', 'sagewood', 'project', 'addit', '500', 'unit', 'come', 'onlin', 'within', 'next', '12', 'month', 'citi', 'san', 'marco', 'believ', 'caus', 'downward', 'rent', 'pressur', 'seriou', 'effect', 'leverag', 'project', 'We', 'therefor', 'adjust', 'request', 'loan', 'amount', '8868000', 'I', 'summar', 'issu', 'follow', '1', 'proforma', 'rental', 'rate', 'adjust', 'downward', 'market', 'follow', 'proforma', 'bank', 'adjust', 'unit', 'unit', 'rent', 'rentbr', 'unit', 'rent', 'rentbr', '2', 'br25', 'BA', '1150', '575', '950', '475', '3', 'brunit', '1530', '510', '1250', '417', '2', 'proforma', 'expens', 'increas', 'includ', '350unit', 'reserv', 'unit', 'turn', '3', 'A', 'market', 'vacanc', 'factor', '5', 'appli', 'potenti', 'gross', 'incom', 'pgi', '4', 'base', 'bank', 'revis', 'noi', '1075000', 'project', 'support', 'debt', 'amount', '8868000', 'maintain', 'loan', 'paramet', '125x', 'debt', 'coverag', 'ratio', '25', 'year', 'amo', '860', 'phantom', 'interest', 'rate', '5', 'the', 'debt', 'servic', 'approx', '874000year', '6', 'given', 'debt', '8868000', 'borrow', 'requir', 'provid', 'equiti', '2956000', 'consist', 'follow', 'land', '1121670', 'defer', 'profit', 'overhead', '415000', 'cash', 'equiti', '1419268', 'total', '2955938', '7', 'equiti', 'credit', 'defer', 'profit', 'overhead', 'limit', 'percentag', 'actual', 'hard', 'construct', 'cost', 'see', 'attach', 'file', 'mapttraxl', 'mapttraxl']","[('proforma', 0.015037692), ('rate', 0.015037692), ('project', 0.015037692), ('market', 0.015037692), ('unit', 0.015037692), ('debt', 0.012531395), ('adjust', 0.012531394), ('request', 0.0100251), ('sagewood', 0.0100251), ('downward', 0.0100251)]",proforma,0.01503769
401,401,399,"['darrel', 'today', 'I', 'let', 'builderdevelop', 'know', 'I', 'would', 'proceed', 'excess', 'high', 'cost', 'estim', 'As', 'fund', 'take', 'land', 'agreeabl', 'turn', 'land', 'I', 'would', 'like', 'proceed', 'develop', 'properti', 'My', 'thought', 'compar', 'financ', 'bank', 'one', 'fha', 'I', 'would', 'also', 'like', 'compar', 'construct', 'develop', 'servic', 'local', 'builder', 'san', 'marco', 'I', 'speak', 'make', 'trip', 'meet', 'take', 'look', 'project', 'seem', 'order', 'I', 'tri', 'get', 'statu', 'engin', 'architectur', 'work', 'date', 'onc', 'architect', 'kipp', 'florr', 'engin', 'quattro', 'consult', 'buda', 'let', 'know', 'opinion', 'either', 'I', 'look', 'forward', 'work', 'talk', 'tomorrow', 'phillip']","[('I', 0.05517258), ('would', 0.027586244), ('work', 0.020689663), ('engin', 0.020689663), ('like', 0.020689663), ('develop', 0.020689663), ('take', 0.020689663), ('proceed', 0.020689663), ('let', 0.020689663), ('look', 0.020689663)]",I,0.0551725
402,402,400,"['phillip', 'here', 'summari', 'current', 'forecast', 'pnw', 'hydro', 'pleas', 'give', 'call', 'time', 'ill', 'explain', 'old', 'biop', 'new', 'biop', 'issu', 'tim']","[('biop', 0.081081085), ('time', 0.054054048), ('give', 0.054054048), ('issu', 0.054054048), ('new', 0.054054048), ('old', 0.054054048), ('explain', 0.054054048), ('ill', 0.054054048), ('phillip', 0.054054048), ('call', 0.054054048)]",biop,0.08108108
403,403,401,"['reagan', 'here', 'cost', 'estim', 'proforma', 'prepar', 'georg', 'larri', 'I', 'fax', 'site', 'plan', 'elev', 'floor', 'plan', 'phillip']","[('plan', 0.0967742), ('I', 0.06451613), ('larri', 0.06451613), ('floor', 0.06451613), ('elev', 0.06451613), ('site', 0.06451613), ('fax', 0.06451613), ('reagan', 0.06451613), ('proforma', 0.06451613), ('estim', 0.06451613)]",plan,0.096774
404,404,402,"['I', 'refax', 'pleas', 'confirm', 'receipt']","[('I', 0.2), ('refax', 0.2), ('pleas', 0.2), ('confirm', 0.2), ('receipt', 0.2)]",I,0.
405,405,403,"['I', 'fax', 'sign', 'amend']","[('I', 0.25), ('fax', 0.25), ('sign', 0.25), ('amend', 0.25)]",I,0.2
406,406,404,"['daryl', 'here', 'file', 'includ', 'proforma', 'unit', 'cost', 'comp', 'thi', 'file', 'prepar', 'builderdevelop', 'the', 'architect', 'begun', 'work', 'project', 'kipp', 'flore', 'they', 'austin', 'thank', 'time', 'even', 'your', 'comment', 'help', 'I', 'appreci', 'greg', 'take', 'look', 'project', 'phillip', 'allen', 'pallenenroncom', '7138537041']","[('file', 0.041666687), ('project', 0.041666687), ('I', 0.027777776), ('greg', 0.027777776), ('time', 0.027777776), ('even', 0.027777776), ('your', 0.027777776), ('comment', 0.027777776), ('help', 0.027777776), ('austin', 0.027777776)]",file,0.04166668
407,407,405,"['Al', 'I', 'go', 'MS', 'year', 'thank', 'offer', 'though', 'all', 'well', 'We', 'went', 'colorado', 'last', 'week', 'kid', 'learn', 'ski', 'work', 'alway', 'how', 'thing', 'go', 'new', 'power', 'Is', 'potenti', 'phillip']","[('go', 0.054545477), ('how', 0.036363635), ('new', 0.036363635), ('ski', 0.036363635), ('work', 0.036363635), ('alway', 0.036363635), ('kid', 0.036363635), ('thing', 0.036363635), ('potenti', 0.036363635), ('Is', 0.036363635)]",go,0.05454547
408,408,406,"['origin', 'messag', 'from', 'hayden', 'frank', '20', 'sent', 'friday', 'march', '02', '2001', '701', 'PM', 'To', 'presto', 'kevin', 'zufferli', 'john', 'mckay', 'jonathan', 'belden', 'tim', 'shive', '20', 'hunter', 'neal', 'scott', 'martin', 'thoma', 'allen', 'phillip', 'arnold', 'john', 'subject', 'cross', 'commod', 'import', 'high', 'i01v', 'ask', 'provid', 'updat', 'list', 'author', 'cross', '20', 'trade', 'commoditiesproduct', 'As', 'soon', 'possibl', 'pleas', 'repli', '20', 'email', 'name', 'author', '01cross', 'commodity018', 'trader', 'and20', 'respect', 'commod', 'natur', 'ga', 'crude', 'heat', 'gasolin', 'weather', '20', 'precip', 'coal', 'power', 'forex', 'list', 'currenc', 'etc', 'thank', 'frank', 'PS', 'trader', 'limit', 'one', 'commod', 'need', 'includ', 'li']","[('20', 0.03703715), ('commod', 0.024691405), ('john', 0.018518535), ('author', 0.018518535), ('cross', 0.018518535), ('trader', 0.018518535), ('list', 0.018518535), ('frank', 0.018518535), ('01cross', 0.012345675), ('email', 0.012345675)]",20,0.0370371
409,409,407,"['georg', 'I', 'back', 'offic', 'readi', 'focu', 'project', 'I', 'still', 'concern', 'I', 'last', 'week', 'specif', 'cost', 'project', 'high', 'I', 'gather', 'inform', 'support', 'concern', 'base', 'research', 'I', 'believ', 'project', 'cost', 'around', '105', 'million', 'the', 'compon', 'follow', 'unit', 'cost', 'site', 'work', 'builder', 'profit52sf', '76', 'million', 'land', '115', 'interim', 'financ', '85', 'common', 'area', '80', 'total', '104', 'sinc', 'reagan', 'last', '12', 'unit', 'sell', 'around', '190000', 'I', 'unabl', 'get', 'comfort', 'build', 'larger', 'project', '95000unit', 'cost', 'also', 'comp', 'use', 'apprais', 'austin', 'appear', 'class', 'A', 'properti', 'It', 'seem', 'unlik', 'student', 'hous', 'san', 'marco', 'produc', 'rent', 'sale', 'price', 'there', 'adjust', 'locat', 'season', 'natur', 'student', 'rental', 'properti', 'I', 'recogn', 'sagewood', 'current', 'perform', 'occup', 'foot', 'rental', 'rate', 'closer', 'apprais', 'pro', 'forma', 'howev', 'believ', 'market', 'sustain', 'level', 'perman', 'basi', 'suppli', 'inevit', 'increas', 'drive', 'market', 'balanc', 'after', 'real', 'estat', 'expert', 'houston', 'review', 'proforma', 'cost', 'estim', 'comment', 'apprais', 'overli', 'optimist', 'He', 'feel', 'perman', 'financ', 'would', 'potenti', 'around', '98', 'million', 'We', 'would', 'even', 'abl', 'cover', 'interim', 'financ', 'keith', 'I', 'review', 'project', 'thoroughli', 'agreement', 'proceed', 'total', 'cost', 'estim', 'significantli', '105', 'million', 'We', 'would', 'like', 'confer', 'call', 'tuesday', 'afternoon', 'discu', 'altern', 'phillip']","[('I', 0.029220978), ('cost', 0.022727404), ('project', 0.019480618), ('million', 0.016233834), ('apprais', 0.01298705), ('around', 0.01298705), ('financ', 0.01298705), ('would', 0.01298705), ('unit', 0.009740271), ('perman', 0.009740271)]",I,0.02922097
410,410,511,"['luci', 'whi', 'mani', 'tenant', 'pay', 'week', '12', '95', '21', '240', '27', '120', '28', '260', '33', '260', 'total', '975', 'It', 'seem', 'apart', 'miss', 'rent', 'what', 'other', 'question', '9whi', 'didnt', 'pay', 'anyth', 'By', 'record', 'still', 'owe', '40', 'plu', 'rent', 'due', '1212', '220', '3whi', 'short', 'pay']","[('pay', 0.048780542), ('rent', 0.03658539), ('260', 0.03658539), ('record', 0.024390245), ('other', 0.024390245), ('question', 0.024390245), ('9whi', 0.024390245), ('didnt', 0.024390245), ('anyth', 0.024390245), ('By', 0.024390245)]",pay,0.04878054
411,411,409,"['georg', 'I', 'back', 'offic', 'readi', 'focu', 'project', 'I', 'still', 'concern', 'I', 'last', 'week', 'specif', 'cost', 'project', 'high', 'I', 'gather', 'inform', 'support', 'concern', 'base', 'research', 'I', 'believ', 'project', 'cost', 'around', '105', 'million', 'the', 'compon', 'follow', 'unit', 'cost', 'site', 'work', 'builder', 'profit52sf', '76', 'million', 'land', '115', 'interim', 'financ', '85', 'common', 'area', '80', 'total', '104', 'sinc', 'reagan', 'last', '12', 'unit', 'sell', 'around', '190000', 'I', 'unabl', 'get', 'comfort', 'build', 'larger', 'project', '95000unit', 'cost', 'also', 'comp', 'use', 'apprais', 'austin', 'appear', 'class', 'A', 'properti', 'It', 'seem', 'unlik', 'student', 'hous', 'san', 'marco', 'produc', 'rent', 'sale', 'price', 'there', 'adjust', 'locat', 'season', 'natur', 'student', 'rental', 'properti', 'I', 'recogn', 'sagewood', 'current', 'perform', 'occup', 'foot', 'rental', 'rate', 'closer', 'apprais', 'pro', 'forma', 'howev', 'believ', 'market', 'sustain', 'level', 'perman', 'basi', 'suppli', 'inevit', 'increas', 'drive', 'market', 'balanc', 'after', 'real', 'estat', 'expert', 'houston', 'review', 'proforma', 'cost', 'estim', 'comment', 'apprais', 'overli', 'optimist', 'He', 'feel', 'perman', 'financ', 'would', 'potenti', 'around', '98', 'million', 'We', 'would', 'even', 'abl', 'cover', 'interim', 'financ', 'keith', 'I', 'review', 'project', 'thoroughli', 'agreement', 'proceed', 'total', 'cost', 'estim', 'significantli', '105', 'million', 'We', 'would', 'like', 'confer', 'call', 'tomorrow', 'discu', 'altern', 'phillip']","[('I', 0.029411972), ('cost', 0.022875953), ('project', 0.019607948), ('million', 0.016339941), ('financ', 0.013071934), ('apprais', 0.013071934), ('would', 0.013071934), ('around', 0.013071934), ('interim', 0.009803933), ('estim', 0.009803933)]",I,0.02941197
412,412,410,"['from', 'phillip', 'K', 'allen', '03052001', '1037', 'AM', 'To', 'jim123pdqnet', 'cc', 'subject']","[('from', 0.090909086), ('phillip', 0.090909086), ('K', 0.090909086), ('allen', 0.090909086), ('03052001', 0.090909086), ('1037', 0.090909086), ('AM', 0.090909086), ('To', 0.090909086), ('jim123pdqnet', 0.090909086), ('cc', 0.090909086)]",from,0.09090908
413,413,411,"['I', 'receiv', 'aircard', '300', 'yet', 'phillip']","[('I', 0.16666667), ('receiv', 0.16666667), ('aircard', 0.16666667), ('300', 0.16666667), ('yet', 0.16666667), ('phillip', 0.16666667)]",I,0.1666666
414,414,412,"['don', 'I', 'last', 'week', 'regard', 'montana', 'suppli', 'refer', 'mark', 'whitt', 'denver', 'let', 'know', 'want', 'meet', 'also', 'frequent', 'give', 'quot', 'midmarket', 'fred', 'lagrasta', 'desk', 'enron', 'market', 'new', 'york', 'custom', 'ee', 'I', 'dont', 'understand', 'peopl', 'dont', 'contact', 'desk', 'directli', 'phillip']","[('I', 0.041095905), ('desk', 0.041095905), ('dont', 0.041095905), ('new', 0.027397256), ('fred', 0.027397256), ('lagrasta', 0.027397256), ('enron', 0.027397256), ('market', 0.027397256), ('custom', 0.027397256), ('york', 0.027397256)]",I,0.04109590
415,415,413,"['sorri', 'deadlin', 'pass', 'onli', 'enron', 'deal', 'yesterday', 'includ', 'survey', 'annebikeenroncom', '02282001', '045752', 'PM', 'To', 'lian', 'kucherwashmagnewsmagnew', 'cc', 'subject', 'Re', 'enron', 'march', 'basdeload', 'fix', 'price', 'physic', 'deal', '227', '01', 'attach', 'free', 'viru', 'scan', 'mail', 'We', 'send', 'even', 'calc', 'book', 'probabl', 'around', '700', 'pm', 'ann', 'lianekuchermcgrawhillcom', '02282001', '014344', 'PM', 'To', 'annebikeenroncom', 'cc', 'subject', 'Re', 'enron', 'march', 'basdeload', 'fix', 'price', 'physic', 'deal', '227', '01', 'attach', 'free', 'viru', 'scan', 'mail', 'ann', 'are', 'plan', 'send', 'today', 'bidweek', 'deal', 'soon', 'I', 'need', 'know', 'whether', 'transfer', 'everyth', 'data', 'base', 'thank', 'lian', 'kucher', '2023832147']","[('deal', 0.034482826), ('enron', 0.027586244), ('march', 0.020689664), ('fix', 0.020689664), ('scan', 0.020689664), ('subject', 0.020689664), ('Re', 0.020689664), ('lian', 0.020689664), ('physic', 0.020689664), ('price', 0.020689664)]",deal,0.03448282
416,416,414,"['pleas', 'find', 'attach', 'pro', 'forma', 'project', 'san', 'marco', 'thank']","[('pleas', 0.11111111), ('find', 0.11111111), ('attach', 0.11111111), ('pro', 0.11111111), ('forma', 0.11111111), ('project', 0.11111111), ('san', 0.11111111), ('marco', 0.11111111), ('thank', 0.11111111)]",pleas,0.1111111
417,417,415,"['luci', 'here', 'question', 'regard', '216', 'rentrol', '2', 'ha', 'actual', 'paid', '150', 'deposit', 'her', 'move', 'date', '26', 'It', 'rentrol', 'I', 'see', '9', 'explain', 'deposit', 'rent', 'transfer', '41', 'start', 'pay', '9', '15', 'sinc', 'good', 'tenant', 'long', 'stop', 'tri', 'collect', '95', 'question', '33', 'miss', 'rent', 'are', 'still', '26', 'I', 'see', 'paid', 'deposit', 'but', 'file', 'say', 'move', '130', 'ha', 'ever', 'paid', 'rent', 'I', 'cant', 'find', 'last', 'three', 'deposit', '44', 'have', 'paid', 'februari', 'there', 'payment', 'sinc', 'begin', 'year', '33', 'you', 'email', 'said', 'paid', '140', '130', 'plu', '14', 'late', 'fee', 'I', 'dont', 'see', '126', '22', 'deposit', 'the', 'last', 'three', 'question', 'add', '1200', 'miss', 'rent', 'I', 'need', 'figur', 'immedi', 'I', 'email', 'new', 'file', '223', 'attach', 'last', 'three', 'rentrol', 'case', 'need', 'research', 'question', 'I', 'offic', 'next', 'week', 'If', 'I', 'get', 'connect', 'might', 'abl', 'email', 'pallen70hotmailcom', 'otherwis', 'tri', 'work', 'gari', 'press', 'issu', 'If', 'emerg', 'call', '7134104679', 'phillip']","[('I', 0.03862681), ('deposit', 0.02575117), ('paid', 0.02575117), ('question', 0.021459293), ('rent', 0.021459293), ('email', 0.01716742), ('three', 0.01716742), ('see', 0.01716742), ('rentrol', 0.01716742), ('last', 0.01716742)]",I,0.0386268
418,418,416,"['georg', 'I', 'take', 'day', 'week', 'I', 'get', 'back', 'vacat', 'ani', 'day', 'march', '5th9th', 'would', 'work', 'friday', 'thursday', 'would', 'prefer', 'regard', 'differ', 'two', 'estim', 'I', 'dont', 'want', 'wast', 'time', 'explain', 'differ', '1st', 'forecast', 'rough', 'the', 'item', 'I', 'list', 'move', 'dramat', 'also', 'question', 'clarif', 'number', 'let', 'tri', 'reach', 'agreement', 'construct', 'manag', 'issu', 'tomorrow', 'morn', 'phillip']","[('I', 0.05000009), ('day', 0.030000018), ('would', 0.030000018), ('differ', 0.030000018), ('dramat', 0.019999998), ('list', 0.019999998), ('also', 0.019999998), ('clarif', 0.019999998), ('the', 0.019999998), ('item', 0.019999998)]",I,0.0500000
419,419,417,"['georg', 'the', 'number', 'fax', 'dont', 'agre', 'first', 'estim', 'I', 'use', 'here', 'two', 'file', 'I', 'use', 'phillip']","[('use', 0.10000002), ('I', 0.10000002), ('estim', 0.06666667), ('phillip', 0.06666667), ('file', 0.06666667), ('georg', 0.06666667), ('the', 0.06666667), ('agre', 0.06666667), ('dont', 0.06666667), ('fax', 0.06666667)]",use,0.1000000
420,420,418,"['phillip', 'georg', 'richard', 'ask', 'I', 'drop', 'line', 'morn', 'go', 'detail', 'san', 'marco', 'project', '1', 'first', 'know', 'I', 'receiv', 'person', 'financi', 'statement', 'keith', 'I', 'want', 'make', 'sure', 'credit', 'writeup', 'includ', 'princip', 'transact', '2', 'second', 'without', 'forward', 'takeout', 'typic', 'loan', 'cost', 'ltc', 'rang', '75', '80', 'the', 'propos', 'loan', 'valu', '75', 'within', 'accept', 'rang', 'typic', 'multifamili', 'deal', 'given', 'proforma', 'perform', 'sagewood', 'townhom', 'I', 'structur', 'deal', 'credit', 'offic', '80', 'ltc', 'thi', 'cours', 'subject', 'credit', 'offic', 'sign', 'deal', '3', 'the', 'bank', 'give', 'dollar', 'dollar', 'equiti', 'credit', 'develop', 'defer', 'profit', 'typic', 'past', 'deal', '10', 'total', 'project', 'budget', 'defer', 'profit', 'accept', 'thank', 'andrew', 'ozuna', 'real', 'estat', 'loan', 'offic', '2102718386']","[('deal', 0.027933033), ('I', 0.027933033), ('credit', 0.027933033), ('loan', 0.022346409), ('offic', 0.022346409), ('typic', 0.022346409), ('rang', 0.016759789), ('defer', 0.016759789), ('profit', 0.016759789), ('project', 0.016759789)]",deal,0.02793303
421,421,419,"['attach', 'two', 'file', 'illustr', 'follow', 'As', 'price', 'rose', 'suppli', 'increas', 'demand', 'decreas', 'now', 'price', 'begin', 'fall', 'respons', 'market', 'respons']","[('respons', 0.08333336), ('price', 0.08333336), ('demand', 0.055555552), ('suppli', 0.055555552), ('fall', 0.055555552), ('begin', 0.055555552), ('now', 0.055555552), ('decreas', 0.055555552), ('attach', 0.055555552), ('increas', 0.055555552)]",respons,0.0833333
422,422,420,"['oncom', 'jim', 'buerklepdxectect', 'elliot', 'mainzerpdxectect', 'jeffrey', 'ohpdxectect', 'todd', 'perrypdxectect', 'laird', 'dyersfectect', 'michael', 'mcdonaldsfectect', 'Ed', 'clarkpdxectect', 'dave', 'fullerpdxectect', 'alan', 'comnespdxectect', 'michael', 'etringerhouectect', 'john', 'malowneyhouectect', 'stewart', 'rosmanhouectect', 'jeff', 'shieldspdxectect', 'cc', 'subject', 'new', 'gener', 'report', 'januari', '2001']","[('michael', 0.044776145), ('jeff', 0.029850746), ('cc', 0.029850746), ('john', 0.029850746), ('malowneyhouectect', 0.029850746), ('stewart', 0.029850746), ('rosmanhouectect', 0.029850746), ('comnespdxectect', 0.029850746), ('shieldspdxectect', 0.029850746), ('gener', 0.029850746)]",michael,0.04477614
423,423,421,"['you', 'fax', 'anytim', 'but', 'I', 'save', 'spreadsheet', 'previou', 'estim', 'what', 'differ', 'fax']","[('fax', 0.13043483), ('you', 0.08695652), ('anytim', 0.08695652), ('but', 0.08695652), ('I', 0.08695652), ('save', 0.08695652), ('spreadsheet', 0.08695652), ('previou', 0.08695652), ('estim', 0.08695652), ('what', 0.08695652)]",fax,0.1304348
424,424,422,"['north', 'america', 'corp', 'from', 'frank', 'hayden', 'enron', '02212001', '0546', 'PM', 'To', 'tim', 'beldenhouectect', 'kevin', 'M', 'prestohouectect', 'phillip', 'K', 'allenhouectect', 'scott', 'nealhouectect', 'hunter', 'S', 'shivelyhouectect', 'john', 'arnoldhouectect', 'john', 'J', 'lavoratocorpenron', 'louis', 'kitchenhouectect', 'thoma', 'A', 'martinhouectect', 'vladimir', 'gornyhouectect', 'cc', 'subject', 'recess', 'scenario', 'impact', 'power', 'ga', 'attach', 'cera', 'present', 'regard', 'recess', 'impact', 'feel', 'free', 'call', 'listen', 'prerecord', 'discuss', 'slide', 'approx', '20min', 'cera', 'forecast', 'recess', 'impact', 'Ca', 'enough', 'allevi', 'problem', 'frank', 'call', 'number', '18882031112', 'passcod', '647083']","[('recess', 0.029411815), ('impact', 0.029411815), ('john', 0.022058843), ('call', 0.022058843), ('frank', 0.022058843), ('cera', 0.022058843), ('feel', 0.01470588), ('regard', 0.01470588), ('present', 0.01470588), ('power', 0.01470588)]",recess,0.02941181
425,425,423,"['there', 'updat', 'cost', 'the', 'princip', 'chang', 'addit', 'masonri', 'front', 'build', 'I', 'estim', 'cost', 'least', '84000', 'addit', 'also', 'trim', 'materi', 'labor', 'cost', 'increas', 'I', 'still', 'believ', 'total', 'cost', 'suffici', 'addit', 'updat', 'the', 'manag', 'unit', 'column', 'JL', 'total', 'includ', 'BN', 'total', 'rentabl', 'unit', 'rather', 'total', 'cost', 'manag', 'unit', 'offic', 'includ', 'lump', 'sum', 'amen', 'I', 'may', 'add', 'back', 'rentabl', 'unit', 'delet', 'amen', 'the', 'financ', 'cost', 'chang', 'cost', 'perman', 'mortgag', 'delet', 'need', 'obtain', 'construct', 'loan', 'approv', 'therefor', 'cost', 'absorb', 'loan', 'obtain', 'base', 'either', 'loan', 'equal', '75', 'valu', '80', 'cost', 'construct', 'profit', 'cover', 'equiti', 'requir', 'beyond', 'land', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc', 'sm134', 'proforma2xl']","[('cost', 0.059171814), ('unit', 0.02958586), ('total', 0.02958586), ('I', 0.023668671), ('the', 0.023668671), ('addit', 0.023668671), ('loan', 0.023668671), ('amen', 0.017751489), ('includ', 0.017751489), ('rentabl', 0.017751489)]",cost,0.05917181
426,426,424,"['tomorrow', 'fine', 'talk', 'phillip']","[('tomorrow', 0.25), ('fine', 0.25), ('talk', 0.25), ('phillip', 0.25)]",tomorrow,0.2
427,427,425,"['phillip', 'keith', 'cold', 'mine', 'get', 'better', 'would', 'possibl', 'reschedul', 'meet', 'tomorrow', 'If', 'pleas', 'repli', 'email', 'time', 'I', 'open', 'day', 'need', 'get', 'rest', 'afternoon', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc']","[('get', 0.052631605), ('afternoon', 0.03508772), ('W', 0.03508772), ('open', 0.03508772), ('day', 0.03508772), ('need', 0.03508772), ('rest', 0.03508772), ('time', 0.03508772), ('builder', 0.03508772), ('richard', 0.03508772)]",get,0.05263160
428,428,426,"['phillip', 'I', 'spoke', 'amf', 'broker', 'today', 'satisfi', 'deal', 'get', 'school', 'agre', 'limit', 'current', 'land', 'use', 'restrict', 'term', 'exist', 'agreement', 'they', 'want', 'school', 'come', 'back', 'later', 'date', 'someth', 'differ', 'doug', 'bell', 'meet', 'school', 'offici', 'monday', 'see', 'thought', 'subject', 'It', 'would', 'hard', 'chang', 'current', 'agreement', 'amf', 'want', 'someth', 'write', 'effect', 'I', 'spoke', 'amf', 'attorney', 'today', 'explain', 'situat', 'they', 'OK', 'deal', 'amf', 'satisfi', 'amf', 'broker', 'said', 'readi', 'submit', 'site', 'plan', 'march', '29', 'hear', 'We', 'may', 'close', 'deal', 'april', 'the', 'stage', 'still', 'go', 'An', 'assumpt', 'packag', 'sent', 'buyer', 'I', 'overnight', 'copi', 'contract', 'descript', 'detail', 'wayn', 'mccoy', 'I', 'gone', 'thur', 'fri', 'week', 'I', 'check', 'messag', 'jeff', 'smith', 'the', 'smith', 'compani', '2714', 'bee', 'cave', 'road', 'suit', '100d', 'austin', 'texa', '78746', '5127320009', '5127320010', 'fax', '5127519728', 'mobil']","[('amf', 0.027907088), ('I', 0.027907088), ('school', 0.018604698), ('deal', 0.018604698), ('they', 0.013953504), ('spoke', 0.013953504), ('smith', 0.013953504), ('agreement', 0.013953504), ('current', 0.013953504), ('broker', 0.013953504)]",amf,0.02790708
429,429,427,"['As', 'remind', 'daili', 'call', 'california', 'end', 'We', 'singl', 'weekli', 'call', 'monday', '1030', 'houston', 'time', 'updat', 'provid', 'email', 'requir', 'jim', 'steff']","[('call', 0.0769231), ('houston', 0.05128205), ('monday', 0.05128205), ('jim', 0.05128205), ('requir', 0.05128205), ('email', 0.05128205), ('provid', 0.05128205), ('updat', 0.05128205), ('time', 0.05128205), ('As', 0.05128205)]",call,0.076923
430,430,428,"['there', 'updat', 'cost', 'the', 'princip', 'chang', 'addit', 'masonri', 'front', 'build', 'I', 'estim', 'cost', 'least', '84000', 'addit', 'also', 'trim', 'materi', 'labor', 'cost', 'increas', 'I', 'still', 'believ', 'total', 'cost', 'suffici', 'addit', 'updat', 'the', 'manag', 'unit', 'column', 'JL', 'total', 'includ', 'BN', 'total', 'rentabl', 'unit', 'rather', 'total', 'cost', 'manag', 'unit', 'offic', 'includ', 'lump', 'sum', 'amen', 'I', 'may', 'add', 'back', 'rentabl', 'unit', 'delet', 'amen', 'the', 'financ', 'cost', 'chang', 'cost', 'perman', 'mortgag', 'delet', 'need', 'obtain', 'construct', 'loan', 'approv', 'therefor', 'cost', 'absorb', 'loan', 'obtain', 'base', 'either', 'loan', 'equal', '75', 'valu', '80', 'cost', 'construct', 'profit', 'cover', 'equiti', 'requir', 'beyond', 'land', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc', 'sm134', 'proforma2xl']","[('cost', 0.059171814), ('unit', 0.02958586), ('total', 0.02958586), ('I', 0.023668671), ('the', 0.023668671), ('addit', 0.023668671), ('loan', 0.023668671), ('amen', 0.017751489), ('includ', 0.017751489), ('rentabl', 0.017751489)]",cost,0.05917181
431,431,429,"['john', 'doe', 'next', 'thursday', '3pm', 'fit', 'schedul', 'go', 'rocki', 'forecast', 'I', 'set', 'room', 'kim', 'here', 'suggest', 'project', 'colleen', '1', 'review', 'document', 'system', 'process', 'the', 'handoff', 'erm', 'tagg', 'unifi', 'sitara', 'system', 'clearli', 'understood', 'parti', 'tri', 'make', 'improv', 'I', 'think', 'I', 'understand', 'erm', 'tagg', 'issu', 'face', 'schedul', 'unifi', 'grey', '2', 'review', 'audit', 'complex', 'deal', 'under', 'assum', 'mess', 'polici', 'exist', 'deal', 'could', 'use', 'review', 'book', 'new', 'deal', 'need', 'scrutini', '3', 'review', 'risk', 'book', 'Is', 'enron', 'accur', 'account', 'physic', 'imbal', 'transport', 'fuel', 'park', 'loan', 'transact', '4', 'lead', 'trade', 'track', 'program', 'recruit', 'overse', 'rotat', 'design', 'train', 'cours', 'review', 'progress', 'make', 'cut', '5', 'fundament', 'liason', 'trade', 'analyst', 'are', 'look', 'everyth', 'put', 'person', 'trade', 'mental', 'add', 'valu', 'direct', 'group', 'In', 'fact', 'much', 'work', 'could', 'probabl', 'need', 'second', 'MD', 'work', 'part', 'time', 'get', 'done', 'phillip']","[('review', 0.025641134), ('I', 0.01709406), ('deal', 0.01709406), ('trade', 0.01709406), ('erm', 0.012820527), ('need', 0.012820527), ('could', 0.012820526), ('work', 0.012820526), ('system', 0.012820526), ('make', 0.012820526)]",review,0.02564113
432,432,430,"['pleas', 'review', 'attach', 'draft', 'enron', 'comment', 'respons', 'san', 'diego', 'request', 'natur', 'ga', 'price', 'cap', 'the', 'comment', 'reflect', 'becki', 'cantrel', 'comment', 'reflect', 'red', 'line', 'pleas', 'respond', 'soon', 'possibl', 'comment', 'pleas', 'pa', 'anyon', 'els', 'need', 'see', 'thank', 'sarah']","[('comment', 0.07575767), ('pleas', 0.060606107), ('reflect', 0.045454565), ('possibl', 0.03030303), ('red', 0.03030303), ('line', 0.03030303), ('respond', 0.03030303), ('soon', 0.03030303), ('anyon', 0.03030303), ('thank', 0.03030303)]",comment,0.0757576
433,433,431,"['the', 'spin', 'bike', 'much', 'better', 'life', 'cycl', 'would', 'consid', 'place', 'sever', 'spin', 'bike', 'exercis', 'equip', 'run', 'spin', 'video', 'tv', 'I', 'think', 'equip', 'would', 'use', 'much', 'member', 'could', 'jump', 'bike', 'follow', 'video', 'time', 'day', 'let', 'know', 'possibl', 'phillip', 'allen', 'x37041']","[('bike', 0.0571429), ('spin', 0.0571429), ('much', 0.042857155), ('video', 0.042857155), ('would', 0.042857155), ('equip', 0.042857155), ('time', 0.028571425), ('know', 0.028571425), ('jump', 0.028571425), ('follow', 0.028571425)]",bike,0.057142
434,434,432,"['that', 'would', 'help', 'thank', 'phillip']","[('that', 0.2), ('would', 0.2), ('help', 0.2), ('thank', 0.2), ('phillip', 0.2)]",that,0.
435,435,433,"['ye', 'pleas']","[('ye', 0.5), ('pleas', 0.5)]",ye,0.
436,436,434,"['29', 'question', '1', 'It', 'look', 'like', 'miss', '12629', '110', 'I', 'cant', 'tell', 'still', 'owe', '47', 'deposit', '13', 'I', 'show', 'miss', 'rent', '126', 'still', 'owe', '140', '15', 'tri', 'follow', 'toma', '95', 'hope', 'wont', 'bad', 'reaction', '20b', 'miss', 'rent', '26', 'ha', 'paid', 'deposit', 'rent', '27', 'miss', 'rent']","[('miss', 0.062500075), ('rent', 0.062500075), ('I', 0.037500016), ('deposit', 0.037500016), ('owe', 0.037500016), ('still', 0.037500016), ('126', 0.024999997), ('toma', 0.024999995), ('paid', 0.024999995), ('95', 0.024999995)]",miss,0.06250007
437,437,435,"['29', 'question', '1', 'It', 'look', 'like', 'miss', '12629', '110', 'I', 'cant', 'tell', 'still', 'owe', '47', 'deposit', '13', 'I', 'show', 'miss', 'rent', '126', 'still', 'owe', '140', '15', 'tri', 'follow', 'toma', '95', 'hope', 'wont', 'bad', 'reaction', '20b', 'miss', 'rent', '26', 'ha', 'paid', 'deposit', 'rent', '27', 'miss', 'rent']","[('miss', 0.062500075), ('rent', 0.062500075), ('deposit', 0.037500016), ('owe', 0.037500016), ('still', 0.037500016), ('I', 0.037500016), ('reaction', 0.024999997), ('cant', 0.024999997), ('95', 0.024999995), ('toma', 0.024999995)]",miss,0.06250007
438,438,455,"['colleen', 'I', 'check', 'transport', 'model', 'found', 'follow', 'extrins', 'valu', 'januari', '2nd', 'versu', 'februari', '11', '12', '211', 'stanfield', 'malin', '209', '81', 'sjperm', 'socal', '896', '251', 'Sj', 'socal', '2747', '768', 'pgetop', 'cityg', '51', '3', 'pgetop', 'kr', '16', '4', 'SJ', 'valero', '916', '927', 'If', 'number', 'correct', 'havent', 'increas', 'extrins', 'valu', 'sinc', 'begin', 'year', 'can', 'confirm', 'I', 'look', 'right', 'number', 'phillip']","[('pgetop', 0.027777797), ('socal', 0.027777797), ('valu', 0.027777797), ('extrins', 0.027777797), ('number', 0.027777797), ('I', 0.027777797), ('valero', 0.018518515), ('4', 0.018518515), ('916', 0.018518515), ('16', 0.018518515)]",pgetop,0.02777779
439,439,456,"['To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'Re', 'aec', 'volum', 'opal']","[('To', 0.1), ('phillip', 0.1), ('K', 0.1), ('allenhouectect', 0.1), ('cc', 0.1), ('subject', 0.1), ('Re', 0.1), ('aec', 0.1), ('volum', 0.1), ('opal', 0.1)]",To,0.
440,440,492,"['georg', 'We', 'hear', 'bank', 'houston', 'monday', 'the', 'best', 'number', 'time', 'reach', 'work', '7138537041', 'fax', '7134642391', 'cell', '7134104679', 'home', '7134638626', 'pallen70hotmailcom', 'home', 'pallenenroncom', 'work', 'I', 'usual', 'work', 'MF', '7am530pm', 'otherwis', 'tri', 'home', 'cell', 'keith', 'number', 'work', '7138537069', 'fax', '7134642391', 'cell', '7135029402', 'home', '7136675889', 'kholstenroncom', 'phillip']","[('work', 0.064935125), ('home', 0.064935125), ('cell', 0.051948093), ('7134642391', 0.03896105), ('fax', 0.03896105), ('number', 0.03896105), ('otherwis', 0.025974018), ('usual', 0.025974018), ('MF', 0.025974018), ('pallenenroncom', 0.025974018)]",work,0.06493512
441,441,493,"['dexter', 'you', 'receiv', 'guest', 'id', 'shortli', 'phillip']","[('dexter', 0.14285715), ('you', 0.14285715), ('receiv', 0.14285715), ('guest', 0.14285715), ('id', 0.14285715), ('shortli', 0.14285715), ('phillip', 0.14285715)]",dexter,0.1428571
442,442,436,"['jaqu', 'after', 'meet', 'georg', 'larri', 'clear', 'differ', 'definit', 'cost', 'profit', 'their', 'version', 'includ', 'salari', 'superintend', 'junior', 'superintend', 'hard', 'cost', 'equival', 'third', 'parti', 'sub', 'materi', 'then', 'layer', 'construct', 'manag', 'fee', '10', 'there', 'small', 'incident', 'cost', 'list', 'would', 'paid', 'money', 'but', 'I', 'think', 'major', 'profit', 'final', 'builder', 'profit', '14', 'million', 'keith', 'I', 'sure', 'whether', 'would', 'open', 'pay', 'super', 'cost', 'paid', 'builder', 'profit', 'after', 'builder', 'need', 'two', 'addit', 'supervisor', 'We', 'definit', 'intend', 'insert', 'addit', '10', 'fee', 'addit', 'superintend', 'cost', 'georg', 'claim', 'cost', 'cost', 'estim', 'use', 'I', 'review', 'estim', 'superintend', 'list', 'I', 'dont', 'think', 'construct', 'manag', 'fee', 'includ', 'georg', 'gave', 'contract', 'show', 'fee', 'standard', 'I', 'review', 'let', 'know', 'I', 'think', 'the', 'GP', 'issu', 'dont', 'seem', 'point', 'content', 'they', 'agreeabl', '3', '4', 'approv', 'process', 'let', 'know', 'opinion', 'sourc', 'I', 'use', 'push', 'true', 'cost', '14', 'million', 'phillip']","[('cost', 0.041860647), ('I', 0.037209455), ('profit', 0.023255873), ('superintend', 0.023255873), ('fee', 0.023255873), ('georg', 0.01860468), ('think', 0.01860468), ('addit', 0.01860468), ('builder', 0.01860468), ('would', 0.013953492)]",cost,0.04186064
443,443,437,"['georg', 'pleas', 'send', 'latest', 'cost', 'estim', 'get', 'chanc', 'morn', 'phillip']","[('georg', 0.1), ('pleas', 0.1), ('send', 0.1), ('latest', 0.1), ('cost', 0.1), ('estim', 0.1), ('get', 0.1), ('chanc', 0.1), ('morn', 0.1), ('phillip', 0.1)]",georg,0.
444,444,438,"['jeani', 'lavorato', 'call', 'offic', 'question', 'inquiri', 'part', 'time', 'nice', 'confidenti', 'sinc', 'I', 'alreadi', 'gotten', 'grief', 'would', 'nice', 'get', 'use', 'inform', 'what', 'find', 'part', 'time', 'leav', 'absenc', 'sabbat', 'My', 'interest', '2002', 'phillip']","[('nice', 0.05084748), ('time', 0.05084748), ('part', 0.05084748), ('inform', 0.033898305), ('what', 0.033898305), ('find', 0.033898305), ('leav', 0.033898305), ('absenc', 0.033898305), ('get', 0.033898305), ('2002', 0.033898305)]",nice,0.0508474
445,445,439,"['enclos', 'copi', 'one', 'draw', 'submit', 'bank', 'one', 'prior', 'job', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc', 'draw2xl']","[('one', 0.096774206), ('W', 0.06451613), ('job', 0.06451613), ('llc', 0.06451613), ('builder', 0.06451613), ('creeksid', 0.06451613), ('richard', 0.06451613), ('enclos', 0.06451613), ('georg', 0.06451613), ('draw', 0.06451613)]",one,0.09677420
446,446,440,"['here', 'need', 'bring', 'updat', 'rent', 'roll', 'inventori', 'person', 'properti', 'includ', 'window', 'unit', 'copi', 'leas', 'make', 'avail', 'offic', 'A', 'copi', 'note', 'deed', 'trust', 'ani', 'servic', 'mainten', 'manag', 'agreement', 'ani', 'environment', 'studi', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'friday', 'februari', '16', '2001', '853', 'AM', 'To', 'jsmithaustintxcom', 'subject', 'RE', 'jeff', 'here', 'applic', 'spb', 'I', 'guess', 'want', 'use', 'form', 'new', 'loan', 'applic', 'I', 'call', 'lee', 'odonnel', 'tri', 'find', 'shorter', 'form', 'what', 'I', 'need', 'provid', 'buyer', 'accord', 'contract', 'I', 'plan', 'bring', 'copi', 'survey', 'rentrol', 'includ', 'deposit', 'monday', 'pleas', 'let', 'know', 'morn', 'els', 'I', 'put', 'togeth', 'phillip', 'forward', 'phillip', 'K', 'allenhouect', '02162001', '0847', 'AM', 'odonnel', 'lee', 'spb', 'lodonnellspbankcom', '02152001', '053608', 'PM', 'To', 'phillipkallenenroncom', 'phillipkallenenroncom', 'cc', 'subject', 'RE', 'I', 'told', 'fax', 'loan', 'applic', 'I', 'send', 'attach', 'backup', 'also', 'need', 'provid', 'current', 'rent', 'roll', '1999', '2000', 'oper', 'histori', 'incom', 'expens', 'call', 'need', 'help', 'thank', 'lee', 'odonnel', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'thursday', 'februari', '15', '2001', '1134', 'AM', 'To', 'lodonnellspbankcom', 'subject', 'lee', 'My', 'fax', 'number', '7136462391', 'pleas', 'fax', 'loan', 'applic', 'I', 'pa', 'buyer', 'phillip', 'allen', 'pallenenroncom', '7138537041', 'see', 'attach', 'file', 'copi', 'loan', 'apptif', 'see', 'attach', 'file', 'copi', 'multifamili', 'form']","[('I', 0.030201519), ('copi', 0.020134311), ('applic', 0.01677858), ('phillipkallenenroncom', 0.01677858), ('loan', 0.01677858), ('need', 0.01677858), ('lee', 0.01677858), ('AM', 0.013422847), ('attach', 0.013422847), ('phillip', 0.013422847)]",I,0.03020151
447,447,441,"['the', 'west', 'desk', 'would', 'like', '2', 'analyst']","[('the', 0.14285715), ('west', 0.14285715), ('desk', 0.14285715), ('would', 0.14285715), ('like', 0.14285715), ('2', 0.14285715), ('analyst', 0.14285715)]",the,0.1428571
448,448,442,"['here', 'stab', 'talk', 'point', 'sent', 'ferc', 'along', 'ga', 'price', 'info', 'request', 'california', 'market', 'let', 'christi', 'know', 'disagr', 'addit', 'whatev', 'I', 'suppos', '215', 'today', 'stuff', 'add', 'get', 'christi', 'thank']","[('christi', 0.054545477), ('suppos', 0.036363635), ('disagr', 0.036363635), ('addit', 0.036363635), ('whatev', 0.036363635), ('I', 0.036363635), ('215', 0.036363635), ('get', 0.036363635), ('stuff', 0.036363635), ('let', 0.036363635)]",christi,0.05454547
449,449,443,"['I', 'would', 'like', 'copi', 'apprais', 'see', 'monday', '2', 'phillip']","[('I', 0.11111111), ('would', 0.11111111), ('like', 0.11111111), ('copi', 0.11111111), ('apprais', 0.11111111), ('see', 0.11111111), ('monday', 0.11111111), ('2', 0.11111111), ('phillip', 0.11111111)]",I,0.1111111
450,450,444,"['andrew', 'here', 'asset', 'statement', 'I', 'mail', '98', '99', 'tax', 'return', 'plu', '2000', 'W2', 'Is', 'suffici', 'phillip', 'allen', '7138537041', 'wk', '7134638626', 'home']","[('2000', 0.04761905), ('plu', 0.04761905), ('7134638626', 0.04761905), ('wk', 0.04761905), ('7138537041', 0.04761905), ('allen', 0.04761905), ('phillip', 0.04761905), ('suffici', 0.04761905), ('Is', 0.04761905), ('W2', 0.04761905)]",2000,0.0476190
451,451,445,"['lee', 'can', 'provid', 'copi', 'origin', 'loan', 'copi', 'origin', 'apprais', 'My', 'fax', 'number', '7136462391', 'mail', 'address', '8855', 'merlin', 'Ct', 'houston', 'TX', '77055', 'thank', 'phillip', 'allen']","[('copi', 0.06521742), ('origin', 0.06521742), ('TX', 0.04347826), ('thank', 0.04347826), ('Ct', 0.04347826), ('houston', 0.04347826), ('8855', 0.04347826), ('7136462391', 0.04347826), ('77055', 0.04347826), ('phillip', 0.04347826)]",copi,0.0652174
452,452,446,"['I', 'told', 'fax', 'loan', 'applic', 'I', 'send', 'attach', 'backup', 'also', 'need', 'provid', 'current', 'rent', 'roll', '1999', '2000', 'oper', 'histori', 'incom', 'expens', 'call', 'need', 'help', 'thank', 'lee', 'odonnel', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'thursday', 'februari', '15', '2001', '1134', 'AM', 'To', 'lodonnellspbankcom', 'subject', 'lee', 'My', 'fax', 'number', '7136462391', 'pleas', 'fax', 'loan', 'applic', 'I', 'pa', 'buyer', 'phillip', 'allen', 'pallenenroncom', '7138537041', 'copi', 'loan', 'apptif', 'copi', 'multifamili', 'form']","[('fax', 0.033898346), ('loan', 0.033898346), ('I', 0.033898346), ('copi', 0.025423741), ('lee', 0.02542374), ('applic', 0.02542374), ('need', 0.02542374), ('lodonnellspbankcom', 0.016949147), ('phillip', 0.016949147), ('sent', 0.016949147)]",fax,0.03389834
453,453,447,"['forward', 'reg', 'dickson', 'resum', 'ted', 'bland', 'consider', 'trade', 'track', 'program', 'He', 'overqualifi', 'Im', 'sure', 'expens', 'fill', 'schedul', 'posit', 'I', 'avail', 'I', 'work', 'courni', 'parker', 'evalu', 'resum', 'phillip']","[('resum', 0.057692327), ('I', 0.057692327), ('avail', 0.038461536), ('courni', 0.038461536), ('schedul', 0.038461536), ('posit', 0.038461536), ('expens', 0.038461536), ('evalu', 0.038461536), ('parker', 0.038461536), ('work', 0.038461536)]",resum,0.05769232
454,454,448,"['luci', 'thank', 'clear', '22', 'file', 'move', '29', 'question', '1', 'It', 'look', 'like', 'miss', '12629', '110', 'I', 'cant', 'tell', 'still', 'owe', '47', 'deposit', '13', 'I', 'show', 'miss', 'rent', '126', 'still', 'owe', '140', '15', 'tri', 'follow', 'toma', '95', 'hope', 'wont', 'bad', 'reaction', '20b', 'miss', 'rent', '26', 'ha', 'paid', 'deposit', 'rent', '27', 'miss', 'rent']","[('miss', 0.054347906), ('rent', 0.054347906), ('owe', 0.03260871), ('still', 0.03260871), ('I', 0.03260871), ('deposit', 0.03260871), ('ha', 0.021739125), ('paid', 0.021739125), ('140', 0.021739125), ('26', 0.021739125)]",miss,0.05434790
455,455,449,"['lee', 'My', 'fax', 'number', '7136462391', 'pleas', 'fax', 'loan', 'applic', 'I', 'pa', 'buyer', 'phillip', 'allen', 'pallenenroncom', '7138537041']","[('fax', 0.096774206), ('pa', 0.06451613), ('applic', 0.06451613), ('pallenenroncom', 0.06451613), ('allen', 0.06451613), ('phillip', 0.06451613), ('buyer', 0.06451613), ('lee', 0.06451613), ('I', 0.06451613), ('number', 0.06451613)]",fax,0.09677420
456,456,450,"['luci', 'here', '22', 'rentrol', 'the', 'total', 'equal', 'bank', 'deposit', 'your', 'earlier', 'respons', 'answer', 'question', '3111520a', '35', 'but', 'deposit', '495', 'rentrol', 'add', 'If', 'answer', 'question', 'lie', 'apart', '113', '14', 'updat', 'file', 'send', 'back', 'now', 'I', 'go', 'work', 'rentrol', 'friday', 'I', 'probabl', 'send', 'question', '29', 'rentrol', 'let', 'get', 'stuff', 'clean', 'today', 'phillip']","[('rentrol', 0.05494513), ('question', 0.043956082), ('I', 0.032967042), ('deposit', 0.032967042), ('answer', 0.032967042), ('send', 0.032967042), ('work', 0.021978017), ('file', 0.021978017), ('probabl', 0.021978017), ('go', 0.021978017)]",rentrol,0.0549451
457,457,451,"['I', 'msn', 'messeng']","[('I', 0.33333334), ('msn', 0.33333334), ('messeng', 0.33333334)]",I,0.3333333
458,458,452,"['As', 'discuss', 'california', 'confer', 'call', 'morn', 'I', 'prepar', 'bulletpoint', 'summari', 'cera', 'special', 'report', 'titl', 'beyond', 'california', 'power', 'crisi', 'impact', 'solut', 'lessonsif', 'question', 'phone', 'number', '713', '8533170', 'robert']","[('california', 0.0566038), ('lessonsif', 0.03773585), ('phone', 0.03773585), ('crisi', 0.03773585), ('impact', 0.03773585), ('solut', 0.03773585), ('beyond', 0.03773585), ('question', 0.03773585), ('8533170', 0.03773585), ('713', 0.03773585)]",california,0.056603
459,459,453,"['greg', 'the', 'kid', 'typic', 'toy', 'game', 'justin', 'like', 'power', 'ranger', 'stuff', 'kelsey', 'realli', 'like', 'art', 'book', 'would', 'also', 'good', 'We', 'spend', 'christma', 'houston', 'heather', 'sister', 'We', 'plan', 'come', 'san', 'marco', 'new', 'year', 'how', 'long', 'stay', 'plan', 'email', 'latest', 'happen', 'big', 'citi', 'keith']","[('We', 0.03703706), ('plan', 0.03703706), ('like', 0.03703706), ('year', 0.024691358), ('long', 0.024691358), ('sister', 0.024691358), ('come', 0.024691358), ('san', 0.024691358), ('marco', 0.024691358), ('new', 0.024691358)]",We,0.0370370
460,460,454,"['thank', 'websit']","[('thank', 0.5), ('websit', 0.5)]",thank,0.
461,461,457,"['phillip', 'volum', 'aec', 'consid', 'sell', 'opal', 'next', 'five', 'year', 'the', 'structur', 'look', 'firm', 'physic', 'sale', 'nymex', 'relat', 'price', 'there', 'good', 'chanc', 'one', 'parti', 'We', 'definit', 'consid', 'parti', 'given', 'seen', 'marketplac', 'may', 'one', 'produc', 'will', 'sell', 'long', 'date', 'physic', 'ga', 'size', 'kern', 'river', 'what', 'would', 'bid', 'ga', 'forward', 'mark', 'whittnaenron', '02082001', '0313', 'PM', 'tyrel', 'harrisonect', 'sent', 'tyrel', 'harrisonect', '02082001', '0312', 'PM', 'To', 'mark', 'whittnaenronenron', 'cc', 'subject', 'aec', 'volum', 'opal']","[('harrisonect', 0.02459018), ('PM', 0.02459018), ('volum', 0.02459018), ('parti', 0.02459018), ('one', 0.02459018), ('mark', 0.02459018), ('02082001', 0.02459018), ('physic', 0.02459018), ('tyrel', 0.02459018), ('ga', 0.02459018)]",harrisonect,0.0245901
462,462,458,"['thi', 'probabl', 'research', 'If', 'realli', 'build', 'mani', 'plant', 'could', 'huge', 'impact', 'cal', 'border', 'basi', 'obvious', 'depend', 'capac', 'ad', 'kern', 'pgt', 'TW', 'hard', 'envis', 'enough', 'subscript', 'meet', 'demand', 'even', 'subscrib', 'take', '18', 'month', '2', 'year', 'build', 'new', 'pipe', 'therefor', 'El', 'paso', '12', 'bcfd', 'could', 'even', 'valuabl', 'mark', 'forward', 'mark', 'whittnaenron', '02092001', '0304', 'PM', 'tyrel', 'harrisonect', 'sent', 'tyrel', 'harrisonect', '02092001', '0926', 'AM', 'To', 'barri', 'tycholiznaenronenron', 'mark', 'whittnaenronenron', 'paul', 'T', 'luccinaenronenron', 'kim', 'wardhouectect', 'stephani', 'millercorpenronenron', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'california', 'ga', 'demand', 'growth', 'If', 'wish', 'run', 'sensit', 'heat', 'rate', 'daili', 'dispatch', 'I', 'attach', 'spreadsheet', 'tyrel', '303', '575', '6478']","[('mark', 0.022099495), ('tyrel', 0.022099495), ('02092001', 0.016574603), ('harrisonect', 0.016574603), ('If', 0.016574603), ('build', 0.016574603), ('demand', 0.016574603), ('even', 0.016574603), ('could', 0.016574603), ('kim', 0.011049721)]",mark,0.02209949
463,463,459,"['luci', 'here', 'draft', 'memo', 'distribut', 'unit', 'subject', 'cap', 'I', 'wrote', 'It', 'come', 'manag', 'It', 'import', 'tell', 'new', 'tenant', 'util', 'cap', 'unit', 'move', 'thi', 'need', 'written', 'leas', 'when', 'talk', 'tenant', 'complain', 'overag', 'emphas', 'peak', 'month', 'alreadi', 'warm', 'have', 'dad', 'read', 'memo', 'put', 'you', 'guy', 'make', 'chang', 'need', 'next', 'week', 'need', 'take', 'inventori', 'air', 'condition', 'refriger', 'We', 'get', 'done', 'next', 'week', 'I', 'email', 'form', 'use', 'record', 'serial', 'number', 'the', 'prospect', 'buyer', 'want', 'inform', 'plu', 'need', 'record', 'someth', 'look', 'forward', 'It', '2', 'PM', 'I', 'leav', 'offic', 'pleas', 'dad', 'call', 'inform', 'unit', 'home', '7134638626', 'He', 'know', 'I', 'mean', 'talk', 'later', 'phillip']","[('I', 0.028571498), ('need', 0.028571498), ('It', 0.022857184), ('unit', 0.022857184), ('inform', 0.01714287), ('record', 0.01714287), ('dad', 0.01714287), ('cap', 0.01714287), ('tenant', 0.01714287), ('memo', 0.01714287)]",I,0.02857149
464,464,460,"['I', 'send', 'Dr', 'contract', 'monday', 'deliveri', 'He', 'offer', '739000', '73900', 'He', 'want', 'u', 'finish', 'work', 'unit', 'renov', 'We', 'need', 'specifi', 'unit', 'contract', 'We', 'also', 'need', 'specifi', 'unit', 'remodel', 'I', 'think', 'good', 'buyer', 'He', 'local', 'plenti', 'cash', 'call', 'get', 'messag', 'jeff', 'smith', 'the', 'smith', 'compani', '2714', 'bee', 'cave', 'road', 'suit', '100d', 'austin', 'texa', '78746', '5127320009', '5127320010', 'fax', '5127519728', 'mobil']","[('He', 0.037735887), ('unit', 0.037735887), ('specifi', 0.028301895), ('We', 0.028301895), ('smith', 0.028301895), ('I', 0.028301895), ('need', 0.028301895), ('contract', 0.028301895), ('jeff', 0.018867917), ('bee', 0.018867917)]",He,0.03773588
465,465,461,"['luci', 'here', 'rentrol', 'friday', 'sorri', 'late', 'there', 'problem', 'rentrol', '22', '1', 'I', 'know', 'mention', 'deposit', 'would', '536065', 'bank', 'show', 'rentrol', 'add', '4865', 'the', 'miss', 'money', 'spreadsheet', 'probabl', 'answer', 'question', '2', '1', 'did', 'pay', 'rent', 'miss', '126', '3', '3', 'did', 'miss', 'rent', '126', '22', '4', '11', 'miss', '22', '5', '13', 'miss', '126', '6', '14', 'miss', '22', '7', '15', 'miss', '22', 'paid', '95', '119', '8', '20a', 'miss', '22', '9', '35', 'miss', '22', 'My', 'guess', 'paid', 'record', '22', 'rentrol', 'you', 'may', 'sent', 'messag', 'chat', 'line', 'I', 'dont', 'rememb', 'I', 'want', 'get', 'final', 'rentrol', 'tie', 'exactli', 'bank', 'deposit', 'will', 'time', 'today', 'work', 'util', 'letter', 'tri', 'call', 'wade', 'last', 'night', '530', 'couldnt', 'reach', 'will', 'tri', 'today', 'I', 'believ', 'doctor', 'seguin', 'go', 'make', 'offer', 'did', 'meet', 'If', 'think', 'phillip']","[('miss', 0.047393583), ('22', 0.042654216), ('rentrol', 0.02843611), ('I', 0.023696741), ('126', 0.01895738), ('did', 0.01895738), ('will', 0.014218016), ('bank', 0.014218016), ('tri', 0.014218016), ('today', 0.014218016)]",miss,0.04739358
466,466,462,"['I', 'email', 'updat', 'oper', 'statement', 'nov', 'dec', 'tomorrow', 'morn', 'what', 'seguin', 'doctor', 'think', 'place', 'how', 'much', 'could', 'I', 'get', 'stagecoach', 'apprais', 'Do', 'still', 'apprais', 'could', 'valu', '11', '12', 'cap']","[('apprais', 0.054545466), ('could', 0.054545466), ('I', 0.054545466), ('still', 0.03636363), ('get', 0.03636363), ('stagecoach', 0.03636363), ('how', 0.03636363), ('12', 0.03636363), ('11', 0.03636363), ('Do', 0.03636363)]",apprais,0.05454546
467,467,463,"['jacqu', 'can', 'draft', 'partnership', 'agreement', 'construct', 'contract', 'the', 'key', 'busi', 'point', '1', 'invest', 'loan', 'prime', '1', 'rate', '2', 'construct', 'contract', 'cost', 'plu', '14', 'million', '3', 'the', 'investor', 'loan', 'repaid', 'construct', 'profit', 'paid', '4', 'all', 'parti', 'gp', '3', '4', 'vote', 'need', 'major', 'decis', '5', '6040', 'split', 'favor', 'investor', 'with', 'regard', 'construct', 'contract', 'concern', 'get', 'solid', 'line', 'line', 'cost', 'estim', 'clearli', 'defin', 'constitut', 'cost', 'then', 'need', 'mechan', 'track', 'actual', 'expens', 'keith', 'I', 'would', 'like', 'overse', 'bookkeep', 'the', 'builder', 'would', 'requr', 'fax', 'invoic', 'within', '48', 'hour', 'We', 'also', 'would', 'want', 'onlin', 'access', 'check', 'account', 'partnership', 'could', 'see', 'check', 'clear', 'invoic', 'submit', 'let', 'know', 'draft', 'agreement', 'the', 'GP', 'issu', 'may', 'need', 'tweak', 'phillip', 'allen', '7138537041', 'pallenenroncom']","[('construct', 0.025125701), ('the', 0.025125701), ('need', 0.020100545), ('would', 0.020100545), ('cost', 0.020100545), ('contract', 0.020100545), ('investor', 0.015075389), ('line', 0.015075389), ('4', 0.015075389), ('loan', 0.015075389)]",construct,0.02512570
468,468,464,"['luci', 'here', 'final', '1201', 'rentrol', 'save', 'My', 'question', '1', 'neil', 'moreno', '21he', 'paid', '120', '1124', 'pay', 'anyth', '1201', 'even', 'want', 'swich', 'biweekli', 'need', 'pay', 'begin', 'two', 'week', 'period', 'what', 'go', '2', 'gilbert', '27i', 'late', 'here', 'file', '1208']","[('here', 0.04225354), ('1201', 0.04225354), ('pay', 0.04225354), ('period', 0.028169012), ('go', 0.028169012), ('need', 0.028169012), ('begin', 0.028169012), ('two', 0.028169012), ('week', 0.028169012), ('swich', 0.028169012)]",here,0.0422535
469,469,465,"['here', 'link', 'governor', 'press', 'releas', 'He', 'bill', '5000', 'MW', 'contract', 'say', '500', 'avail', 'immedi', 'with', 'remaind', 'avail', '3', '10', 'year', 'httpwwwgovernorcagovstategovsitegovhtmldisplayjspbvsessionid', '16737628790981503886bvengineidfalkdgkgfmhbemfcfkmchcng0scattitlepr', 'ssreleasesfilepathgovsitepressrelease20010220010206pr01049longtermc', 'ontractshtmlstitlegovernordavisannounceslongtermpowersupplyioid1325', '0']","[('avail', 0.061224505), ('10', 0.040816326), ('with', 0.040816326), ('remaind', 0.040816326), ('3', 0.040816326), ('httpwwwgovernorcagovstategovsitegovhtmldisplayjspbvsessionid', 0.040816326), ('year', 0.040816326), ('ontractshtmlstitlegovernordavisannounceslongtermpowersupplyioid1325', 0.040816326), ('ssreleasesfilepathgovsitepressrelease20010220010206pr01049longtermc', 0.040816326), ('500', 0.040816326)]",avail,0.06122450
470,470,466,"['north', 'america', 'corp', 'from', 'frank', 'hayden', 'enron', '02062001', '1206', 'PM', 'To', 'tim', 'beldenhouectect', 'chri', 'gaskillcorpenronenron', 'phillip', 'K', 'allenhouectect', 'john', 'J', 'lavoratocorpenron', 'kevin', 'M', 'prestohouectect', 'cc', 'lacrecia', 'davenportcorpenronenron', 'bharat', 'khannanaenronenron', 'subject', 'smelter', 'below', 'articl', 'relat', 'aluminum', 'power', 'ga', 'price', 'thought', 'would', 'interest', 'frank', 'forward', 'michael', 'pitteuenron', '06022001', '1700', 'rohan', 'ziegelaar', '30012001', '1345', 'To', 'lloyd', 'fleminglonectect', 'andrea', 'barschkiseuenronenron', 'michael', 'pitteuenronenron', 'cc', 'subject']","[('To', 0.026086973), ('michael', 0.026086973), ('frank', 0.026086973), ('cc', 0.026086973), ('subject', 0.026086973), ('would', 0.017391302), ('thought', 0.017391302), ('price', 0.017391302), ('aluminum', 0.017391302), ('ga', 0.017391302)]",To,0.02608697
471,471,467,"['send', 'ina', 'rangel', 'forward', 'appropri', 'trader', 'there', 'mani', 'list', 'individu']","[('send', 0.1), ('ina', 0.1), ('rangel', 0.1), ('forward', 0.1), ('appropri', 0.1), ('trader', 0.1), ('there', 0.1), ('mani', 0.1), ('list', 0.1), ('individu', 0.1)]",send,0.
472,472,494,"['phillip', 'I', 'wonder', 'I', 'could', 'troubl', 'anoth', 'guest', 'id', 'eol', 'In', 'previou', 'month', 'help', 'u', 'ngi', 'go', 'set', 'index', 'I', 'appreci', 'help', 'dexter']","[('I', 0.0930233), ('help', 0.069767445), ('month', 0.04651162), ('In', 0.04651162), ('appreci', 0.04651162), ('index', 0.04651162), ('set', 0.04651162), ('go', 0.04651162), ('ngi', 0.04651162), ('u', 0.04651162)]",I,0.093023
473,473,469,"['jeff', 'I', 'will', 'guarante', 'refin', '1st', 'lien', 'stage', '4', 'year', 'drop', 'rate', 'note', 'point', '8', 'there', 'sever', 'reason', 'I', 'wont', 'commit', 'exposur', 'interest', 'fluctuat', 'larg', 'cash', 'reserv', 'need', 'limit', 'financi', 'resourc', 'buyer', 'three', 'biggest', 'concern', 'what', 'I', 'will', 'lower', 'second', 'note', '8', 'amort', 'buyer', 'choic', 'term', '30', 'year', 'the', 'exist', 'note', 'come', 'due', 'septemb', '2009', 'that', 'long', 'time', 'the', 'buyer', 'may', 'sold', 'properti', 'interest', 'rate', 'may', 'lower', 'I', 'bend', 'backward', 'make', 'deal', 'work', 'attract', 'second', 'note', 'guarante', 'refin', 'push', 'far', 'can', 'clarifi', 'date', 'contract', 'Is', 'effect', 'date', 'day', 'earnest', 'money', 'receipt', 'feasibl', 'studi', 'complet', 'hope', 'buyer', 'live', 'term', 'I', 'got', 'fax', 'new', 'braunfel', 'buyer', 'If', 'cant', 'come', 'term', 'first', 'buyer', 'I', 'get', 'start', 'list', 'email', 'call', 'later', 'today', 'phillip']","[('buyer', 0.033333473), ('I', 0.033333473), ('note', 0.023809595), ('term', 0.01904766), ('lower', 0.0142857265), ('second', 0.0142857265), ('interest', 0.0142857265), ('date', 0.0142857265), ('the', 0.0142857265), ('come', 0.0142857265)]",buyer,0.03333347
474,474,470,"['susan', 'rais', 'issu', 'salli', 'beck', 'larri', 'go', 'spend', 'time', 'see', 'live', 'without', 'report', 'also', 'IT', 'help', 'way', 'phillip']","[('live', 0.055555552), ('time', 0.055555552), ('way', 0.055555552), ('help', 0.055555552), ('IT', 0.055555552), ('also', 0.055555552), ('report', 0.055555552), ('without', 0.055555552), ('susan', 0.055555552), ('see', 0.055555552)]",live,0.05555555
475,475,471,"['when', 'meet', 'I', 'would', 'like', 'address', 'follow', 'issu', '1', 'I', 'least', '5', 'peopl', 'past', 'midnight', 'night', 'I', 'sever', 'peopl', 'left', '1030', 'week', '2', 'It', 'understand', 'susan', 'still', 'book', 'new', 'day', 'deal', 'thursday', 'night', '830', 'bc', 'get', 'deal', 'ticket', 'trade', 'floor', '500', 'pm', '3', 'It', 'also', 'understand', 'susan', 'done', 'pl', 'benchmark', 'part', 'book', 'often', 'time', '600', 'keep', 'late', 'usual', 'run', 'numer', 'extra', 'model', 'spreadsheet', 'one', 'suggest', 'might', 'perman', 'IT', 'person', 'book', 'thi', 'also', 'understand', 'kyle', 'etter', 'left', 'compani', 'I', 'would', 'like', 'get', 'resolv', 'soon', 'possibl', 'larri', 'get', 'inform', 'need', 'effect', 'run', 'book', 'like', 'lose', 'good', 'peopl', 'thank', 'larri', 'mayenron', '02022001', '0243', 'PM', 'To', 'salli', 'beckhouectect', 'jeffrey', 'C', 'gossetthouectect', 'susan', 'M', 'scotthouectect', 'errol', 'mclaughlincorpenronenron', 'cc', 'phillip', 'K', 'allenhouectect', 'john', 'arnoldhouectect', 'subject', 'book', 'admin', 'pipega', 'daili', 'option', 'book', 'As', 'might', 'awar', 'susan', 'scott', 'book', 'admin', 'pipe', 'option', 'book', 'forc', 'system', 'problem', 'stay', 'night', 'wednesday', 'night', '200', 'friday', 'order', 'calc', 'book', 'while', 'schedul', 'rotat', 'west', 'desk', 'soon', 'I', 'think', 'need', 'discu', 'put', 'two', 'person', 'book', 'order', 'bring', 'work', 'load', 'sustain', 'level', 'Id', 'like', 'meet', '230', 'pm', 'monday', 'discu', 'issu', 'pleas', 'let', 'know', 'time', 'fit', 'schedul', 'thank', 'larri']","[('book', 0.034810394), ('I', 0.018987441), ('susan', 0.015822854), ('like', 0.015822854), ('night', 0.015822854), ('peopl', 0.0126582645), ('larri', 0.0126582645), ('get', 0.0126582645), ('understand', 0.0126582645), ('time', 0.009493681)]",book,0.03481039
476,476,472,"['on', 'I', 'last', 'week', 'rent', '15', 'onli', 'paid', '95', '190', '119', 'paid', 'noth', '126', 'what', 'go', '25', 'look', 'like', 'short', '35', 'still', 'owe', 'littl', 'deposit', '27', 'switch', 'weekli', 'paid', 'noth', 'week', 'whi', 'I', 'spoke', 'jeff', 'smith', 'I', 'think', 'surpris', 'set', 'email', 'msn', 'messeng', 'He', 'tri', 'insult', 'I', 'let', 'jeff', 'know', 'tri', 'meet', 'prospect', 'buyer', 'come', 'see', 'properti', 'occasion', 'buyer', 'might', 'stop', 'buy', 'without', 'jeff', 'show', 'around', 'let', 'know', 'nice', 'quiet', 'well', 'maintain', 'place', 'regard', 'rais', '260week', 'plu', 'apart', 'I', 'pay', 'right', 'I', 'increas', 'pay', 'last', 'year', 'quickli', 'could', 'make', 'end', 'meet', 'I', 'think', 'wage', 'equat', '10hr', 'fair', 'As', 'gari', 'wade', 'continu', 'improv', 'properti', 'I', 'need', 'tri', 'improv', 'properti', 'tenant', 'reput', 'the', 'apart', 'look', 'better', 'better', 'yet', 'turnov', 'seem', 'increas', 'rememb', 'manag', 'need', 'set', 'exampl', 'tenant', 'It', 'hard', 'tell', 'tenant', 'suppos', 'extra', 'peopl', 'move', 'leas', 'manag', 'hous', 'guest', 'I', 'realiz', 'lot', 'issu', 'take', 'son', 'doctor', 'daughter', 'teenag', 'need', 'put', '40', 'hour', 'work', 'offic', 'properti', 'offic', 'unless', 'run', 'errand', 'properti', 'I', 'upset', 'ask', 'rais', 'answer', 'time', 'We', 'look', 'later', 'year', 'I', 'talk', 'later', 'email', 'call', 'weekend', 'phillip']","[('I', 0.039473984), ('properti', 0.01973694), ('tenant', 0.013157929), ('paid', 0.013157929), ('need', 0.013157929), ('jeff', 0.013157929), ('look', 0.013157929), ('tri', 0.013157929), ('better', 0.00986843), ('meet', 0.00986843)]",I,0.03947398
477,477,473,"['luci', 'pleas', 'fix', '41', 'balanc', 'delet', '550', 'rent', 'due', 'column', 'the', 'question', 'I', 'last', 'week', 'rent', '15', 'onli', 'paid', '95', '190', '119', 'paid', 'noth', '126', 'what', 'go', '25', 'look', 'like', 'short', '35', 'still', 'owe', 'littl', 'deposit', '27', 'switch', 'weekli', 'paid', 'noth', 'week', 'whi', 'I', 'spoke', 'jeff', 'smith', 'I', 'think', 'surpris', 'set', 'email', 'msn', 'messeng', 'He', 'tri', 'insult', 'I', 'let', 'jeff', 'know', 'tri', 'meet', 'prospect', 'buyer', 'come', 'see', 'properti', 'occasion', 'buyer', 'might', 'stop', 'buy', 'without', 'jeff', 'show', 'around', 'let', 'know', 'nice', 'quiet', 'well', 'maintain', 'place', 'regard', 'rais', '260week', 'plu', 'apart', 'I', 'pay', 'right', 'I', 'increas', 'pay', 'last', 'year', 'quickli', 'could', 'make', 'end', 'meet', 'I', 'think', 'wage', 'equat', '10hr', 'fair', 'As', 'gari', 'wade', 'continu', 'improv', 'properti', 'I', 'need', 'tri', 'improv', 'properti', 'tenant', 'reput', 'the', 'apart', 'look', 'better', 'better', 'yet', 'turnov', 'seem', 'increas', 'rememb', 'manag', 'need', 'set', 'exampl', 'tenant', 'It', 'hard', 'tell', 'tenant', 'suppos', 'extra', 'peopl', 'move', 'leas', 'manag', 'hous', 'guest', 'I', 'realiz', 'lot', 'issu', 'take', 'son', 'doctor', 'daughter', 'teenag', 'need', 'put', '40', 'hour', 'work', 'offic', 'properti', 'offic', 'unless', 'run', 'errand', 'properti', 'I', 'upset', 'ask', 'rais', 'answer', 'time', 'We', 'look', 'later', 'year', 'I', 'talk', 'later', 'email', 'call', 'weekend', 'phillip']","[('I', 0.037037335), ('properti', 0.018518621), ('need', 0.012345716), ('tri', 0.012345716), ('jeff', 0.012345716), ('paid', 0.012345716), ('look', 0.012345716), ('tenant', 0.012345716), ('offic', 0.00925927), ('let', 0.00925927)]",I,0.03703733
478,478,474,"['from', 'phillip', 'K', 'allen', '01312001', '0123', 'PM', 'To', 'cbpresaustinrrcom', 'cc', 'llewteraustinrrcom', 'subject']","[('To', 0.08333334), ('0123', 0.08333334), ('llewteraustinrrcom', 0.08333334), ('cc', 0.08333334), ('cbpresaustinrrcom', 0.08333334), ('from', 0.08333334), ('PM', 0.08333334), ('K', 0.08333334), ('allen', 0.08333334), ('phillip', 0.08333334)]",To,0.0833333
479,479,475,"['12072000', '0838', 'AM', 'carla', 'hoffman', '12072000', '0619', 'AM', 'To', 'tim', 'beldenhouectect', 'robert', 'badeerhouectect', 'jeff', 'richterhouectect', 'phillip', 'platterhouectect', 'mike', 'swerzbinhouectect', 'diana', 'scholteshouectect', 'sean', 'crandallpdxectect', 'matt', 'motleypdxectect', 'mark', 'guzmanpdxectect', 'tom', 'alonsopdxectect', 'mark', 'fischerpdxectect', 'monica', 'landepdxectect', 'cc', 'subject', 'DJ', 'caliso', 'pay', '10m', 'To', 'avoid', 'roll', 'blackout', 'wed', 'sourc', 'DJ', 'calif', 'iso', 'puc', 'inspect', 'offlin', 'duke', 'south', 'bay', 'pwr', 'plant', 'DJ', 'calif', 'regula', 'tor', 'visit', 'aesdynegi', 'offlin', 'power', 'plant', 'forward', 'carla', 'hoffmanpdxect', '12072000', '0629', 'AM', 'enron', 'capit', 'trade', 'resourc', 'corp', 'from', 'pergher', 'gunther', 'guntherpergherdowjonescom', '12072000', '0611', 'AM', 'To', 'undisclosedrecipi', 'cc', 'subject', 'DJ', 'caliso', 'pay', '10m', 'To', 'avoid', 'roll', 'blackout', 'wed', 'sourc', 'DJ', 'calif', 'iso', 'puc', 'inspect', 'offlin', 'duke', 'south', 'bay', 'pwr', 'plant', 'DJ', 'calif', 'regula', 'tor', 'visit', 'aesdynegi', 'offlin', 'power', 'plant', '1318', 'gmt', '7', 'decemb', '2000', 'DJ', 'caliso', 'pay', '10m', 'To', 'avoid', 'roll', 'blackout', 'wed', 'sourc', 'thi', 'articl', 'origin', 'publish', 'wednesday', 'lo', 'angel', 'dow', 'jonesth', 'california', 'independ', 'system', 'oper', 'paid', '10', 'million', 'wednesday', '1000', 'megawatt', 'power', 'powerex', 'still', 'face', 'massiv', 'deficit', 'threaten', 'electr', 'reliabl', 'state', 'highrank', 'market', 'sourc', 'familiar', 'iso', 'oper', 'told', 'dow', 'jone', 'newswir', 'but', 'iso', 'fell', 'short', 'order', 'roll', 'blackout', 'wednesday', 'third', 'consecut', 'day', 'the', 'iso', 'wouldnt', 'comment', 'transact', 'say', 'sensit', 'market', 'inform', 'but', 'sourc', 'said', 'powerex', 'subsidiari', 'british', 'columbia', 'hydro', 'power', 'author', 'xbch', 'energi', 'compani', 'northwest', 'region', 'abund', 'suppli', 'electr', 'spare', 'iso', 'paid', '900', 'megawatthour', 'earli', 'afternoon', 'even', 'but', 'still', 'wasnt', 'enough', 'juic', 'the', 'lo', 'angel', 'depart', 'water', 'power', 'sold', 'iso', '1200', 'megawatt', 'power', 'later', 'day', 'wholesal', 'electr', 'price', 'cap', 'rate', '250mwh', 'the', 'ladwp', 'govern', 'iso', 'need', '3800', 'megawatt', 'power', 'serv', 'custom', 'It', 'free', 'sell', 'power', 'instat', '250mwh', 'price', 'cap', 'the', 'ladwp', 'vocal', 'amount', 'power', 'spare', 'the', 'municip', 'util', 'also', 'reap', 'huge', 'profit', 'sell', 'excess', 'power', 'grid', 'suppli', 'tight', 'price', 'high', 'howev', 'ladwp', 'name', 'defend', 'civil', 'lawsuit', 'alleg', 'price', 'goug', 'the', 'suit', 'claim', 'ladwp', 'sell', 'power', 'get', 'feder', 'bonnevil', 'power', 'administr', 'sell', 'hydropow', 'cheap', 'rate', 'back', 'market', 'price', '10', 'time', 'higher', 'powerex', 'offici', 'wouldnt', 'comment', 'iso', 'power', 'sale', 'say', 'transact', 'proprietari', 'but', 'compani', 'also', 'sold', 'iso', '1000', 'megawatt', 'tuesday', 'minut', 'iso', 'declar', 'roll', 'blackout', '1100', 'megawatthour', 'market', 'sourc', 'said', 'the', 'iso', 'whose', 'main', 'job', 'keep', 'electr', 'flow', 'throughout', 'state', 'matter', 'cost', 'start', 'day', 'stagetwo', 'power', 'emerg', 'mean', 'oper', 'reserv', 'fell', 'le', '5', 'the', 'iso', 'compet', 'investorown', 'util', 'northwest', 'will', 'pay', 'higher', 'price', 'power', 'region', 'price', 'cap', 'the', 'iso', 'warn', 'feder', 'regul', 'gener', 'util', 'wednesday', 'confer', 'call', 'would', 'call', 'stagethre', 'power', 'emerg', 'wednesday', 'wouldnt', 'order', 'roll', 'blackout', 'A', 'stage', 'three', 'declar', 'iso', 'oper', 'reserv', 'fall', 'le', '15', 'power', 'interrupt', 'statewid', 'basi', 'keep', 'grid', 'collaps', 'but', 'iso', 'spokesman', 'patrick', 'dorinson', 'said', 'would', 'call', 'stage', 'three', 'mean', 'attract', 'addit', 'electr', 'resourc', 'In', 'order', 'line', 'power', 'dire', 'situat', 'dorinson', 'said', 'edison', 'intern', 'unit', 'eix', 'southern', 'california', 'edison', 'sempra', 'energi', 'unit', 'sre', 'san', 'diego', 'ga', 'electr', 'pge', 'corp', 'pcg', 'unit', 'pacif', 'ga', 'electr', 'sever', 'municip', 'util', 'state', 'share', 'cost', 'highpric', 'power', 'socal', 'edison', 'pge', 'face', 'debt', '6', 'billion', 'due', 'high', 'wholesal', 'electr', 'cost', 'the', 'util', 'debt', 'week', 'could', 'grow', 'nearli', '1', 'billion', 'analyst', 'said', 'it', 'still', 'unclear', 'whether', 'retail', 'custom', 'forc', 'pay', 'debt', 'higher', 'electr', 'rate', 'compani', 'absorb', 'cost', 'By', 'jason', 'leopold', 'dow', 'jone', 'newswir', '3236583874', 'jasonleopolddowjonescom', 'end', 'dow', 'jone', 'newswir', '071200', '1318gmt', 'copyright', 'c', '2000', 'dow', 'jone', 'compani', 'inc', '1317', 'gmt', '7', 'decemb', '2000', 'DJ', 'calif', 'iso', 'puc', 'inspect', 'offlin', 'duke', 'south', 'bay', 'pwr', 'plant', 'thi', 'articl', 'origin', 'publish', 'wednesday', 'lo', 'angel', 'dow', 'jonesrepres', 'california', 'independ', 'system', 'oper', 'public', 'util', 'commiss', 'inspect', 'duke', 'energi', 'corp', 'duk', 'offlin', '700mw', 'south', 'bay', 'power', 'plant', 'chula', 'vista', 'calif', 'wednesday', 'morn', 'duke', 'spokesman', 'said', 'the', 'iso', 'puc', 'inspect', 'offlin', 'power', 'plant', 'state', 'sinc', 'tuesday', 'even', 'verifi', 'plant', 'shut', 'reason', 'gener', 'say', 'iso', 'spokesman', 'pat', 'dorinson', 'said', 'about', '11000', 'MW', 'power', 'state', 'power', 'grid', 'sinc', 'monday', '7000', 'MW', 'offlin', 'unplan', 'mainten', 'accord', 'iso', 'the', 'iso', 'manag', 'grid', 'reliabl', 'As', 'previous', 'report', 'iso', 'told', 'util', 'feder', 'energi', 'regulatori', 'commiss', 'wednesday', 'would', 'call', 'stage', 'three', 'power', 'alert', '5', 'PM', 'pst', '0100', 'gmt', 'thursday', 'mean', 'power', 'reserv', 'state', 'would', 'dip', '15', 'roll', 'blackout', 'could', 'implement', 'avoid', 'grid', 'collaps', 'howev', 'iso', 'said', 'action', 'wouldnt', 'result', 'roll', 'blackout', 'the', 'iso', 'puc', 'also', 'inspect', 'tuesday', 'plant', 'own', 'dynegi', 'inc', 'dyn', 'reliant', 'energi', 'inc', 'rei', 'southern', 'energi', 'inc', 'soe', 'duke', '1500mw', 'moss', 'land', 'plant', 'also', 'inspect', 'puc', 'repres', 'june', 'unit', 'offlin', 'repair', 'duke', 'spokesman', 'said', 'By', 'jessica', 'berthold', 'dow', 'jone', 'newswir', '3236583872', 'jessicabertholddowjonescom', 'end', 'dow', 'jone', 'newswir', '071200', '1317gmt', 'copyright', 'c', '2000', 'dow', 'jone', 'compani', 'inc', '1317', 'gmt', '7', 'decemb', '2000', 'DJ', 'calif', 'regul', 'visit', 'aesdynegi', 'offlin', 'power', 'plant', 'thi', 'articl', 'origin', 'publish', 'wednesday', 'By', 'jessica', 'berthold', 'Of', 'dow', 'jone', 'newswir', 'lo', 'angel', 'dow', 'jonesa', 'corp', 'ae', 'dynegi', 'inc', 'dyn', 'said', 'wednesday', 'repres', 'california', 'power', 'offici', 'stop', 'power', 'plant', 'verifi', 'line', 'legitim', 'reason', 'the', 'california', 'independ', 'system', 'oper', 'manag', 'state', 'power', 'grid', 'one', 'wholesal', 'power', 'market', 'california', 'public', 'util', 'commiss', 'began', 'onsit', 'inspect', 'tuesday', 'night', 'power', 'plant', 'state', 'report', 'unplan', 'outag', 'forc', 'shutdown', 'iso', 'spokesman', 'pat', 'dorinson', 'said', 'the', 'state', '11000', 'MW', 'grid', 'sinc', 'monday', '7000', 'MW', 'unplan', 'mainten', 'the', 'iso', 'wednesday', 'call', 'stage', '2', 'power', 'emerg', 'third', 'consecut', 'day', 'mean', 'power', 'reserv', '5', 'custom', 'agre', 'cut', 'power', 'exchang', 'reduc', 'rate', 'may', 'call', 'As', 'report', 'earlier', 'reliant', 'energi', 'rei', 'southern', 'energi', 'inc', 'soe', 'said', 'visit', 'repres', 'iso', 'puc', 'tuesday', 'even', 'repres', 'two', 'organ', 'also', 'visit', 'plant', 'own', 'ae', 'dynegi', 'tuesday', 'even', 'ae', 'told', 'visitor', 'couldnt', 'perform', 'unannounc', 'full', 'inspect', 'compani', '450megawatt', 'huntington', 'beach', 'power', 'station', 'wednesday', 'morn', 'plant', 'full', 'staff', 'would', 'present', 'ae', 'spokesman', 'aaron', 'thoma', 'said', 'thoma', 'well', 'iso', 'spokesman', 'didnt', 'know', 'whether', 'repres', 'return', 'wednesday', 'full', 'inspect', 'ae', 'unit', 'down', 'due', 'To', 'expir', 'emiss', 'credit', 'the', 'huntington', 'beach', 'facil', 'unit', 'two', 'ae', 'facil', 'use', 'nitrogen', 'oxid', 'nox', 'emiss', 'credit', 'they', 'taken', 'two', 'week', 'ago', 'respons', 'request', 'south', 'coast', 'air', 'qualiti', 'manag', 'district', 'stay', 'line', 'emiss', 'control', 'deploy', 'thoma', 'said', 'ae', '2000', 'MW', 'half', 'maximum', 'output', 'line', 'the', 'entir', 'huntington', 'plant', 'line', '1500', 'MW', 'worth', 'unit', 'alamito', 'redondo', 'beach', 'plant', 'the', 'iso', 'ask', 'ae', 'return', 'line', 'plant', 'oper', 'ae', 'refus', 'concern', 'air', 'qualiti', 'district', 'fine', 'compani', '20', 'million', 'pollut', 'wed', 'happi', 'put', 'unit', 'back', 'provid', 'dont', 'get', 'su', 'thoma', 'said', 'it', 'clear', 'u', 'iso', 'trump', 'air', 'qualiti', 'district', 'author', 'As', 'report', 'spokesman', 'air', 'qualiti', 'district', 'said', 'tuesday', 'ae', 'could', 'elect', 'buy', 'emiss', 'credit', 'could', 'run', 'line', 'plant', 'case', 'power', 'emerg', 'choos', 'dynegi', 'El', 'segundo', 'plant', 'also', 'visit', 'By', 'puc', 'dynegi', 'inc', 'dyn', 'said', 'puc', 'visit', '1200', 'MW', 'El', 'segundo', 'plant', 'tuesday', 'even', 'two', 'four', 'unit', '600', 'MW', 'worth', 'line', 'wednesday', 'I', 'guess', 'posit', 'gee', 'sorri', 'dont', 'believ', 'u', 'need', 'come', 'take', 'look', 'that', 'fine', 'said', 'dynegi', 'spokesman', 'lynn', 'lednicki', 'lednicki', 'said', 'one', 'two', 'unit', 'line', 'plan', 'mainten', 'unplan', 'mainten', 'boiler', 'feedwat', 'pump', 'could', 'pose', 'safeti', 'hazard', 'repair', 'weve', 'get', 'back', 'servic', 'lednicki', 'said', 'We', 'even', 'paid', 'special', 'equip', 'expedit', 'lednicki', 'ad', 'puc', 'seem', 'satisfi', 'dynegi', 'explan', 'unit', 'line', 'By', 'jessica', 'berthold', 'dow', 'jone', 'newswir', '3236583872', 'jessicabertholddowjonescom', 'end', 'dow', 'jone', 'newswir', '071200', '1317gmt', 'copyright', 'c', '2000', 'dow', 'jone', 'compani', 'inc', 'gnther', 'A', 'pergher', 'senior', 'analyst', 'dow', 'jone', 'compani', 'inc', 'tel', '6095207067', 'fax', '6094523531', 'the', 'inform', 'transmit', 'intend', 'person', 'entiti', 'address', 'may', 'contain', 'confidenti', 'andor', 'privileg', 'materi', 'ani', 'review', 'retransmiss', 'dissemin', 'use', 'take', 'action', 'relianc', 'upon', 'inform', 'person', 'entiti', 'intend', 'recipi', 'prohibit', 'If', 'receiv', 'error', 'pleas', 'contact', 'sender', 'delet', 'materi', 'comput']","[('power', 0.02210359), ('iso', 0.018519202), ('plant', 0.013142627), ('said', 0.01254523), ('the', 0.01254523), ('dow', 0.009558242), ('wednesday', 0.008960847), ('jone', 0.007766054), ('unit', 0.007168655), ('offlin', 0.006571259)]",power,0.0221035
480,480,476,"['As', 'might', 'awar', 'susan', 'scott', 'book', 'admin', 'pipe', 'option', 'book', 'forc', 'system', 'problem', 'stay', 'night', 'wednesday', 'night', '200', 'friday', 'order', 'calc', 'book', 'while', 'schedul', 'rotat', 'west', 'desk', 'soon', 'I', 'think', 'need', 'discu', 'put', 'two', 'person', 'book', 'order', 'bring', 'work', 'load', 'sustain', 'level', 'Id', 'like', 'meet', '230', 'pm', 'monday', 'discu', 'issu', 'pleas', 'let', 'know', 'time', 'fit', 'schedul', 'thank', 'larri']","[('book', 0.045871638), ('night', 0.027522951), ('schedul', 0.027522951), ('order', 0.027522951), ('discu', 0.027522951), ('load', 0.01834862), ('bring', 0.01834862), ('sustain', 0.01834862), ('thank', 0.01834862), ('fit', 0.01834862)]",book,0.04587163
481,481,477,"['susan', 'hour', 'hand', 'We', 'need', 'find', 'solut', 'let', 'meet', 'monday', 'ass', 'issu', 'phillip']","[('let', 0.07692308), ('solut', 0.07692308), ('issu', 0.07692308), ('ass', 0.07692308), ('monday', 0.07692308), ('meet', 0.07692308), ('susan', 0.07692308), ('hand', 0.07692308), ('need', 0.07692308), ('hour', 0.07692308)]",let,0.0769230
482,482,478,"['got', 'email', 'I', 'let', 'jacqu', 'know', 'I', 'guess', 'work', 'finer', 'point', 'next', 'week', 'the', 'bank', 'houston', 'deal', 'auditor', 'week', 'unfortun', 'I', 'hear', 'week', 'the', 'promis', 'feedback', 'monday', 'I', 'let', 'know', 'soon', 'I', 'hear', 'phillip']","[('I', 0.10344837), ('week', 0.068965554), ('hear', 0.051724143), ('the', 0.051724143), ('let', 0.051724143), ('know', 0.051724143), ('auditor', 0.03448275), ('unfortun', 0.03448275), ('deal', 0.03448275), ('feedback', 0.03448275)]",I,0.1034483
483,483,479,"['georg', 'the', 'probabl', 'build', 'hous', 'year', 'increas', 'I', 'shift', 'slightli', 'differ', 'plan', 'there', 'mani', 'design', 'item', 'I', 'could', 'work', 'plan', 'discuss', 'previous', 'now', 'I', 'lean', 'toward', 'plan', 'two', 'wing', 'cover', 'courtyard', 'center', 'one', 'wing', 'would', 'livingdin', 'kitchen', 'plu', 'master', 'bedroom', 'downstair', '3', 'kid', 'bedroom', 'laundri', 'room', 'upstair', 'the', 'wing', 'would', 'garag', 'guestroom', 'downstair', 'game', 'room', 'officeexercis', 'room', 'upstair', 'thi', 'plan', 'still', 'number', 'room', 'plan', 'courtyard', 'pool', 'center', 'plan', 'promot', 'outdoor', 'live', 'I', 'plan', 'orient', 'hous', 'garag', 'face', 'west', 'the', 'center', 'courtyard', 'would', 'cover', 'metal', 'roof', 'fiberglass', 'skylight', 'support', 'metal', 'post', 'I', 'envis', 'two', 'wing', 'singl', 'slope', 'roof', 'connect', 'center', 'build', 'I', 'dont', 'know', 'imagin', 'hous', 'I', 'tri', 'describ', 'I', 'would', 'like', 'come', 'visit', 'month', 'If', 'would', 'work', 'I', 'would', 'like', 'drive', 'sunday', 'afternoon', 'feb', '18', 'around', '2', '3', 'pm', 'I', 'would', 'like', 'see', 'progress', 'hous', 'look', 'tour', 'one', 'didnt', 'time', 'I', 'bring', 'detail', 'draw', 'new', 'plan', 'call', 'email', 'let', 'know', 'would', 'work', 'pallen70hotmailcom', '7134638626home', '7138537041work', 'phillip', 'allen', 'PS', 'channel', '2', 'houston', 'ran', 'stori', 'yesterday', 'feb', '2', 'home', 'kingwood', 'poison', 'strain', 'mold', 'grow', 'wall', 'you', 'tri', 'websit', 'call', 'station', 'get', 'full', 'stori', 'It', 'would', 'make', 'good', 'case', 'breathabl', 'wall']","[('I', 0.038461823), ('would', 0.0320515), ('plan', 0.028846342), ('wing', 0.016025703), ('center', 0.016025703), ('hous', 0.016025703), ('room', 0.016025703), ('2', 0.012820546), ('work', 0.012820546), ('courtyard', 0.012820546)]",I,0.03846182
484,484,480,"['8500', 'that', 'twice', 'valuabl', 'car', 'cant', 'get', 'use', 'one', '3000']","[('8500', 0.1), ('that', 0.1), ('twice', 0.1), ('valuabl', 0.1), ('car', 0.1), ('cant', 0.1), ('get', 0.1), ('use', 0.1), ('one', 0.1), ('3000', 0.1)]",8500,0.
485,485,481,"['nice', 'much', 'are', 'tri', 'keep', 'economi', 'go']","[('nice', 0.14285715), ('much', 0.14285715), ('are', 0.14285715), ('tri', 0.14285715), ('keep', 0.14285715), ('economi', 0.14285715), ('go', 0.14285715)]",nice,0.1428571
486,486,482,"['from', 'phillip', 'K', 'allen', '01122001', '0858', 'AM', 'To', '8774820206pagenetmessagenet', 'cc', 'subject', 'test']","[('To', 0.08333334), ('0858', 0.08333334), ('subject', 0.08333334), ('cc', 0.08333334), ('8774820206pagenetmessagenet', 0.08333334), ('from', 0.08333334), ('AM', 0.08333334), ('K', 0.08333334), ('allen', 0.08333334), ('phillip', 0.08333334)]",To,0.0833333
487,487,483,"['jeff', 'befor', 'write', 'stage', 'thing', 'think', '1', 'oper', 'expens', 'includ', '22000', 'materi', 'mainten', 'repair', 'plu', 'full', 'time', 'onsit', 'mainten', 'man', 'mean', 'extra', 'labor', 'cost', 'repair', 'there', '44', 'unit', 'lot', 'time', 'spent', 'repair', '2', 'what', 'outsid', 'manag', 'firm', 'go', 'A', 'full', 'time', 'onsit', 'manag', 'requir', 'As', 'I', 'mention', 'prior', 'manag', 'interest', 'return', 'anoth', 'altern', 'would', 'hire', 'male', 'manag', 'could', 'make', 'readi', 'lawn', 'care', 'If', 'turn', 'manag', 'compani', 'could', 'sure', 'reduc', 'cost', 'full', 'time', 'manag', 'onsit', '3', 'consid', '1', '2', '115000', 'noi', 'necessarili', 'overst', 'If', 'want', 'ultra', 'conserv', 'use', '100000', 'lowest', '4', 'get', 'cash', 'prioriti', 'So', 'I', 'will', 'structur', 'deal', 'minimum', 'cash', 'A', '10', 'note', 'actual', 'attract', 'see', 'My', 'job', 'doesnt', 'give', 'time', 'manag', 'properti', 'thi', 'properti', 'definit', 'requir', 'time', 'return', 'justifi', 'effort', 'sale', 'price', '705000', '1st', 'lien', '473500', '2nd', 'lien', '225000', 'transfer', 'fee', '7500', 'cash', 'requir', '14500', 'noi', '100000', '1st', 'lien', '47292', '2nd', 'lien', '23694', 'cash', 'flow', '29014', 'cash', 'cash', '200', 'these', 'number', 'use', 'conserv', 'noi', 'come', '115k', 'cash', 'cash', 'return', 'would', 'like', '300', 'thi', 'doesnt', 'reflect', 'addit', 'profit', 'opportun', 'sell', 'properti', 'next', 'year', 'higher', 'price', 'Do', 'want', 'reconsid', 'let', 'know', 'phillip']","[('cash', 0.029126408), ('manag', 0.025890129), ('time', 0.022653852), ('lien', 0.016181294), ('full', 0.01294502), ('requir', 0.01294502), ('repair', 0.01294502), ('onsit', 0.01294502), ('return', 0.01294502), ('noi', 0.01294502)]",cash,0.02912640
488,488,484,"['forward', 'susan', 'J', 'maranaenron', '01302001', '1002', 'AM', '09daniel', 'douglass', 'douglassarterhaddencom', '0901302001', '0831', 'AM', '090920', '0909', 'To', 'barbaraklemstineapsccom', 'berryapxcom', 'dcazaletapxcom', '20', 'billrcalpinecom', 'jackpcalpinecom', 'glwaascalpxcom20', 'kenczarneckicalpxcom', 'gavaughndukeenergycom20', 'rjhickokdukeenergycom', 'gtbldynegycom', 'jmpadynegycom20', 'jdasovicenroncom', 'susanjmaraenroncom', 'tamarajohnsonenroncom', '20', 'curthattongenpgecom', 'foothilllminet', 'camiessnnewwestenergycom', '20', 'jcgardinnewwestenergycom', 'jsmollonnewwestenergycom20', 'rsnicholnewwestenergycom', 'curtislkeblerreliantenergycom20', 'rllamkinseiworldwidecom', '0909', 'cc20', '0909', 'subject', 'cpuc', 'audit', 'report', 'edison', 'the', 'follow', 'highlight', 'execut', 'summari', 'kpmg', 'aud', 'it20', 'report', 'southern', 'california', 'edison', '20', 'I', 'cash', 'need', 'highlight', 'sce01', 'origin', 'cash', 'forecast', 'date', 'decemb', '28', '2000', 'project', 'com', 'plete20', 'cash', 'deplet', 'date', 'februari', '1', '2001', 'sinc', 'sce', 'institut', 'a20', 'program', 'cash', 'conserv', 'includ', 'suspens', 'certain', 'oblig', 's20', 'measures20', 'base', 'daili', 'cash', 'forecast', 'cash', 'conserv', 'activ', 'sce01s20', 'avail', 'cash', 'improv', 'januari', '19', 'origin', 'estim', '51', '820', 'million', '1226', 'billion', 'the', 'actual', 'cash', 'flow', 'given', 'cash20', 'conserv', 'activ', 'extend', 'cash', 'deplet', 'date', 'II', 'credit', 'relationship', 'highlight', 'sce', 'exercis', 'avail', 'line', 'credit', 'abl', 'to20', 'extend', 'renew', 'credit', 'becom', 'due', 'At', 'present', 'addit', 'sourc', 'credit', 'open', 'sce', 'sce01', 'loan', 'agreement', 'provid', 'specif', 'claus', 'respect', 'defau', 'lt20', 'gener', 'agreement', 'provid', 'debt', 'becom', 'immedi', 'due', 'nd20', 'payabl', 'sce01', 'util', 'plant', 'asset', 'use', 'secur', 'outstand', 'mortgag', 'bond', '20', 'indebted', 'although', 'statutori', 'capac', 'issu', 'more20', 'indebted', 'feasibl', 'credit', 'rate', 'agenc', 'downgrad', 'sce01', 'credit', 'rate', 'its20', 'rate', 'indebted', 'solid', 'corpor', 'rate', 'invest', 'grade', '20', 'issu', 'within', 'last', 'three', 'week', 'iii', 'energi', 'cost', 'scenario', 'highlight', 'thi', 'report', 'section', 'us', 'differ', 'cpuc', 'suppli', 'assumpt', 'assess20', 'variou', 'price', 'scenario', 'upon', 'sce01', 'project', 'cash', 'deplet', 'date', 'under', 'such20', 'scenario', 'sce', 'would', 'posit', 'cash', 'balanc', 'march', '30', '2001', 'IV', 'cost', 'contain', 'initi', 'highlight', 'sce', 'adopt', '460', 'million', 'cost', 'reduct', 'plan', 'year', '2001', 'the', 'plan', 'consist', 'oper', 'mainten', 'compon', 'capit', '20', 'improv', 'compon', 'follow', 'million', 'oper', 'mainten', 'cost', '77', 'capit', 'improv', 'cost', '383', 'total', '460', 'the', 'plan', 'provid', '2000', 'full', 'parttim', 'contract', 'posit', '20', 'elimin', 'approxim', '75', 'total', 'staff', 'reduct', 'come', 'fr', 'om20', 'contract', 'employe', 'under', 'plan', 'capit', 'improv', 'cost', 'total', '383', 'million', '20', 'part', 'defer', 'futur', 'date', 'sce', 'dividend', 'common', 'sharehold', 'prefer', 'stockhold', 'and20', 'execut', 'bonu', 'suspend', 'result', 'addit', 'cost20', 'save', 'approxim', '92', 'million', 'V', 'account', 'mechan', 'track', 'strand', 'cost', 'recoveri', 'tra', 'tcba20', 'activ', 'highlight', 'As', 'decemb', '31', '2000', 'sce', 'report', 'overcollect', 'balanc', 'the20', 'transit', 'cost', 'balanc', 'account', 'tcba', 'account', '4945', 'million', 'this20', 'includ', 'estim', 'market', 'valuat', 'hydro', 'facil', '50020', 'million', 'acceler', 'revenu', '175', 'million', 'As', 'decemb', '31', '2000', 'sce', 'report', 'undercollect', 'balanc', 'sce01', '20', 'transit', 'account', 'tra', '449', 'billion', 'normal', 'gener', 'memorandum', 'account', 'credit', 'tcba', 'th', 'e20', 'end', 'year', 'howev', 'current', 'gener', 'memorandum', 'account', 'credit', '20', 'balanc', '15', 'billion', 'credit', 'tcba', 'pursuant', 'to20', 'd0101018', 'cost', 'purchas', 'gener', 'track', 'tra', 'revenu', 'from20', 'gener', 'track', 'tcba', 'becaus', 'cost', 'revenu', 'are20', 'track', 'separ', 'net', 'liabil', 'procur', 'electr', 'power', 'as20', 'express', 'tra', 'overst', 'turn', 'propos', 'As', 'part', 'review', 'cpuc', 'ask', 'comment', 'propos', 'TU', 'rn20', 'chang', 'certain', 'aspect', 'regulatori', 'account', 'transit', 'asset', 's20', 'our', 'comment', 'summar', 'follow', 'the', 'propos', 'would', 'direct', 'impact', 'cash', 'flow', 'sce', 't20', 'would', 'directli', 'gener', 'use', 'cash', 'the', 'proposal01', 'impact', 'sce01', 'balanc', 'sheet', 'would', 'initi', 'sh', 'ift20', 'cost', 'two', 'regulatori', 'asset', 'turn01', 'propos', 'recogn', 'cost', 'procur', 'power', 'the20', 'revenu', 'gener', 'power', 'track', 'separ', 'undercollect', 'in20', 'tra', 'overst', 'VI', 'flow', 'fund', 'analysi', 'highlight', 'In', 'last', 'five', 'year', 'sce', 'gener', 'net', 'incom', '27', 'billion', '20', 'posit', 'cash', 'flow', 'oper', '7', 'billion', 'dure', 'time', 'period', 'sce', 'paid', 'dividend', 'distribut', '20', 'parent', 'edison', 'intern', 'approxim', '48', 'billion', 'edison', 'intern', 'use', 'fund', 'dividend', 'pay', 'dividend', '20', 'sharehold', '16', 'billion', 'repurchas', 'share', 'outstand', 'comm', 'on20', 'stock', '27', 'billion', 'remain', 'fund', 'use', 'administrati', 've20', 'gener', 'cost', 'invest', 'corpor', 'purpos', 'section', 'vii', '20', 'viii', 'earn', 'california', 'affili', 'sce01', 'payment', 'power', 'affili', 'approxim', '400500', '20', 'million', 'annual', 'remain', 'rel', 'stabl', '1996', '199920', 'In', '2000', 'payment', 'increas', 'approxim', '50', '600', 'million', '20', 'thi', 'increas', 'correl', 'increas', 'market', 'price', 'natur', 'ga', 'period', 'A', 'copi', 'report', 'avail', 'commiss', 'websit', 'at20', 'wwwcpuccagov', '20', 'dan']","[('20', 0.019812763), ('cash', 0.015641632), ('cost', 0.014598852), ('sce', 0.012513286), ('million', 0.011470503), ('gener', 0.01042772), ('credit', 0.01042772), ('billion', 0.0093849385), ('sce01', 0.0093849385), ('highlight', 0.008342155)]",20,0.01981276
489,489,485,"['luci', 'what', 'latest', 'write', 'note', 'go', 'issu', 'need', 'help', 'deal', 'send', 'rentrol', 'phillip']","[('need', 0.07692308), ('issu', 0.07692308), ('rentrol', 0.07692308), ('send', 0.07692308), ('deal', 0.07692308), ('help', 0.07692308), ('luci', 0.07692308), ('latest', 0.07692308), ('note', 0.07692308), ('what', 0.07692308)]",need,0.0769230
490,490,486,"['phillip', 'how', 'everyon', 'I', 'sent', 'rent', 'roll', '27', 'move', 'I', 'wknow', 'I', 'abl', 'rent', 'real', 'fastal', 'I', 'have', 'TO', 'DO', 'IN', 'touch', 'wall', 'four', 'adult', 'move', '13000', 'wk', '17500', 'deposit', 'thursday', 'friday', 'thank', 'you', 'luci', 'get', 'web', 'free', 'msn', 'explor', 'download', 'httpexplorermsncom', 'rentroll1201xl']","[('I', 0.061728477), ('rent', 0.037037056), ('move', 0.037037056), ('friday', 0.024691354), ('thank', 0.024691354), ('luci', 0.024691354), ('thursday', 0.024691354), ('deposit', 0.024691354), ('free', 0.024691354), ('17500', 0.024691354)]",I,0.06172847
491,491,487,"['here', 'link', 'audit', 'report', 'forward', 'susan', 'J', 'maranaenron', '01302001', '0853', 'AM', 'andi', 'brown', 'andybrwnearthlinknet', '01292001', '0727', 'PM', 'pleas', 'respond', 'abb', 'pleas', 'respond', 'andybrwn', 'To', 'caroliepacom', 'cc', 'bill', 'carlson', 'email', 'williamcarlsonwastemanagementcom', 'bill', 'wood', 'email', 'billwcalpinecom', 'bob', 'elleri', 'email', 'belleryspiindcom', 'bob', 'escalant', 'email', 'rescalanteriobravogmcom', 'bob', 'gate', 'email', 'bobgatesenroncom', 'carolyn', 'A', 'baker', 'email', 'cabakerdukeenergycom', 'codi', 'carter', 'email', 'codycarterwilliamscom', 'curt', 'hatton', 'email', 'curthattongenpgecom', 'curti', 'kebler', 'email', 'curtislkeblerreliantenergycom', 'david', 'parquet', 'davidparquetenroncom', 'dean', 'gosselin', 'email', 'deangosselinfplcom', 'doug', 'fernley', 'email', 'fernleydougepenergycom', 'dougla', 'kerner', 'email', 'dkkeslawfirmcom', 'duan', 'nelsen', 'email', 'dnelsengwfpowercom', 'Ed', 'tomeo', 'email', 'edtomeouaecorpcom', 'eileen', 'koch', 'email', 'eileenkcalpinecom', 'eric', 'eisenman', 'email', 'ericeisenmangenpgecom', 'frank', 'derosa', 'email', 'frankderosagenpgecom', 'greg', 'blue', 'email', 'gtbldynegycom', 'hap', 'boyd', 'email', 'hapboydenroncom', 'hawk', 'jack', 'email', 'jackhawksgenpgecom', 'jack', 'pigott', 'email', 'jackpcalpinecom', 'jim', 'willey', 'email', 'elliottsaearthlinknet', 'joe', 'greco', 'email', 'jgrecocaithnessenergycom', 'joe', 'ronan', 'email', 'joercalpinecom', 'john', 'stout', 'email', 'johnhstoutreliantenergycom', 'jonathan', 'weisgal', 'email', 'jweisgallaolcom', 'kate', 'castillo', 'email', 'ccastilloriobravogmcom', 'kelli', 'lloyd', 'email', 'kellylenxcocom', 'ken', 'hoffman', 'email', 'khoffmancaithnessenergycom', 'kent', 'fickett', 'email', 'kfickettusgencom', 'kent', 'palmerton', 'kentpalmertonwilliamscom', 'lynn', 'lednicki', 'email', 'laledynegycom', 'marti', 'mcfadden', 'email', 'martymcfaddenogdenenergycom', 'paula', 'soo', 'paulasoosogdenenergycom', 'randi', 'hickok', 'email', 'rjhickokdukeenergycom', 'rob', 'lamkin', 'email', 'rllamkinseiworldwidecom', 'roger', 'pelot', 'email', 'rogerpelotewilliamscom', 'ross', 'ain', 'email', 'raincaithnessenergycom', 'stephani', 'newel', 'email', 'stephanienewellreliantenergycom', 'steve', 'iliff', 'siliffriobravogmcom', 'steve', 'ponder', 'email', 'steveponderfplcom', 'susan', 'J', 'mara', 'email', 'smaraenroncom', 'toni', 'wetzel', 'email', 'twetzelthermoecotekcom', 'william', 'hall', 'email', 'wfhall2dukeenergycom', 'alex', 'sugaoka', 'email', 'alexsugaokauaecorpcom', 'allen', 'jensen', 'email', 'aljensennrgenergycom', 'andi', 'gilford', 'email', 'agilfordwbcounselcom', 'armen', 'arslanian', 'email', 'armenarslaniangecapitalcom', 'bert', 'hunter', 'email', 'rjhunterspectrumcapitalcom', 'bill', 'adam', 'email', 'sangorgonaolcom', 'bill', 'barn', 'email', 'billbarneslgeenergycom', 'Bo', 'buchynski', 'email', 'bbuchynskyaolcom', 'bob', 'tormey', 'rjtormeydukeenergycom', 'charl', 'johnson', 'email', 'cjohnsonejgdcom', 'charl', 'linthicum', 'email', 'charleslinthicumpowersrccom', 'dian', 'fellman', 'email', 'difellmanenergylawgroupcom', 'don', 'scholl', 'email', 'dschollpurenergyllccom', 'Ed', 'maddox', 'email', 'emaddoxseawestwindpowercom', 'edward', 'lozowicki', 'email', 'elozowickisjocoudertcom', 'edwin', 'feo', 'email', 'efeomilbankcom', 'eric', 'edstrom', 'email', 'edstromeepenergycom', 'floyd', 'gent', 'email', 'fgentthermoecotekcom', 'hal', 'dittmer', 'email', 'hedsfaolcom', 'john', 'orourk', 'orourkejohnepenergycom', 'kawamoto', 'wayn', 'wkawamotowmcom', 'ken', 'salvagno', 'email', 'kbssacaolcom', 'kent', 'burton', 'email', 'kentburtonogdenenergycom', 'larri', 'kellerman', 'kellermanlarryepenergycom', 'levitt', 'doug', 'sdlcalwindcom', 'lucian', 'fox', 'email', 'lucianfoxogdenenergycom', 'mark', 'J', 'smith', 'email', 'markjsmithfplcom', 'milton', 'schultz', 'email', 'bfpjvczonenet', 'nam', 'nguyen', 'email', 'namnguyenpowersrccom', 'paul', 'wood', 'email', 'paulwoodogdenenergycom', 'pete', 'levitt', 'email', 'petecalwindcom', 'phil', 'rees', 'email', 'rcscwestnet', 'robert', 'free', 'email', 'freesrjapcicom', 'ross', 'ain', 'email', 'ainworldnetattnet', 'scott', 'harlan', 'email', 'harlansepenergycom', 'tandi', 'mcmann', 'email', 'mcmannesaolcom', 'ted', 'cortopassi', 'email', 'tedcortopassiogdenenergycom', 'thoma', 'heller', 'email', 'hellertjapcicom', 'thoma', 'swank', 'swankthomasepenergycom', 'tom', 'hartman', 'email', 'tomhartmanfplcom', 'ward', 'scobe', 'email', 'wscobeecaithnessenergycom', 'brian', 'T', 'craggq', 'bcragggmssrcom', 'J', 'feldman', 'jfeldmanmofocom', 'kassandra', 'gough', 'email', 'kgoughcalpinecom', 'kristi', 'rumbaugh', 'email', 'kristyrumbaughogdenenergycom', 'andi', 'brown', 'email', 'abbeslawfirmcom', 'jan', 'smutnyjon', 'email', 'smutnyiepacom', 'kati', 'kaplan', 'email', 'kaplaniepacom', 'steven', 'kelli', 'email', 'steveniepacom', 'subject', 'cpuc', 'post', 'audit', 'report', 'thi', 'email', 'came', 'parti', 'cpuc', 'proceed', 'the', 'materi', 'avail', 'cpuc', 'websit', 'wwwcpuccagov', 'the', 'full', 'report', 'avail', 'abb', 'parti', 'email', 'note', 'inform', 'kpmg', 'audit', 'report', 'post', 'web', '700', 'pm', 'januari', '29', '2001', 'you', 'see', 'follow', 'document', 'web', '1', 'presid', 'lynch', 'statement', '2', 'kpmg', 'audit', 'report', 'edison', '3', 'rule', 'confidenti', 'here', 'link', 'web', 'site', 'httpwwwcpuccagov010129auditindexhtm', 'andrew', 'brown', 'sacramento', 'CA', 'andybrwnearthlinknet']","[('email', 0.10925719), ('report', 0.0077121714), ('bob', 0.0064267945), ('audit', 0.006426794), ('bill', 0.006426794), ('J', 0.006426794), ('andi', 0.0051414184), ('brown', 0.0051414184), ('web', 0.0051414184), ('cpuc', 0.005141418)]",email,0.1092571
492,492,488,"['georg', 'keith', 'I', 'review', 'propos', 'We', 'send', 'respons', 'even', 'phillip']","[('georg', 0.1), ('keith', 0.1), ('I', 0.1), ('review', 0.1), ('propos', 0.1), ('We', 0.1), ('send', 0.1), ('respons', 0.1), ('even', 0.1), ('phillip', 0.1)]",georg,0.
493,493,489,"['phillip', 'inform', 'request', 'share', 'vest', 'date', 'grant', 'price', '4584', '123101', '18375', '3200', '1600', '123101', '200625', '1600', '123102', '200625', '9368', '3124', '123101', '314688', '3124', '123102', '314688', '3120', '123103', '314688', '5130', '2565', '11802', '5550', '2565', '11803', '5550', '7143', '2381', '8101', '7600', '2381', '8102', '7600', '2381', '8103', '7600', '24', '12', '11802', '5550', '12', '11803', '5550', 'notic', 'regard', 'entri', 'order', 'instruct', 'pleas', 'transmit', 'order', 'andor', 'instruct', 'regard', 'painewebb', 'account', 'email', 'order', 'andor', 'instruct', 'transmit', 'email', 'accept', 'painewebb', 'painewebb', 'respons', 'carri', 'order', 'andor', 'instruct', 'notic', 'regard', 'privaci', 'confidenti', 'painewebb', 'reserv', 'right', 'monitor', 'review', 'content', 'email', 'commun', 'sent', 'andor', 'receiv', 'employe']","[('5550', 0.032679796), ('instruct', 0.032679796), ('andor', 0.032679796), ('painewebb', 0.032679796), ('order', 0.032679796), ('email', 0.02614382), ('123101', 0.02614382), ('7600', 0.02614382), ('314688', 0.02614382), ('regard', 0.02614382)]",5550,0.03267979
494,494,490,"['jeff', 'that', 'good', 'news', 'leander', 'now', 'stage', 'I', 'would', 'like', 'get', 'sold', 'end', 'march', 'I', '225k', 'invest', 'stagecoach', 'look', 'like', 'I', 'need', 'get', 'around', '745k', 'breakeven', 'I', 'dont', 'need', 'cash', 'right', 'I', 'could', 'get', 'person', 'guarante', 'jaqu', 'craig', 'work', 'partnership', 'transfer', 'I', 'would', 'definit', 'will', 'carri', 'second', 'lien', 'I', 'understand', 'second', 'lien', 'go', '1012', 'checkout', 'spreadsheet', 'these', 'number', 'get', 'place', 'sold', 'next', 'fifteen', 'minut', 'howev', 'I', 'concern', 'way', 'shown', 'have', 'luci', 'show', 'good', 'idea', 'I', 'need', 'meet', 'buyer', 'take', 'trip', 'get', 'familar', 'properti', 'My', 'dad', 'doesnt', 'time', 'I', 'dont', 'trust', 'luci', 'wade', 'show', 'correctli', 'I', 'would', 'prefer', 'show', 'I', 'oper', 'statement', 'complet', 'decemb', 'friday', 'phillip']","[('I', 0.07142889), ('get', 0.03296713), ('show', 0.021978058), ('would', 0.021978058), ('need', 0.021978058), ('dont', 0.016483525), ('second', 0.016483525), ('good', 0.016483525), ('luci', 0.016483525), ('lien', 0.016483525)]",I,0.0714288
495,495,491,"['At', 'perman', 'financ', '11', 'would', 'paid', 'leav', '3', 'pay', '1st', 'year', 'sinc', 'almost', '80', 'builder', 'profit', 'repaid', 'time', 'invest', 'I', 'feel', '6535', 'fair', 'split', 'howev', 'I', 'mention', 'earlier', 'I', 'think', 'negoti', 'layer', 'addit', 'equiti', 'part', 'construct', 'contract', 'just', 'begin', 'brainstorm', 'construct', 'agreement', 'might', 'look', 'like', 'idea', '1', 'fix', 'construct', 'profit', '14', 'million', 'builder', 'doesnt', 'benefit', 'higher', 'cost', 'rather', 'suffer', 'equiti', 'holder', '2', '5', 'equiti', 'meet', 'time', 'cost', 'origin', 'plan', '51sq', 'ft', 'phase', '1', 'complet', 'novemb', '5', 'equiti', 'budget', 'ahead', 'schedul', '5', 'equiti', 'budget', 'behind', 'schedul', 'thi', 'way', 'thing', 'go', 'accord', 'plan', 'final', 'split', 'would', '6040', 'could', 'favor', '5545', 'I', 'realiz', 'budget', 'schedul', 'must', 'discuss', 'agre', 'upon', 'feel', 'free', 'call', 'home', '7134638626', 'phillip']","[('equiti', 0.03000011), ('I', 0.025000073), ('5', 0.020000042), ('construct', 0.020000042), ('budget', 0.020000042), ('schedul', 0.020000042), ('feel', 0.015000014), ('time', 0.015000014), ('builder', 0.015000014), ('split', 0.015000014)]",equiti,0.0300001
496,496,495,"['on', 'qf', 'legisl', 'updat', 'phillip', 'It', 'look', 'like', 'deal', 'non', 'ga', 'fire', 'qf', 'imin', 'one', 'ga', 'gener', 'still', 'quit', 'way', 'the', 'non', 'ga', 'fire', 'qf', 'get', 'fix', 'price', '5', 'year', 'revert', 'back', 'contract', 'thereaft', 'they', 'also', 'give', 'back', 'I', 'would', 'expect', 'ga', 'deal', 'use', 'impli', 'ga', 'price', 'time', 'heat', 'rate', 'would', 'difficult', 'close', 'dont', 'expect', 'hedger', 'come', 'time', 'soon', 'I', 'keep', 'abreast', 'develop', 'C', 'forward', 'chri', 'H', 'fosterhouect', '01262001', '0542', 'AM', 'susan', 'J', 'maraenron', '01252001', '0602', 'PM', 'To', 'michael', 'triboletcorpenronenron', 'christoph', 'F', 'calgerpdxectect', 'phillip', 'K', 'allenhouectect', 'alan', 'comnespdxectect', 'jeff', 'dasovichnaenronenron', 'michael', 'etringerhouectect', 'jame', 'D', 'steffesnaenronenron', 'sandra', 'mccubbinnaenronenron', 'paul', 'kaufmanpdxectect', 'chri', 'H', 'fosterhouectect', 'cc', 'subject', 'statu', 'QF', 'negoti', 'qf', 'legisl', 'updat', 'thi', 'confer', 'call', 'iep', 'tonight', '5', 'pm', 'RE', 'nongasfir', 'qf', 'the', 'last', 'email', 'I', 'sent', 'includ', 'latest', 'version', 'iep', 'propos', 'negoti', 'sce', 'propos', 'essenti', 'complet', 'pge', 'OK', 'doc', 'all', 'qf', 'calpin', 'agre', 'iep', 'propos', 'under', 'propos', 'pge', 'would', 'retain', '106', 'million', 'Im', 'sure', 'I', 'think', 'mean', 'refund', 'pge', 'qf', 'switch', 'PX', 'price', 'the', 'money', 'would', 'come', 'chang', 'basi', 'QF', 'payment', 'PX', 'price', 'srac', 'price', 'start', 'back', 'decemb', 'mayb', 'earlier', 'pge', 'commit', 'payment', 'schedul', 'commit', 'take', 'forc', 'majeur', 'notic', 'tabl', 'qf', 'ask', 'iep', 'attempt', 'get', 'assur', 'payment', 'sce', 'default', 'qf', 'pge', 'yet', 'big', 'payment', 'due', '2201', 'for', 'gasfir', 'qf', 'heat', 'rate', '102', 'includ', 'formula', 'pge', 'purchas', 'qf', 'two', 'peopl', 'negoti', 'agreement', 'elcantar', 'bloom', 'go', 'slowli', 'not', 'clear', 'resolv', 'batten', 'keeley', 'refere', 'No', 'discuss', 'occur', 'today', 'statu', 'legisl', 'keeley', 'left', 'town', 'night', 'much', 'happen', 'qfsassembl', 'senat', 'realiz', 'work', 'togeth', 'plan', 'meld', 'togeth', 'AB', '1', 'hertzberg', 'new', 'bill', 'hydro', 'secur', 'dead', 'republican', 'much', 'oppos']","[('qf', 0.02654897), ('pge', 0.015486856), ('ga', 0.013274435), ('price', 0.013274435), ('I', 0.011062013), ('payment', 0.011062013), ('propos', 0.011062013), ('would', 0.011062013), ('iep', 0.011062013), ('the', 0.008849594)]",qf,0.0265489
497,497,496,"['all', 'the', 'analyst', 'associ', 'program', 'recogn', 'mani', 'analyst', 'need', 'need', 'address', 'immedi', 'while', 'anticip', 'mani', 'new', 'analyst', 'join', 'enron', 'summer', 'late', 'may', 'fulltim', 'august', 'felt', 'necessari', 'address', 'immedi', 'need', 'offcycl', 'recruit', 'event', 'We', 'plan', 'event', 'thursday', 'februari', '15', 'invit', 'approxim', '30', 'candid', 'interview', 'I', 'ask', 'forward', 'note', 'potenti', 'interview', 'manag', 'We', 'conduct', 'first', 'round', 'interview', 'morn', 'second', 'round', 'interview', 'afternoon', 'We', 'need', 'interview', 'commit', 'either', 'morn', '9am12pm', 'afternoon', '2pm5pm', 'complet', 'session', 'pleas', 'submit', 'respons', 'use', 'button', 'updat', 'calendar', 'date', 'In', 'addit', 'need', 'group', 'current', 'need', 'commit', 'take', 'one', 'analyst', 'extend', 'offer', 'thank', 'advanc', 'cooper', 'thank', 'jana']","[('need', 0.04142025), ('interview', 0.035503063), ('analyst', 0.029585866), ('We', 0.023668675), ('commit', 0.017751493), ('event', 0.017751493), ('mani', 0.017751493), ('thank', 0.017751489), ('immedi', 0.017751489), ('round', 0.017751489)]",need,0.0414202
498,498,497,"['I', 'would', 'support', 'matt', 'lenhart', 'promot', 'next', 'level', 'I', 'would', 'oppos', 'ken', 'shulklapp', 'promot']","[('I', 0.12000002), ('would', 0.12000002), ('promot', 0.12000002), ('support', 0.08), ('matt', 0.08), ('lenhart', 0.08), ('next', 0.08), ('level', 0.08), ('oppos', 0.08), ('ken', 0.08)]",I,0.1200000
499,499,498,"['nick', 'there', 'specif', 'program', 'use', 'recruit', 'train', 'mentor', 'new', 'trader', 'ga', 'power', 'desk', 'the', 'trade', 'track', 'program', 'coordin', 'ted', 'bland', 'I', 'forward', 'resum', 'give', 'call', 'fill', 'detail', 'program', 'phillip']","[('program', 0.07142862), ('forward', 0.035714284), ('give', 0.035714284), ('ted', 0.035714284), ('bland', 0.035714284), ('I', 0.035714284), ('track', 0.035714284), ('resum', 0.035714284), ('detail', 0.035714284), ('fill', 0.035714284)]",program,0.0714286
500,500,499,"['north', 'america', 'corp', 'from', 'worklif', 'depart', 'kidventur', 'enron', '01242001', '0900', 'PM', 'sent', 'enron', 'announcementsenron', 'To', 'all', 'enron', 'houston', 'cc', 'subject', 'kidventur', 'camp']","[('enron', 0.09756101), ('kidventur', 0.073170744), ('sent', 0.048780482), ('0900', 0.048780482), ('subject', 0.048780482), ('cc', 0.048780482), ('houston', 0.048780482), ('all', 0.048780482), ('To', 0.048780482), ('announcementsenron', 0.048780482)]",enron,0.0975610
501,501,500,"['luci', '32', '29', 'fine', '28', 'paid', 'weekli', '15', 'then', 'switch', 'biweekli', 'He', 'paid', '260', '112', 'two', 'week', 'rent', 'advanc', 'instead', 'paid', '260', '119', 'He', 'either', 'need', 'get', 'back', 'schedul', 'let', 'know', 'pay', 'middl', 'two', 'week', 'He', 'paid', 'one', 'week', 'advanc', 'thi', 'big', 'deal', 'clear', 'tenant', 'rent', 'due', 'advanc', 'here', 'updat', 'rentrol', 'pleas', 'use', 'one', 'instead', 'one', 'I', 'sent', 'morn', 'final', 'fax', 'applic', 'leas', '9', 'phillip']","[('paid', 0.04347833), ('He', 0.034782648), ('one', 0.034782648), ('advanc', 0.034782648), ('week', 0.034782648), ('instead', 0.02608697), ('rent', 0.02608697), ('260', 0.02608697), ('two', 0.02608697), ('clear', 0.017391298)]",paid,0.0434783
502,502,501,"['everyth', 'short', 'sweet', 'except', 'caption', 'one', 'comment', 'the', 'last', 'sentenc', 'read', 'pge', 'continu', 'physic', 'divert', 'ga', 'necessari', 'sinc', 'havent', 'actual', 'begun', 'divert', 'yet', 'let', 'chang', 'sentenc', 'read', 'pge', 'continu', 'right', 'physic', 'divert', 'ga', 'necessari', 'I', 'send', 'around', 'comment', 'thank', 'prompt', 'ani', 'comment', 'anyon', 'mbd', 'mdaygmssrcom', '01242001', '0347', 'PM', 'To', 'llawnerenroncom', 'llawnerenroncom', 'cc', 'subject', 'draft', 'opposit', 'oraturn', 'petit', 'lesli', 'here', 'draft', 'short', 'sweet', 'let', 'know', 'think', 'We', 'readi', 'file', 'friday', 'mike', 'day', 'x20292doc', 'x20292doc']","[('divert', 0.031007795), ('comment', 0.031007795), ('sentenc', 0.02325583), ('short', 0.02325583), ('read', 0.02325583), ('llawnerenroncom', 0.02325583), ('physic', 0.023255829), ('x20292doc', 0.023255829), ('draft', 0.023255829), ('necessari', 0.023255829)]",divert,0.03100779
503,503,502,"['luci', 'here', 'rentrol', 'week', 'I', 'still', 'question', '2829', '32']","[('luci', 0.11111111), ('here', 0.11111111), ('rentrol', 0.11111111), ('week', 0.11111111), ('I', 0.11111111), ('still', 0.11111111), ('question', 0.11111111), ('2829', 0.11111111), ('32', 0.11111111)]",luci,0.1111111
504,504,503,"['larri', 'I', 'met', 'banker', 'interest', 'financ', 'project', 'they', 'need', 'follow', 'financi', 'statement', 'plu', 'last', 'two', 'year', 'tax', 'return', 'builder', 'resum', 'list', 'similar', 'project', 'the', 'banker', 'indic', 'could', 'pull', 'togeth', 'propos', 'friday', 'If', 'interest', 'loan', 'would', 'want', 'come', 'see', 'site', 'If', 'want', 'overnight', 'document', 'I', 'pa', 'along', 'you', 'send', 'home', 'offic', '1400', 'smith', 'eb3210b', 'houston', 'TX', '77002', 'the', 'broker', 'jim', 'murnan', 'hi', 'number', '7137815810', 'want', 'call', 'send', 'document', 'directli', 'It', 'sound', 'like', 'attorney', 'draft', 'framework', 'partnership', 'agreement', 'I', 'would', 'like', 'nail', 'outstand', 'busi', 'point', 'soon', 'possibl', 'pleas', 'email', 'call', 'updat', 'phillip']","[('want', 0.02409643), ('I', 0.02409643), ('call', 0.018072305), ('document', 0.018072305), ('send', 0.018072305), ('like', 0.018072305), ('If', 0.018072305), ('banker', 0.018072305), ('would', 0.018072305), ('the', 0.018072305)]",want,0.0240964
505,505,504,"['draft', 'respons', 'pge', 'comment', 'travi', 'mccullough', 'enron', 'north', 'america', 'corp', '1400', 'smith', 'street', 'EB', '3817', 'houston', 'texa', '77002', 'phone', '713', '8531575', 'fax', '713', '6463490', 'forward', 'travi', 'mcculloughhouect', '01222001', '0147', 'PM', 'william', 'S', 'bradford', '01222001', '0144', 'PM', 'To', 'travi', 'mcculloughhouectect', 'cc', 'subject', 'Re', 'respons', 'pge', 'request', 'ga', 'work', 'have', 'run', 'phillip', 'allen', 'from', 'travi', 'mccullough', '01222001', '0129', 'PM', 'To', 'william', 'S', 'bradfordhouectect', 'jeffrey', 'T', 'hodgehouectect', 'richard', 'shapironaenronenron', 'elizabeth', 'sagerhouectect', 'jame', 'D', 'steffesnaenronenron', 'cc', 'subject', 'respons', 'pge', 'request', 'ga', 'pleas', 'call', 'comment', 'question', 'travi', 'mccullough', 'enron', 'north', 'america', 'corp', '1400', 'smith', 'street', 'EB', '3817', 'houston', 'texa', '77002', 'phone', '713', '8531575', 'fax', '713', '6463490']","[('travi', 0.03726717), ('713', 0.031055959), ('PM', 0.024844754), ('pge', 0.024844754), ('mccullough', 0.024844754), ('respons', 0.024844754), ('01222001', 0.024844754), ('8531575', 0.018633546), ('S', 0.018633546), ('6463490', 0.018633546)]",travi,0.0372671
506,506,505,"['By', 'steve', 'everli', 'the', 'kansa', 'citi', 'star', 'date', '012001', '2215', 'As', 'natur', 'ga', 'price', 'rose', 'decemb', 'trader', 'new', 'york', 'mercantil', 'exchang', 'kept', 'one', 'eye', 'weather', 'forecast', 'anoth', 'weekli', 'ga', 'storag', 'number', 'the', 'storag', 'figur', 'show', 'util', 'withdraw', 'huge', 'amount', 'ga', 'forecast', 'frigid', 'weather', 'trader', 'put', 'two', 'togeth', 'anticip', 'suppli', 'crunch', 'drove', 'ga', 'price', 'record', 'height', 'trader', 'time', 'theyr', 'look', 'forward', 'said', 'william', 'burson', 'trader', 'It', 'make', 'market', 'natur', 'ga', 'but', 'market', 'respons', 'perplex', 'chri', 'mcgill', 'american', 'ga', 'associ', 'director', 'ga', 'suppli', 'transport', 'He', 'compil', 'storag', 'number', 'sinc', 'first', 'publish', '1994', 'view', 'number', 'misinterpret', 'show', 'situat', 'far', 'bleaker', 'realiti', 'it', 'littl', 'frustrat', 'dont', 'take', 'time', 'understand', 'report', 'mcgill', 'said', 'As', 'consum', 'outrag', 'build', 'high', 'heat', 'bill', 'hunt', 'reason', 'culprit', 'some', 'within', 'natur', 'ga', 'industri', 'point', 'finger', 'wall', 'street', 'stephen', 'adik', 'senior', 'vice', 'presid', 'indiana', 'util', 'nisourc', 'recent', 'step', 'industri', 'confer', 'blame', 'market', 'specul', 'rise', 'ga', 'price', 'it', 'firm', 'belief', 'today', 'ga', 'price', 'manipul', 'adik', 'told', 'trade', 'magazin', 'public', 'util', 'fortnightli', 'In', 'california', 'natur', 'ga', 'spike', 'contribut', 'electr', 'util', 'crisi', 'six', 'investig', 'look', 'power', 'industri', 'closer', 'home', 'observ', 'note', 'util', 'regul', 'share', 'blame', 'winter', 'startl', 'ga', 'bill', 'fail', 'protect', 'custom', 'constitu', 'price', 'spike', 'most', 'util', 'often', 'acquiesc', 'regul', 'fail', 'take', 'precaut', 'fixedr', 'contract', 'hedg', 'sort', 'price', 'insur', 'could', 'protect', 'custom', 'lock', 'ga', 'price', 'soar', 'were', 'pass', 'ga', 'cost', 'control', 'said', 'paul', 'snider', 'spokesman', 'missouri', 'ga', 'energi', 'but', 'critic', 'say', 'util', 'shirk', 'respons', 'custom', 'there', 'failur', 'risk', 'manag', 'util', 'need', 'chang', 'said', 'Ed', 'krapel', 'director', 'ga', 'power', 'servic', 'energi', 'secur', 'analysi', 'inc', 'energi', 'consult', 'firm', 'wakefield', 'mass', 'hot', 'topic', 'consum', 'know', 'one', 'thing', 'certain', 'their', 'heat', 'bill', 'sharpli', 'In', 'mani', 'circl', 'littl', 'els', 'discuss', 'the', 'rev', 'vincent', 'fraser', 'glad', 'tide', 'assembl', 'god', 'kansa', 'citi', 'face', '1456', 'decemb', 'bill', 'heat', 'church', 'doubl', 'previou', 'decemb', 'bill', 'church', 'member', 'suffer', 'higher', 'bill', 'well', 'the', 'sunday', 'collect', 'said', 'fraser', 'might', 'forgo', 'part', 'salari', 'for', 'first', 'time', 'church', 'unabl', 'meet', 'financi', 'pledg', 'oversea', 'missionari', 'money', 'go', 'heat', 'it', 'talk', 'town', 'said', 'A', 'year', 'ago', 'wasnt', 'fear', 'wholesal', 'ga', 'price', 'hover', '2', 'per', 'thousand', 'cubic', 'foot', 'level', 'produc', 'say', 'didnt', 'make', 'worthwhil', 'drill', 'ga', 'util', 'even', 'cut', 'ga', 'price', 'paid', 'custom', 'but', 'troubl', 'brew', 'By', 'spring', 'ga', 'price', 'hit', '4', 'per', 'thousand', 'cubic', 'foot', 'util', 'begin', 'buy', 'ga', 'put', 'storag', 'winter', 'there', 'dip', 'fall', 'price', 'rebound', 'By', 'earli', 'novemb', 'price', '5', 'per', 'thousand', 'cubic', 'foot', 'the', 'feder', 'energi', 'inform', 'administr', 'predict', 'suffici', 'tight', 'ga', 'suppli', 'heat', 'bill', 'would', '30', 'percent', '40', 'percent', 'higher', 'but', '10', 'ga', 'come', 'belownorm', 'temperatur', 'hit', 'much', 'countri', 'includ', 'kansa', 'citi', 'area', 'fear', 'tight', 'suppli', 'roil', 'ga', 'market', 'it', 'weather', 'said', 'krapel', 'energi', 'secur', 'analysi', 'wholesal', 'price', 'explod', '10', 'per', 'thousand', 'cubic', 'foot', 'led', 'new', 'york', 'trader', 'natur', 'ga', 'seal', 'reput', 'pricevolatil', 'commod', 'world', 'set', 'price', 'In', '1980', 'feder', 'govern', 'took', 'cap', 'wellhead', 'price', 'ga', 'allow', 'float', 'In', '1990', 'new', 'york', 'mercantil', 'began', 'trade', 'contract', 'futur', 'deliveri', 'natur', 'ga', 'market', 'soon', 'widespread', 'influenc', 'ga', 'price', 'the', 'futur', 'contract', 'bought', 'sold', 'deliveri', 'natur', 'ga', 'soon', 'next', 'month', 'far', 'ahead', 'three', 'year', 'supplier', 'lock', 'sale', 'price', 'ga', 'expect', 'produc', 'and', 'big', 'ga', 'consum', 'util', 'compani', 'farmland', 'industri', 'inc', 'lock', 'pay', 'ga', 'expect', 'use', 'there', 'also', 'specul', 'trade', 'futur', 'contract', 'intent', 'actual', 'buy', 'sell', 'ga', 'often', 'littl', 'real', 'knowledg', 'natur', 'ga', 'but', 'get', 'right', 'side', 'price', 'trend', 'trader', 'dont', 'need', 'know', 'much', 'ga', 'whatev', 'commod', 'theyr', 'trade', 'like', 'futur', 'ga', 'contract', 'purchas', 'credit', 'that', 'leverag', 'add', 'volatil', 'trader', 'abil', 'make', 'lose', 'lot', 'money', 'short', 'time', 'As', 'decemb', 'began', 'price', 'natur', 'ga', 'futur', 'market', 'le', '7', 'per', 'thousand', 'cubic', 'foot', 'By', 'end', 'month', 'nearli', '10', 'much', 'spark', 'ralli', 'came', 'american', 'ga', 'associ', 'weekli', 'storag', 'number', 'util', 'buy', 'ahead', 'store', 'much', '50', 'percent', 'ga', 'expect', 'need', 'winter', 'go', 'winter', 'storag', 'level', '5', 'percent', 'le', 'averag', 'part', 'util', 'hold', 'purchas', 'hope', 'summer', 'unusu', 'high', '4', '5', 'price', 'would', 'drop', 'still', 'american', 'ga', 'associ', 'offer', 'assur', 'suppli', 'would', 'suffici', 'but', 'belownorm', 'temperatur', 'arriv', 'novemb', 'concern', 'increas', 'among', 'trader', 'suppli', 'could', 'insuffici', 'then', 'american', 'ga', 'associ', 'report', 'lowest', 'yearend', 'storag', 'number', 'sinc', 'first', 'publish', '1994', 'still', 'said', 'associ', 'mcgill', 'suffici', 'ga', 'storag', 'but', 'util', 'execut', 'didnt', 'share', 'view', 'william', 'eliason', 'vice', 'presid', 'kansa', 'ga', 'servic', 'said', 'decemb', 'cold', 'snap', 'continu', 'januari', 'could', 'real', 'problem', 'meet', 'demand', 'I', 'get', 'worri', 'said', 'then', 'suddenli', 'market', 'turn', 'januari', 'weather', 'turn', 'warmer', 'wednesday', 'storag', 'number', 'better', 'expect', 'futur', 'price', 'drop', '1', 'per', 'thousand', 'cubic', 'foot', 'just', 'pass', 'some', 'util', 'said', 'littl', 'els', 'price', 'increas', 'pa', 'fuel', 'cost', 'custom', 'among', 'area', 'util', 'kansa', 'ga', 'servic', 'increas', 'custom', 'costofga', 'charg', 'earlier', 'month', '868', 'per', 'thousand', 'cubic', 'foot', 'and', 'missouri', 'ga', 'energi', 'request', 'increas', '981', 'begin', 'wednesday', 'sheila', 'lump', 'chairwoman', 'missouri', 'public', 'servic', 'commiss', 'said', 'last', 'month', 'util', 'pass', 'along', 'wholesal', 'cost', 'littl', 'could', 'done', 'besid', 'urg', 'consum', 'join', 'levelpay', 'plan', 'conserv', 'energi', 'kansa', 'ga', 'servic', 'small', 'hedg', 'program', 'place', 'expect', 'save', 'averag', 'custom', '25', 'winter', 'missouri', 'ga', 'energi', 'hedg', 'program', 'It', 'wait', 'fall', 'seek', 'extens', 'program', 'decid', 'pa', 'regul', 'would', 'guarante', 'could', 'recov', 'hedg', 'cost', 'now', 'util', 'ask', 'justifi', 'decis', 'left', 'custom', 'high', 'ga', 'bill', 'and', 'regul', 'ask', 'whether', 'abandon', 'practic', 'let', 'util', 'pa', 'along', 'fuel', 'cost', 'On', 'friday', 'doug', 'micheel', 'senior', 'counsel', 'missouri', 'offic', 'public', 'counsel', 'said', 'offic', 'would', 'ask', 'missouri', 'public', 'servic', 'commiss', 'perform', 'emerg', 'audit', 'missouri', 'ga', 'energi', 'ga', 'purchas', 'practic', 'consum', 'take', 'risk', 'micheel', 'said', 'it', 'time', 'consid', 'chang', 'To', 'reach', 'steve', 'everli', 'call', '816', '2344455', 'send', 'email', 'severlykcstarcom', 'all', 'content', '2001', 'the', 'kansa', 'citi', 'star']","[('ga', 0.038260885), ('price', 0.017254852), ('util', 0.015004204), ('said', 0.011253126), ('natur', 0.0075020473), ('storag', 0.0075020473), ('energi', 0.0075020473), ('trader', 0.0067518326), ('custom', 0.0067518326), ('bill', 0.006751832)]",ga,0.03826088
507,507,506,"['messag', 'board']","[('messag', 0.5), ('board', 0.5)]",messag,0.
508,508,507,"['need', 'help']","[('need', 0.5), ('help', 0.5)]",need,0.
509,509,508,"['pleas', 'remov', 'name', 'inform', 'regist', 'person', 'list', 'Do', 'sell', 'inform', 'phillip', 'allen']","[('inform', 0.13043483), ('pleas', 0.08695652), ('remov', 0.08695652), ('name', 0.08695652), ('regist', 0.08695652), ('person', 0.08695652), ('list', 0.08695652), ('Do', 0.08695652), ('sell', 0.08695652), ('phillip', 0.08695652)]",inform,0.1304348
510,510,509,"['get', 'free', 'download', 'msn', 'explor', 'httpexplorermsncom', 'rentrollinvestors0112xl']","[('get', 0.14285715), ('free', 0.14285715), ('download', 0.14285715), ('msn', 0.14285715), ('explor', 0.14285715), ('httpexplorermsncom', 0.14285715), ('rentrollinvestors0112xl', 0.14285715)]",get,0.1428571
511,511,510,"['larri', 'the', 'wire', 'go', 'today', 'I', 'portland', 'reach', 'cell', 'phone', '7134104679', 'call', 'issu', 'I', 'place', 'call', 'attorney', 'check', 'loan', 'agreement', 'phillip']","[('call', 0.07500002), ('I', 0.07500002), ('phone', 0.049999997), ('agreement', 0.049999997), ('loan', 0.049999997), ('check', 0.049999997), ('attorney', 0.049999997), ('place', 0.049999997), ('issu', 0.049999997), ('larri', 0.049999997)]",call,0.0750000
512,512,512,"['enron', 'agre', 'key', 'issu', 'focu', 'solv', 'ST', 'buy', 'need', 'attach', 'spreadsheet', 'outlin', 'magnitud', 'next', 'month', 'talk', 'point', 'lot', 'question', 'dwr', 'becom', 'vehicl', 'ST', 'buy', 'signific', 'legal', 'risk', 'becom', 'vehicl', 'WE', 'DO', 'need', 'someth', 'TO', 'bridg', 'befor', 'WE', 'put', 'IN', 'LT', 'contract', 'huge', 'grow', 'shortfal', '32b', 'march', '31', '2001', 'the', 'sooner', 'you', 'can', 'put', 'IN', 'LT', 'contract', 'stop', 'the', 'bleed', 'bankruptci', 'take', 'author', 'legislatur', 'hand', 'action', 'item', '1', 'energi', 'sale', 'particip', 'agreement', 'dure', 'bankruptci', 'michael', 'tribolet', 'contact', 'john', 'klauberg', 'discu', 'organ', 'particip', 'agreement', 'sell', 'udc', 'bankruptci', 'secur', 'super', 'prioriti', '2', 'legisl', 'languag', 'cdwr', 'buy', 'shortterm', 'sandi', 'mccubbin', 'jeff', 'dasovich', 'lead', 'team', 'offer', 'new', 'languag', 'meet', 'ST', 'requir', 'udc', 'key', 'talk', 'state', 'california', 'treasur', 'see', 'found', 'provid', 'privat', 'firm', '35b', 'end', 'april', 'pat', 'boylston', 'develop', 'public', 'benefit', 'languag', 'option', 'work', 'mike', 'day', 'He', 'reach', '5032949116', 'pgboylstonstoelcom', '3', 'get', 'team', 'sacramento', 'get', 'hertzberg', 'discu', 'option', 'bev', 'hansen', 'explain', 'magnitud', 'problem', 'get', 'mike', 'day', 'help', 'draft', 'languag', '4', 'see', 'udc', 'thought', 'steve', 'kean', 'commun', 'udc', 'see', 'solut', 'thougth', 'probabl', 'limit', 'valu', '5', 'updat', 'list', 'ani', 'new', 'inform', 'commun', 'follow', 'peopl', 'soon', 'possibl', 'these', 'peopl', 'updat', 'respect', 'busi', 'unit', 'ena', 'legal', 'christian', 'yoder', 'travi', 'mccullough', 'credit', 'michael', 'tribolet', 'ee', 'vicki', 'sharp', 'don', 'black', 'ena', 'tim', 'belden', 'philip', 'allen', 'govt', 'affair', 'steve', 'kean', 'richard', 'shapiro']","[('udc', 0.013404899), ('languag', 0.013404899), ('get', 0.010723903), ('see', 0.010723903), ('bankruptci', 0.010723903), ('ST', 0.010723903), ('buy', 0.010723903), ('contract', 0.008042909), ('IN', 0.008042909), ('put', 0.008042909)]",udc,0.01340489
513,513,513,"['attach', 'summari', 'jan', '13', 'davissumm', 'summit', 'california', 'power', 'situat', 'We', 'discuss', '200', 'call', 'today']","[('situat', 0.07142858), ('california', 0.07142858), ('call', 0.07142858), ('200', 0.07142858), ('discuss', 0.07142858), ('We', 0.07142858), ('attach', 0.07142858), ('power', 0.07142858), ('jan', 0.07142858), ('davissumm', 0.07142858)]",situat,0.0714285
514,514,514,"['kristin', 'thank', 'california', 'updat', 'pleas', 'continu', 'includ', 'intelleg', 'report', 'regard', 'situat', 'california', 'phillip']","[('california', 0.12000002), ('intelleg', 0.080000006), ('continu', 0.080000006), ('situat', 0.080000006), ('regard', 0.080000006), ('report', 0.080000006), ('kristin', 0.080000006), ('updat', 0.080000006), ('pleas', 0.080000006), ('includ', 0.080000006)]",california,0.1200000
515,515,515,"['andrea', 'pleas', 'resend', 'first', 'three', 'resum', 'phillip']","[('andrea', 0.14285715), ('pleas', 0.14285715), ('resend', 0.14285715), ('first', 0.14285715), ('three', 0.14285715), ('resum', 0.14285715), ('phillip', 0.14285715)]",andrea,0.1428571
516,516,516,"['north', 'america', 'corp', 'from', 'andrea', 'richard', 'enron', '01102001', '1249', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'analyst', 'rotat', 'phillip', 'attach', 'resum', 'analyst', 'rotat', 'If', 'interest', 'may', 'contact', 'directli']","[('phillip', 0.0566038), ('analyst', 0.0566038), ('rotat', 0.0566038), ('attach', 0.03773585), ('subject', 0.03773585), ('cc', 0.03773585), ('resum', 0.03773585), ('contact', 0.03773585), ('may', 0.03773585), ('K', 0.03773585)]",phillip,0.056603
517,517,517,"['pleas', 'keep', 'confidenti']","[('pleas', 0.33333334), ('keep', 0.33333334), ('confidenti', 0.33333334)]",pleas,0.3333333
518,518,518,"['jim', 'here', 'key', 'ga', 'contact', 'work', 'home', 'cell', 'phillip', 'allen', 'x37041', '7134638626', '7134104679', 'mike', 'grigsbi', 'x37031', '7137801022', '7134086256', 'keith', 'holst', 'x37069', '7136675889', '7135029402', 'pleas', 'call', 'signific', 'develop', 'phillip']","[('phillip', 0.054545477), ('x37069', 0.036363635), ('7136675889', 0.036363635), ('7134086256', 0.036363635), ('keith', 0.036363635), ('holst', 0.036363635), ('x37031', 0.036363635), ('signific', 0.036363635), ('pleas', 0.036363635), ('mike', 0.036363635)]",phillip,0.05454547
519,519,519,"['financi', '6', 'west', 'desk', '14', 'mid', 'market', '16']","[('financi', 0.125), ('6', 0.125), ('west', 0.125), ('desk', 0.125), ('14', 0.125), ('mid', 0.125), ('market', 0.125), ('16', 0.125)]",financi,0.12
520,520,520,"['luci', 'the', 'apart', 'new', 'tenant', 'sinc', 'decemb', '15th', '12812131620a20b25323839', 'are', 'run', 'apart', 'complex', 'motel', 'pleas', 'updat', 'leas', 'inform', '112', 'rentrol', 'email', 'afternoon', 'phillip']","[('apart', 0.06666669), ('inform', 0.044444446), ('rentrol', 0.044444446), ('updat', 0.044444446), ('leas', 0.044444446), ('motel', 0.044444446), ('112', 0.044444446), ('email', 0.044444446), ('run', 0.044444446), ('afternoon', 0.044444446)]",apart,0.0666666
521,521,521,"['larri', 'Do', 'want', 'loan', 'wire', 'amount', 'exactli', '11', 'million', 'phillip']","[('larri', 0.1), ('Do', 0.1), ('want', 0.1), ('loan', 0.1), ('wire', 0.1), ('amount', 0.1), ('exactli', 0.1), ('11', 0.1), ('million', 0.1), ('phillip', 0.1)]",larri,0.
522,522,522,"['thank', 'repres', 'matt', 'phillip']","[('thank', 0.25), ('repres', 0.25), ('matt', 0.25), ('phillip', 0.25)]",thank,0.2
523,523,523,"['georg', 'here', 'spreadsheet', 'illustr', 'payout', 'invest', 'builder', 'profit', 'check', 'math', 'look', 'like', 'builder', 'profit', 'would', 'recoup', 'first', 'year', 'oper', 'At', 'perman', 'financ', '11', 'would', 'paid', 'leav', '3', 'pay', '1st', 'year', 'sinc', 'almost', '80', 'builder', 'profit', 'repaid', 'time', 'invest', 'I', 'feel', '6535', 'fair', 'split', 'howev', 'I', 'mention', 'earlier', 'I', 'think', 'negoti', 'layer', 'addit', 'equiti', 'part', 'construct', 'contract', 'just', 'begin', 'brainstorm', 'construct', 'agreement', 'might', 'look', 'like', 'idea', '1', 'fix', 'construct', 'profit', '14', 'million', 'builder', 'doesnt', 'benefit', 'higher', 'cost', 'rather', 'suffer', 'equiti', 'holder', '2', '5', 'equiti', 'meet', 'time', 'cost', 'origin', 'plan', '51sq', 'ft', 'phase', '1', 'complet', 'novemb', '5', 'equiti', 'budget', 'ahead', 'schedul', '5', 'equiti', 'budget', 'behind', 'schedul', 'thi', 'way', 'thing', 'go', 'accord', 'plan', 'final', 'split', 'would', '6040', 'could', 'favor', '5545', 'I', 'realiz', 'budget', 'schedul', 'must', 'discuss', 'agre', 'upon', 'feel', 'free', 'call', 'home', '7134638626', 'phillip']","[('equiti', 0.026200972), ('I', 0.021834131), ('builder', 0.021834131), ('profit', 0.021834131), ('construct', 0.017467285), ('5', 0.017467285), ('budget', 0.017467285), ('would', 0.017467285), ('schedul', 0.017467285), ('invest', 0.013100449)]",equiti,0.02620097
524,524,524,"['luci', 'here', 'schedul', 'recent', 'util', 'bill', 'overag', 'there', 'alot', 'overag', 'It', 'probabl', 'get', 'wors', 'month', 'cold', 'weather', 'you', 'need', 'clear', 'new', 'tenant', 'electr', 'cap', 'thi', 'need', 'handwritten', 'new', 'leas', 'I', 'go', 'fax', 'copi', 'bill', 'support', 'spreadsheet', 'We', 'also', 'need', 'write', 'short', 'letter', 'remind', 'everyon', 'cap', 'need', 'conserv', 'energi', 'dont', 'want', 'exceed', 'cap', 'I', 'write', 'someth', 'today', 'wait', 'copi', 'bill', 'letter', 'start', 'collect', 'phillip']","[('need', 0.04424786), ('cap', 0.03539827), ('bill', 0.03539827), ('letter', 0.026548686), ('I', 0.026548686), ('write', 0.026548686), ('new', 0.026548686), ('copi', 0.026548686), ('overag', 0.026548686), ('We', 0.01769911)]",need,0.0442478
525,525,525,"['We', 'understand', 'var', 'can', 'pleas', 'get', 'u', 'detail', 'report', 'compon', 'var', 'report', 'produc', 'the', 'sooner', 'better', 'phillip']","[('report', 0.09375001), ('var', 0.09375001), ('detail', 0.062499993), ('better', 0.062499993), ('sooner', 0.062499993), ('the', 0.062499993), ('produc', 0.062499993), ('compon', 0.062499993), ('We', 0.062499993), ('can', 0.062499993)]",report,0.0937500
526,526,526,"['ted', 'andrea', 'analyst', 'pool', 'ask', 'fill', 'request', 'can', 'help', 'expedit', 'process', 'phillip']","[('can', 0.08333334), ('fill', 0.08333334), ('process', 0.08333334), ('expedit', 0.08333334), ('help', 0.08333334), ('ted', 0.08333334), ('request', 0.08333334), ('analyst', 0.08333334), ('pool', 0.08333334), ('andrea', 0.08333334)]",can,0.0833333
527,527,527,"['frank', 'did', 'receiv', 'inform', 'san', 'marco', 'apart', 'I', 'left', 'sever', 'messag', 'offic', 'follow', 'you', 'mention', 'plate', 'fairli', 'full', 'are', 'busi', 'look', 'project', 'As', 'I', 'mention', 'I', 'would', 'interest', 'speak', 'advisor', 'least', 'sound', 'board', 'key', 'issu', 'pleas', 'email', 'call', 'phillip', 'allen', 'pallenenroncom', '7138537041']","[('I', 0.04938277), ('mention', 0.03703706), ('board', 0.024691358), ('issu', 0.024691358), ('would', 0.024691358), ('interest', 0.024691358), ('speak', 0.024691358), ('advisor', 0.024691358), ('least', 0.024691358), ('sound', 0.024691358)]",I,0.0493827
528,528,528,"['question', '1229', 'rentrol', 'there', 'two', 'deposit', 'label', 'one', '150', '75', 'which', 'apart', '20a', '13', 'util', 'overag', '26', '44', 'where', 'get', 'amount', 'for', 'period', 'what', 'go', '42', 'Do', 'evict', 'tenant', 'unclean', 'that', 'creat', 'apart', 'spend', 'lot', 'money', 'time', 'remodel', 'I', 'would', 'rather', 'tri', 'deal', 'tenant', 'first', 'ask', 'clean', 'apart', 'fix', 'anyth', 'wrong', 'like', 'leaki', 'pipe', 'If', 'doesnt', 'work', 'tell', 'clean', 'apart', 'charg', 'labor', 'then', 'perform', 'monthli', 'inspect', 'ensur', 'damag', 'properti', 'thi', 'tenant', 'sinc', 'septemb', '1998', 'I', 'dont', 'want', 'run', 'I', 'check', 'bank', 'I', 'see', 'deposit', 'made', 'tuesday', 'I', 'couldnt', 'check', 'total', 'rentrol', 'bank', 'Is', 'right', 'ha', 'deposit', 'made', 'yet', 'A', 'rentrol', 'jan', '5th', 'follow', 'shortli', 'phillip']","[('I', 0.031088192), ('apart', 0.025906807), ('deposit', 0.020725433), ('tenant', 0.020725433), ('rentrol', 0.020725433), ('bank', 0.015544055), ('made', 0.015544055), ('check', 0.015544054), ('clean', 0.015544054), ('properti', 0.010362689)]",I,0.03108819
529,529,529,['ok'],"[('ok', 1.0)]",,
530,530,530,"['open', 'file', 'pleas', 'send', 'differ', 'format']","[('open', 0.16666667), ('file', 0.16666667), ('pleas', 0.16666667), ('send', 0.16666667), ('differ', 0.16666667), ('format', 0.16666667)]",open,0.1666666
531,531,531,"['I', 'cant', 'open', 'winmaildat', 'file', 'send', 'differ', 'format']","[('I', 0.125), ('cant', 0.125), ('open', 0.125), ('winmaildat', 0.125), ('file', 0.125), ('send', 0.125), ('differ', 0.125), ('format', 0.125)]",I,0.12
532,532,532,"['nov', '30th', 'forward', 'tim', 'beldenhouect', '12052000', '0544', 'AM', 'kristian', 'J', 'land', '12012000', '0354', 'PM', 'To', 'christoph', 'F', 'calgerpdxectect', 'jake', 'thomashouectect', 'frank', 'W', 'vickershouectect', 'elliot', 'mainzerpdxectect', 'michael', 'mcdonaldsfectect', 'david', 'parquetsfectect', 'laird', 'dyersfectect', 'jim', 'buerklepdxectect', 'jim', 'gilbertpdxectect', 'terri', 'W', 'donovanhouectect', 'jeff', 'G', 'slaughterenrondevelopmentenrondevelop', 'Ed', 'clarkpdxectect', 'saji', 'johnhouectect', 'michael', 'etringerhouectect', 'cc', 'alan', 'comnespdxectect', 'tim', 'beldenhouectect', 'robert', 'badeerhouectect', 'matt', 'motleypdxectect', 'mike', 'swerzbinhouectect', 'todd', 'perrypdxectect', 'jeffrey', 'ohpdxectect', 'subject', 'new', 'gener', 'nov', '30th']","[('W', 0.02343752), ('nov', 0.023437519), ('30th', 0.023437519), ('tim', 0.023437519), ('jim', 0.023437519), ('michael', 0.023437519), ('saji', 0.015624999), ('etringerhouectect', 0.015624999), ('johnhouectect', 0.015624999), ('cc', 0.015624999)]",W,0.0234375
533,533,533,"['We', 'met', 'gov', 'davi', 'thursday', 'even', 'LA', 'In', 'attend', 'ken', 'lay', 'governor', 'governor', 'staff', 'director', 'kari', 'dohn', 'the', 'gov', 'spent', 'hour', 'half', 'u', 'cover', 'suggest', 'idea', 'He', 'would', 'like', 'addit', 'thought', 'u', 'tuesday', 'next', 'week', 'prepar', 'state', 'state', 'address', 'follow', 'monday', 'attach', 'end', 'memo', 'list', 'solut', 'propos', 'base', 'discuss', 'sever', 'well', 'background', 'materi', 'jeff', 'dasovich', 'I', 'prepar', 'below', 'note', 'meet', 'regard', 'propos', 'governor', 'idea', 'well', 'overview', 'situat', 'base', 'governor', 'comment', 'overview', 'We', 'made', 'great', 'progress', 'ensur', 'understand', 'differ', 'gener', 'open', 'channel', 'ongo', 'commun', 'administr', 'the', 'gov', 'want', 'util', 'go', 'bankrupt', 'seem', 'predispos', 'rate', 'relief', 'modest', 'util', 'look', 'credit', 'guarante', 'hi', 'staff', 'work', 'latter', 'clearli', 'intrigu', 'idea', 'He', 'talk', 'mainli', 'term', 'rais', 'rate', 'uncap', 'retail', 'level', 'He', 'also', 'want', 'use', 'gener', 'control', 'benefit', 'california', 'consum', 'includ', 'utilityown', 'gener', 'would', 'dedic', 'consum', 'costplu', 'basi', 'excess', 'muni', 'power', 'estim', '3000mw', 'He', 'forese', 'mix', 'market', 'orient', 'solut', 'well', 'interventionist', 'solut', 'allow', 'fix', 'problem', '02', 'provid', 'polit', 'cover', 'our', 'propos', 'I', 'attach', 'outlin', 'put', 'front', 'also', 'includ', 'forward', 'price', 'inform', 'sever', 'provid', 'He', 'seem', 'interest', '1', 'buy', 'signific', 'demand', '2', 'state', 'set', 'goal', 'x000', 'MW', 'new', 'gener', 'date', 'certain', '3', 'get', 'util', 'gradual', 'buy', 'power', 'forward', '4', 'set', 'group', 'rate', 'analyst', 'nonadvoc', 'develop', 'solut', 'number', 'issu', 'includ', 'design', 'portfolio', 'forward', 'purchas', 'term', 'util', 'He', 'also', 'quit', 'interest', 'examin', 'incent', 'surround', 'ldc', 'ga', 'purchas', 'As', 'alreadi', 'mention', 'also', 'favor', 'dispos', 'find', 'state', 'sponsor', 'credit', 'support', 'util', 'hi', 'idea', 'the', 'gov', 'read', 'list', 'idea', 'obvious', 'seriou', 'consider', 'mere', 'brainstorm', 'some', 'idea', 'would', 'requir', 'legisl', 'action', 'state', 'may', 'build', 'make', 'buildtransf', 'arrang', 'coupl', 'gener', 'plant', 'the', 'gov', 'feel', 'strongli', 'show', 'consum', 'get', 'someth', 'return', 'bear', 'rate', 'increas', 'thi', 'frequent', 'recur', 'theme', 'util', 'would', 'sell', 'output', 'gener', 'still', 'costplu', 'basi', 'consum', 'municip', 'utilti', 'would', 'requir', 'sell', 'excess', 'gener', 'california', 'state', 'univers', 'includ', 'uccsu', 'commun', 'colleg', 'would', 'wide', 'deploy', 'distribut', 'gener', 'expand', 'instat', 'ga', 'product', 'take', 'state', 'land', 'ga', 'royalti', 'kind', 'negoti', 'directli', 'tribe', 'state', 'govern', 'west', 'addtion', 'ga', 'suppli', 'empow', 'exist', 'state', 'agenc', 'approvecoordin', 'power', 'plant', 'mainten', 'schedul', 'avoid', 'much', 'gener', 'servic', 'one', 'time', 'condit', 'emiss', 'offset', 'commit', 'sell', 'power', 'longer', 'term', 'state', 'either', 'elimin', 'iso', 'sharpli', 'curtail', 'function', 'want', 'hear', 'nordpool', 'worksjeff', 'someon', 'schroeder', 'group', 'abl', 'help', 'want', 'condit', 'new', 'gener', 'commit', 'sell', 'state', 'We', 'made', 'headway', 'idea', 'could', 'instead', 'requir', 'util', 'buy', 'portion', 'forward', 'requir', 'new', 'instat', 'gener', 'therebi', 'accomplish', 'thing', 'without', 'use', 'command', 'control', 'approach', 'gener', 'securit', 'uncollect', 'power', 'purchas', 'cost', 'To', 'do', 'jeff', 'Id', 'like', 'prevail', 'assembl', 'group', 'thought', 'get', 'kari', 'He', 'want', 'see', '5', 'year', 'fix', 'power', 'price', 'peak', 'offpeak', 'baseload', '5', 'one', 'year', 'strip', 'He', 'want', 'comment', 'propos', 'tuesday', 'He', 'would', 'like', 'thought', 'pitch', 'consum', 'get', 'deal', 'He', 'want', 'assembl', 'group', 'energi', 'guru', 'help', 'sort', 'forward', 'contract', 'issu', 'thank', 'everyon', 'help', 'We', 'made', 'progress', 'today']","[('gener', 0.017639378), ('state', 0.016282497), ('He', 0.014925611), ('want', 0.010854964), ('would', 0.010854964), ('util', 0.010854964), ('idea', 0.010854964), ('power', 0.00949808), ('forward', 0.008141198), ('gov', 0.008141197)]",gener,0.01763937
534,534,534,"['trade', 'profit', 'P', 'allen', '200', 'M', 'grigsbi', '463', 'rest', 'desk', '282', 'total', '945', 'I', 'view', 'bonu', 'partli', 'attribut', 'trade', 'partli', 'group', 'perform', 'here', 'thought', 'minimum', 'market', 'maximum', 'cash', '2', 'MM', '4', 'MM', '6', 'MM', 'equiti', '2', 'MM', '4', 'MM', '6', 'MM', 'here', 'mike', 'number', 'I', 'made', 'adjust', 'minimum', 'market', 'maximum', 'cash', '2', 'MM', '3', 'MM', '4', 'MM', 'equiti', '4', 'MM', '7', 'MM', '12', 'MM', 'I', 'given', 'expect', 'speech', 'might', 'point', 'phillip']","[('MM', 0.11304377), ('4', 0.043478318), ('I', 0.034782637), ('2', 0.034782637), ('partli', 0.026086962), ('6', 0.026086962), ('here', 0.026086962), ('minimum', 0.026086962), ('maximum', 0.026086962), ('market', 0.026086962)]",MM,0.1130437
535,535,535,"['hunter', 'S', 'shive', '12282000', '0715', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'larri', 'I', 'abl', 'scan', '98', '99', 'tax', 'return', 'adob', 'here', 'plu', 'excel', 'file', 'net', 'worth', 'statement', 'If', 'troubl', 'download', 'print', 'file', 'let', 'know', 'I', 'fax', 'let', 'talk', 'later', 'today', 'phillip', 'PS', 'pleas', 'rememb', 'get', 'jim', 'murnan', 'info', 'need']","[('phillip', 0.031250022), ('I', 0.031250022), ('let', 0.031250022), ('file', 0.031250022), ('know', 0.020833334), ('print', 0.020833334), ('troubl', 0.020833334), ('worth', 0.020833334), ('statement', 0.020833334), ('download', 0.020833334)]",phillip,0.03125002
536,536,536,"['gentlemen', 'I', 'continu', 'speak', 'attorney', 'help', 'invest', 'structur', 'mortgag', 'broker', 'help', 'financ', 'regard', 'financ', 'I', 'work', 'jim', 'murnan', 'pinnacl', 'mortgag', 'houston', 'I', 'sent', 'inform', 'project', 'need', 'financi', 'inform', 'can', 'pleas', 'send', 'hi', 'contact', 'inform', 'phone', '7137815810', 'fax', '7137816614', 'email', 'jim123pdqnet', 'I', 'know', 'larri', 'work', 'bank', 'need', 'inform', 'I', 'hope', 'pull', 'togeth', 'afternoon', 'I', 'took', 'liberti', 'call', 'thoma', 'ream', 'frog', 'pond', 'document', 'He', 'posit', 'experi', 'overal', 'He', 'seem', 'pleas', 'bookkeep', 'inform', 'flow', 'investor', 'I', 'think', 'discu', 'procedur', 'advanc', 'let', 'continu', 'speak', 'email', 'frequent', 'new', 'develop', 'occur', 'phillip']","[('I', 0.052631743), ('inform', 0.03947378), ('financ', 0.01973685), ('pleas', 0.01973685), ('need', 0.01973685), ('He', 0.01973685), ('work', 0.01973685), ('email', 0.01973685), ('mortgag', 0.01973685), ('speak', 0.01973685)]",I,0.05263174
537,537,537,"['jim', 'I', 'would', 'appreci', 'help', 'locat', 'financ', 'project', 'I', 'describ', 'last', 'week', 'the', 'project', '134', 'unit', 'apart', 'complex', 'san', 'marco', 'there', 'builderdevelop', 'plu', 'possibl', 'coupl', 'investor', 'involv', 'As', 'I', 'mention', 'last', 'week', 'I', 'would', 'like', 'find', 'interim', 'financ', 'land', 'construct', 'semiperm', 'requir', 'investor', 'person', 'guarante', 'If', 'creativ', 'way', 'structur', 'deal', 'I', 'would', 'like', 'hear', 'suggest', 'one', 'idea', 'mention', 'obtain', 'forward', 'commit', 'order', 'reduc', 'equiti', 'requir', 'I', 'would', 'also', 'appreci', 'hear', 'deal', 'natur', 'normal', 'financ', 'specif', 'transit', 'interim', 'perman', 'financ', 'I', 'could', 'use', 'quick', 'lesson', 'number', 'import', 'bank', 'I', 'fax', 'project', 'summari', 'and', 'I', 'builderdevelop', 'email', 'fax', 'financi', 'statement', 'let', 'know', 'els', 'need', 'the', 'land', 'schedul', 'close', 'mid', 'januari', 'phillip', 'allen']","[('I', 0.052631807), ('financ', 0.026315859), ('would', 0.026315859), ('project', 0.02105267), ('requir', 0.015789485), ('builderdevelop', 0.015789485), ('week', 0.015789485), ('appreci', 0.015789485), ('mention', 0.015789485), ('land', 0.015789485)]",I,0.05263180
538,538,538,"['jeff', 'everyth', 'done', 'close', 'leander', 'deal', '29th', 'I', 'fed', 'exd', 'close', 'statement', 'set', 'wire', 'transfer', 'go', 'tomorrow', 'when', 'money', 'requir', 'escrow', 'road', 'util', 'connect', 'other', 'rezon', 'cost', 'what', 'properti', 'tax', 'the', 'burnet', 'land', 'lost', 'ag', 'exempt', 'I', 'own', 'are', 'step', 'take', 'hold', 'exempt', 'properti', 'can', 'explain', 'risk', 'likelihood', 'rollback', 'tax', 'properti', 'rezon', 'Do', 'need', 'find', 'farmer', 'give', 'graze', 'right', 'what', 'import', 'date', 'come', 'gener', 'statu', 'rezon', 'annex', 'I', 'worri', 'whole', 'countri', 'slip', 'recess', 'american', 'multifamili', 'walk', 'deal', 'So', 'I', 'want', 'make', 'sure', 'push', 'process', 'fast', 'phillip']","[('I', 0.031250082), ('rezon', 0.025000047), ('properti', 0.025000047), ('what', 0.018750018), ('tax', 0.018750018), ('exempt', 0.018750018), ('deal', 0.018750018), ('close', 0.018750018), ('lost', 0.012499997), ('land', 0.012499997)]",I,0.03125008
539,539,539,"['steve', 'I', 'send', 'varieti', 'chart', 'price', 'oper', 'detail', 'If', 'need', 'call', 'question', 'home', 'number', '7134638626', 'As', 'far', 'recommend', 'short', 'list', '1', 'examin', 'ldc', 'incent', 'rate', 'program', 'current', 'methodolog', 'reward', 'sale', 'monthli', 'index', 'without', 'enough', 'consider', 'futur', 'replac', 'cost', 'the', 'result', 'ldc', 'sell', 'ga', 'inject', 'storag', 'daili', 'price', 'run', 'monthli', 'index', 'thi', 'creat', 'shortag', 'later', 'month', '2', 'california', 'storag', 'capac', 'pipelin', 'capac', 'meet', 'demand', 'investig', 'wasnt', 'maxim', 'oper', 'specif', 'question', 'includ', '1', 'whi', 'march', '00may', '00', 'werent', 'total', 'system', 'receipt', 'higher', 'order', 'fill', 'storag', '2', 'whi', 'mani', 'exampl', 'ofo', 'weekend', 'push', 'away', 'much', 'ga', 'socal', 'system', 'I', 'believ', 'socal', 'ga', 'extrem', 'poor', 'job', 'forecast', 'demand', 'they', 'repeatedli', 'estim', 'would', 'receiv', 'ga', 'inject', 'capabl', 'inject', 'far', 'le', '3', 'similar', 'power', 'market', 'much', 'benchmark', 'short', 'term', 'price', 'not', 'enough', 'forward', 'hedg', 'done', 'major', 'ldc', 'By', 'design', 'custom', 'short', 'float', 'rate', 'thi', 'market', 'long', 'histor', 'It', 'buyer', 'market', 'consum', 'benefit', 'call', 'need', 'input', 'phillip']","[('ga', 0.018797068), ('short', 0.015037638), ('storag', 0.015037638), ('market', 0.015037638), ('ldc', 0.015037638), ('inject', 0.015037638), ('price', 0.015037638), ('system', 0.01127821), ('capac', 0.01127821), ('demand', 0.01127821)]",ga,0.01879706
540,540,540,"['luci', 'here', 'rentrol', 'week', 'the', 'one', 'sent', '1124', 'look', 'good', 'It', 'seem', 'like', 'peopl', 'pay', 'time', 'did', 'rent', 'effici', 'elderli', 'woman', 'fix', 'incom', 'Go', 'ahead', 'use', 'judgement', 'rent', 'price', 'vacant', 'unit', 'If', 'need', 'lower', 'rent', '10', '20', 'get', 'thing', 'full', 'go', 'ahead', 'I', 'offic', 'thursday', 'I', 'talk', 'friday', 'phillip']","[('rent', 0.042553235), ('I', 0.03191491), ('ahead', 0.03191491), ('need', 0.021276593), ('If', 0.021276593), ('unit', 0.021276593), ('10', 0.021276593), ('price', 0.021276593), ('vacant', 0.021276593), ('judgement', 0.021276593)]",rent,0.04255323
541,541,541,"['moniqu', 'sanchez', 'jay', 'reitmey', 'randi', 'gay', 'matt', 'lenhart']","[('moniqu', 0.125), ('sanchez', 0.125), ('jay', 0.125), ('reitmey', 0.125), ('randi', 0.125), ('gay', 0.125), ('matt', 0.125), ('lenhart', 0.125)]",moniqu,0.12
542,542,542,"['john', 'here', 'north', 'stanfield', 'forecast', 'jan', 'suppli', 'jan', '01', 'dec', '00', 'jan', '00', 'suma', '900', '910', '815', 'jackson', 'Pr', '125', '33', '223', 'roosevelt', '300', '298', '333', 'total', 'suppli', '1325', '1241', '1371', 'demand', 'north', 'chehali', '675', '665', '665', 'south', 'chehali', '650', '575', '706', 'total', 'demand', '1325', '1240', '1371', 'roosevelt', 'capac', '495', 'let', 'know', 'forecast', 'differ', 'phillip']","[('jan', 0.041237153), ('00', 0.030927848), ('total', 0.030927848), ('1371', 0.030927848), ('demand', 0.030927848), ('chehali', 0.030927848), ('roosevelt', 0.030927848), ('665', 0.030927848), ('1325', 0.030927848), ('forecast', 0.030927848)]",jan,0.04123715
543,543,543,"['pleas', 'assign', 'global', 'id', 'four', 'junior', 'trader', 'list', 'dawn', 'origin', 'email', 'the', 'trade', 'need', 'uniqu', 'id', 'thank']","[('id', 0.090909116), ('origin', 0.06060606), ('list', 0.06060606), ('uniqu', 0.06060606), ('need', 0.06060606), ('trade', 0.06060606), ('the', 0.06060606), ('email', 0.06060606), ('pleas', 0.06060606), ('junior', 0.06060606)]",id,0.09090911
544,544,544,"['receiv', 'fax', 'thank', 'I', 'might', 'sell', 'qqq', 'take', 'loss', 'tax', 'but', 'I', 'would', 'roll', 'right', 'basket', 'individu', 'technolog', 'stock', 'I', 'think', 'I', 'mention', 'previous', 'I', 'decid', 'use', 'account', 'kid', 'colleg']","[('I', 0.10714294), ('mention', 0.03571428), ('decid', 0.03571428), ('technolog', 0.03571428), ('stock', 0.03571428), ('think', 0.03571428), ('basket', 0.03571428), ('previous', 0.03571428), ('kid', 0.03571428), ('account', 0.03571428)]",I,0.1071429
545,545,545,"['fax', 'number', '7136462391']","[('fax', 0.33333334), ('number', 0.33333334), ('7136462391', 0.33333334)]",fax,0.3333333
546,546,546,"['pleas', 'approv', 'him', 'for', 'thi', 'phillip', 'will', 'not', 'BE', 'abl', 'TO', 'get', 'into', 'hi', 'email', 'system', 'TO', 'DO', 'thi', 'IF', 'you', 'have', 'ani', 'question', 'OR', 'problem', 'pleas', 'call', 'ME', 'AT', 'x37257', 'thank', 'you', 'ina', 'IF', 'thi', 'IS', 'A', 'problem', 'TO', 'DO', 'IT', 'thi', 'way', 'pleas', 'call', 'ME', 'and', 'I', 'will', 'walk', 'phillip', 'through', 'the', 'step', 'TO', 'approv', 'IF', 'you', 'call', 'him', 'HE', 'will', 'direct', 'IT', 'TO', 'ME', 'anyway', 'arsystemmailmanenroncom', '12182000', '070704', 'PM', 'To', 'phillipkallenenroncom', 'cc', 'subject', 'your', 'approv', 'overdu', 'access', 'request', 'barrytycholizenroncom', 'thi', 'request', 'pend', 'approv', '5', 'day', 'pleas', 'click', 'httpitcappscorpenroncomsrrsauthemaillinkaspid000000000009659pag', 'approv', 'review', 'act', 'upon', 'request', 'request', 'ID', '000000000009659', 'request', 'creat', 'date', '12800', '82347', 'AM', 'request', 'for', 'barrytycholizenroncom', 'resourc', 'name', 'vpn', 'resourc', 'type', 'applic']","[('request', 0.03684223), ('TO', 0.031579036), ('thi', 0.031579036), ('approv', 0.031579036), ('pleas', 0.026315853), ('you', 0.021052664), ('IF', 0.021052664), ('call', 0.021052664), ('ME', 0.021052664), ('will', 0.021052664)]",request,0.0368422
547,547,547,"['georg', 'larri', 'If', 'possibl', 'I', 'would', 'like', 'get', 'togeth', 'columbu', 'larri', 'suggest', 'thursday', 'afternoon', 'day', 'realli', 'work', 'let', 'know', 'would', 'work', 'I', 'think', 'around', '2', '230', 'pm', 'I', 'tri', 'email', 'question', 'I', 'latest', 'proforma', 'tomorrow', 'phillip']","[('I', 0.07575767), ('work', 0.045454565), ('larri', 0.045454565), ('would', 0.045454565), ('pm', 0.03030303), ('around', 0.03030303), ('2', 0.03030303), ('230', 0.03030303), ('think', 0.03030303), ('tri', 0.03030303)]",I,0.0757576
548,548,548,"['jeff', 'hear', 'new', 'noi', 'file', 'I', 'ad', 'oper', 'statement', '1999', 'partial', 'year', 'I', 'tri', 'email', 'photo', 'soon', 'phillip']","[('I', 0.08571431), ('partial', 0.057142857), ('statement', 0.057142857), ('soon', 0.057142857), ('photo', 0.057142857), ('email', 0.057142857), ('tri', 0.057142857), ('year', 0.057142857), ('jeff', 0.057142857), ('1999', 0.057142857)]",I,0.0857143
549,549,549,"['jeff', 'the', 'file', 'attach', 'contain', 'current', 'rentrol', '2000', 'oper', 'statement', 'proforma', 'oper', 'statement']","[('oper', 0.12500003), ('statement', 0.12500003), ('jeff', 0.083333336), ('the', 0.083333336), ('file', 0.083333336), ('attach', 0.083333336), ('contain', 0.083333336), ('current', 0.083333336), ('rentrol', 0.083333336), ('2000', 0.083333336)]",oper,0.1250000
550,550,550,"['ye', 'trade', 'report', 'whalley', 'He', 'lavorato', 'bo']","[('ye', 0.14285715), ('trade', 0.14285715), ('report', 0.14285715), ('whalley', 0.14285715), ('He', 0.14285715), ('lavorato', 0.14285715), ('bo', 0.14285715)]",ye,0.1428571
551,551,551,"['onenroncom', 'dmccartyenroncom', 'cc', 'subject', 'california', 'summari', 'attach', 'final', 'version', 'california', 'summari', 'report', 'map', 'graph', 'histor', 'data', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'bcc', 'subject', 'addit', 'california', 'load', 'inform', 'addit', 'chart', 'attempt', 'explain', 'increas', 'demand', 'hydro', 'load', 'growth', 'temperatur', 'mani', 'assumpt', 'made', 'the', 'data', 'solid', 'number', 'first', 'set', 'graph']","[('california', 0.04705887), ('load', 0.035294134), ('graph', 0.035294134), ('addit', 0.035294134), ('data', 0.035294134), ('summari', 0.035294134), ('subject', 0.035294134), ('cc', 0.035294134), ('hydro', 0.023529408), ('made', 0.023529408)]",california,0.0470588
552,552,552,"['attach', 'pleas', 'find', 'spreadsheet', 'contain', 'referenc', 'inform']","[('attach', 0.14285715), ('pleas', 0.14285715), ('find', 0.14285715), ('spreadsheet', 0.14285715), ('contain', 0.14285715), ('referenc', 0.14285715), ('inform', 0.14285715)]",attach,0.1428571
553,553,553,"['larri', '10', 'AM', 'tomorrow', 'good', 'If', 'want', 'email', 'anyth', 'tonight', 'pleas', 'use', 'pallen70hotmailcom', 'phillip']","[('anyth', 0.07142858), ('want', 0.07142858), ('pallen70hotmailcom', 0.07142858), ('use', 0.07142858), ('pleas', 0.07142858), ('tonight', 0.07142858), ('larri', 0.07142858), ('email', 0.07142858), ('AM', 0.07142858), ('good', 0.07142858)]",anyth,0.0714285
554,554,554,"['luci', 'I', 'want', 'get', 'leas', 'data', 'tenant', 'data', 'updat', 'the', 'critic', 'inform', '1', 'move', 'leas', 'start', 'date', '2', 'leas', 'expir', 'date', '3', 'rent', '4', 'deposit', 'If', 'info', 'fill', 'item', '1', 'number', 'occup', '2', 'workplac', 'all', 'new', 'leas', 'long', 'form', 'the', 'apart', 'new', 'tenant', 'sinc', 'column', 'updat', 'back', 'octob', '35911121721222325283338', 'I', 'realli', 'need', 'get', 'tomorrow', 'pleas', 'use', 'rentroll1215', 'file', 'input', 'correct', 'inform', 'tenant', 'and', 'email', 'tomorrow', 'you', 'inform', 'leas', 'applic', 'phillip']","[('leas', 0.04918044), ('inform', 0.03278693), ('tenant', 0.03278693), ('the', 0.024590177), ('updat', 0.024590177), ('1', 0.024590177), ('2', 0.024590177), ('I', 0.024590177), ('data', 0.024590177), ('new', 0.024590177)]",leas,0.0491804
555,555,555,"['luci', 'here', 'new', 'file', '1215', 'for', 'rentrol', '1208', 'question', '23', '24', 'pay', 'just', 'late', 'move', '25', '33', 'both', 'paid', '130', '1201', '0', '1208', 'what', 'deal', '11', 'look', 'like', 'caught', 'when', 'due', 'pleas', 'email', 'answer', 'phillip']","[('1208', 0.043478284), ('look', 0.028985508), ('caught', 0.028985508), ('1201', 0.028985508), ('0', 0.028985508), ('what', 0.028985508), ('deal', 0.028985508), ('11', 0.028985508), ('paid', 0.028985508), ('like', 0.028985508)]",1208,0.04347828
556,556,556,"['north', 'america', 'corp', 'from', 'rebecca', 'W', 'cantrel', '12132000', '0201', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'Re', 'phillip', 'Is', 'valu', 'axi', 'sheet', '2', 'socalpric', 'spread', 'sheet', 'suppos', 'If', 'right', 'valu', 'million', 'come', 'I', 'cant', 'relat', 'sheet', '1', 'spread', 'sheet', 'As', 'I', 'told', 'mike', 'file', 'outoftim', 'tomorrow', 'supplement', 'comment', 'today', 'along', 'cover', 'letter', 'We', 'fulli', 'understand', 'chart', 'construct', 'ran', 'time', 'today', 'it', 'much', 'better', 'file', 'outoftim', 'supplement', 'time', 'comment', 'file', 'whole', 'thing', 'late', 'particuarli', 'sinc', 'appar', 'fast', 'track', 'thank', 'from', 'phillip', 'K', 'allen', '12132000', '0304', 'PM', 'To', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'jeff', 'dasovichnaenronenron', 'joe', 'hartsoecorpenronenron', 'mari', 'hainhouectect', 'pallenenroncom', 'pkaufmaenroncom', 'richard', 'B', 'sandershouectect', 'richard', 'shapironaenronenron', 'stephani', 'millercorpenronenron', 'steven', 'J', 'keannaenronenron', 'susan', 'J', 'maranaenronenron', 'rebecca', 'W', 'cantrellhouectect', 'cc', 'subject', 'attach', 'two', 'file', 'illustr', 'follow', 'As', 'price', 'rose', 'suppli', 'increas', 'demand', 'decreas', 'now', 'price', 'begin', 'fall', 'respons', 'market', 'respons']","[('file', 0.020491881), ('sheet', 0.020491881), ('phillip', 0.016393488), ('I', 0.012295097), ('J', 0.012295097), ('price', 0.012295097), ('time', 0.012295097), ('valu', 0.012295097), ('richard', 0.012295097), ('comment', 0.012295097)]",file,0.02049188
557,557,557,"['ye', 'use', 'chart', 'doe', 'make', 'sens']","[('ye', 0.16666667), ('use', 0.16666667), ('chart', 0.16666667), ('doe', 0.16666667), ('make', 0.16666667), ('sens', 0.16666667)]",ye,0.1666666
558,558,558,"['forward', 'sarah', 'novoselcorpenron', '12132000', '0535', 'PM', 'randal', 'rich', 'rrichbracepattcom', '12132000', '0513', 'PM', 'To', 'jeffrey', 'watkiss', 'dwatkissbracepattcom', 'jhartsoenroncom', 'jsteffeenroncom', 'llawnerenroncom', 'rebeccawcantrellenroncom', 'richardbsandersenroncom', 'snovoseenroncom', 'cc', 'subject', 'final', 'file', 'version', 'the', 'file', 'version', 'comment', 'san', 'diego', 'ga', 'electr', 'matter', 'ferc', 'attach', 'sandiegodoc']","[('12132000', 0.04054056), ('PM', 0.04054056), ('file', 0.04054056), ('version', 0.04054056), ('comment', 0.027027028), ('ga', 0.027027028), ('subject', 0.027027028), ('final', 0.027027028), ('the', 0.027027028), ('snovoseenroncom', 0.027027028)]",12132000,0.0405405
559,559,559,"['get', 'web', 'free', 'msn', 'explor', 'download', 'httpexplorermsncom', 'rentroll1124xl']","[('get', 0.125), ('web', 0.125), ('free', 0.125), ('msn', 0.125), ('explor', 0.125), ('download', 0.125), ('httpexplorermsncom', 0.125), ('rentroll1124xl', 0.125)]",get,0.12
560,560,560,"['how', '330']","[('how', 0.5), ('330', 0.5)]",how,0.
561,561,561,"['georg', 'I', 'receiv', 'draw', 'they', 'look', 'good', 'first', 'glanc', 'I', 'look', 'depth', 'weekend', 'the', 'proforma', 'winmaildat', 'format', 'I', 'open', 'pleas', 'resend', 'excel', 'pdf', 'format', 'If', 'send', 'pallen70hotmailcom', 'I', 'abl', 'look', 'weekend', 'doe', 'file', 'timelin', 'invest', 'dollar', 'I', 'want', 'get', 'feel', 'start', 'need', 'money', 'phillip']","[('I', 0.07500012), ('look', 0.050000053), ('weekend', 0.03750002), ('format', 0.03750002), ('dollar', 0.024999997), ('abl', 0.024999997), ('doe', 0.024999997), ('file', 0.024999997), ('timelin', 0.024999997), ('invest', 0.024999997)]",I,0.0750001
562,562,562,"['paula', 'I', 'look', 'plan', 'It', 'look', 'fine', 'phillip']","[('look', 0.20000002), ('paula', 0.13333334), ('I', 0.13333334), ('plan', 0.13333334), ('It', 0.13333334), ('fine', 0.13333334), ('phillip', 0.13333334)]",look,0.2000000
563,563,563,"['enclos', 'cost', 'breakdown', 'apprais', 'note', 'construct', 'manag', 'fee', 'cmf', 'state', '125', 'rather', 'standard', 'rate', '10', 'thi', 'increas', 'cost', 'loan', 'cost', 'ratio', '75', 'increas', 'loan', 'amount', 'reduc', 'requir', 'cash', 'equiti', 'also', 'quit', 'confid', 'direct', 'unit', 'lot', 'improv', 'cost', 'high', 'therefor', 'addit', 'room', 'actual', 'bid', 'the', 'met', 'project', 'next', 'door', 'report', 'cost', '49', 'psf', 'without', 'overhead', 'cmf', '5455', 'cmf', 'It', 'appear', 'cash', 'equiti', '1784876', 'howev', 'I', 'fairli', 'sure', 'get', 'project', 'done', '15mm', 'I', 'hope', 'finish', 'proforma', 'today', 'the', 'rental', 'rate', 'project', '1250', '3', 'ada', 'unit', '11501200', '2', 'bedroom', '1425', '3', 'bedroom', 'addit', 'revenu', 'could', 'gener', 'build', 'detach', 'garag', 'would', 'rent', '5075', 'per', 'month', 'winmaildat']","[('cost', 0.032432538), ('cmf', 0.021621665), ('project', 0.021621665), ('the', 0.01621623), ('increas', 0.01621623), ('addit', 0.01621623), ('rate', 0.01621623), ('3', 0.01621623), ('bedroom', 0.01621623), ('unit', 0.01621623)]",cost,0.03243253
564,564,615,"['our', 'sacramento', 'correspond', 'exit', 'news', 'confer', 'gov', 'davi', 'ferc', 'chair', 'hoecker', 'doe', 'sectretari', 'richardson', 'other', 'outlin', 'sever', 'emerg', 'measur', 'includ', 'westwid', 'price', 'cap', 'As', 'soon', 'report', 'file', 'well', 'send', 'attent', 'I', 'expect', 'around', '230', 'pm']","[('file', 0.028571427), ('well', 0.028571427), ('westwid', 0.028571427), ('price', 0.028571427), ('cap', 0.028571427), ('As', 0.028571427), ('soon', 0.028571427), ('report', 0.028571427), ('measur', 0.028571427), ('I', 0.028571427)]",file,0.02857142
565,565,564,"['oniqu', 'sanchez', 'commerci', 'support', 'manag', 'jay', 'reitmey', 'senior', 'specialist', 'ina', 'rangel', 'assist', 'split', 'cost', 'middl', 'market', 'market', 'barri', 'tycholiz', 'director', 'mark', 'whitt', 'director', 'paul', 'lucci', 'manag', 'possibl', 'director', '23', 'tbd', 'Do', 'I', 'need', 'give', 'name', 'oper', 'group', 'special', 'pay', 'I', 'believ', 'mike', 'grigsbi', 'retent', 'payment', 'due', 'year', 'also', 'budget', 'anoth', '150000', 'special', 'payment', 'I', 'know', 'work', 'barri', 'T', 'headcount', 'differ', 'market', 'staff', 'use', 'number', 'let', 'know', 'anyth', 'els', 'need', 'phillip']","[('market', 0.031250045), ('I', 0.031250045), ('director', 0.031250045), ('payment', 0.023437519), ('know', 0.023437517), ('barri', 0.023437517), ('need', 0.023437517), ('special', 0.023437517), ('manag', 0.023437517), ('due', 0.015624996)]",market,0.03125004
566,566,565,"['oniqu', 'sanchez', 'commerci', 'support', 'manag', 'jay', 'reitmey', 'senior', 'specialist', 'ina', 'rangel', 'assist', 'split', 'cost', 'middl', 'market', 'market', 'barri', 'tycholiz', 'director', 'mark', 'whitt', 'director', 'paul', 'lucci', 'manag', 'possibl', 'director', '23', 'tbd', 'Do', 'I', 'need', 'give', 'name', 'oper', 'group', 'special', 'pay', 'I', 'believ', 'mike', 'grigsbi', 'retent', 'payment', 'due', 'year', 'also', 'budget', 'anoth', '150000', 'special', 'payment', 'I', 'know', 'work', 'barri', 'T', 'headcount', 'differ', 'market', 'staff', 'use', 'number', 'let', 'know', 'anyth', 'els', 'need', 'phillip']","[('market', 0.031250045), ('I', 0.031250045), ('director', 0.031250045), ('payment', 0.023437519), ('know', 0.023437517), ('barri', 0.023437517), ('need', 0.023437517), ('special', 0.023437517), ('manag', 0.023437517), ('due', 0.015624996)]",market,0.03125004
567,567,566,"['georg', 'the', 'file', 'open', 'fine', 'I', 'cant', 'open', 'winmaildat', 'file', 'can', 'resend', 'one', 'pdf', 'format', 'thank', 'phillip']","[('file', 0.093750015), ('open', 0.093750015), ('resend', 0.062499993), ('winmaildat', 0.062499993), ('thank', 0.062499993), ('format', 0.062499993), ('pdf', 0.062499993), ('one', 0.062499993), ('georg', 0.062499993), ('fine', 0.062499993)]",file,0.09375001
568,568,567,"['phillip', 'how', 'today', 'I', 'busi', 'I', 'let', 'know', '37', 'iknockum', 'pd', 'until', '111700', '102600', 'pd', '25000', 'count', 'tat', 'pay', 'until', '1026', 'count', 'wrong', 'luci', 'say', 'pay', '12500', 'week', 'shesgo', 'vacat', 'thjat', 'pd', 'luci', 'say', 'I', 'deposit', 'readi', 'isnt', 'due', 'roll', 'I', 'want', 'tell', 'might', 'think', 'didnt', 'pay', 'someth', 'luci', 'say', 'amnt', 'is467800', 'I', 'rent', '23', 'aand', '31', 'may', 'gone', 'tonight', 'I', 'put', 'overtim', 'tri', 'rent', 'someth', 'didnt', 'leav', 'last', 'night', 'until', '700', 'wait', 'someon', 'tonight', 'work', 'late', 'phillip', 'say', 'send', 'rentrol', 'phillip', 'say', 'did', 'I', 'tell', 'I', 'go', 'tri', 'fri', 'sat', 'luci', 'say', 'didnt', 'tell', 'go', 'wade', 'told', 'morn', 'I', 'sent', 'roll', 'get', 'did', 'need', 'weekend', 'I', 'sweetsixteen', 'Im', 'get', 'readi', 'need', 'satthen', 'I', 'get', 'alot', 'done', 'phillip', 'say', 'We', 'talk', 'friday', 'luci', 'say', 'okay', 'see', 'ya', 'later', 'bye', 'luci', 'say', 'I', 'sent', 'roll', 'get', 'phillip', 'say', 'ye', 'thank', 'the', 'follow', 'messag', 'could', 'deliv', 'recipi', 'ye', 'thank']","[('I', 0.054622155), ('say', 0.04621872), ('luci', 0.029411873), ('phillip', 0.025210168), ('get', 0.021008458), ('roll', 0.01680675), ('tell', 0.01680675), ('pay', 0.01680675), ('didnt', 0.01680675), ('until', 0.01680675)]",I,0.05462215
569,569,568,"['onf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'pleas', 'forward', 'anyon', 'team', 'want', 'updat', 'western', 'wholesal', 'matter', 'also', 'give', 'opportun', 'rais', 'state', 'matter', 'want', 'discu', 'jim', 'forward', 'jame', 'D', 'steffesnaenron', '05032001', '0742', 'AM', 'ray', 'alvarez', '05022001', '0540', 'PM', 'To', 'steve', 'waltonhouectect', 'susan', 'J', 'maranaenronenron', 'alan', 'comnespdxectect', 'lesli', 'lawnernaenronenron', 'rebecca', 'W', 'cantrellhouectect', 'donna', 'fultoncorpenronenron', 'jeff', 'dasovichnaenronenron', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'jalexandergibbsbrunscom', 'phillip', 'K', 'allenhouectect', 'cc', 'linda', 'J', 'noskehouectect', 'subject', 'Re', 'western', 'wholesal', 'activ', 'ga', 'power', 'conf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'date', 'everi', 'thursday', 'time', '100', 'pm', 'pacif', '300', 'pm', 'central', '400', 'pm', 'eastern', 'time', 'number', '18882710949', 'host', 'code', '661877', 'jim', 'particip', 'code', '936022', 'everyon', 'els', 'attach', 'tabl', 'ongo', 'ferc', 'issu', 'proceed', 'updat', 'use', 'tomorrow', 'confer', 'call', 'It', 'avail', 'team', 'member', 'O', 'drive', 'pleas', 'feel', 'free', 'reviseadd', 'updat', 'tabl', 'appropri', 'propos', 'agenda', 'tomorrow', 'power', 'discuss', 'ferc', 'market', 'monitor', 'mitig', 'order', 'el009512', 'review', 'upcom', 'file', 'ga', 'respons', 'subpoena', 'socal', 'edison', 'rp00241', 'upcom', 'item', 'misc', 'I', 'unabl', 'particip', 'call', 'tomorrow', 'I', 'attend', 'senat', 'energi', 'resourc', 'committe', 'hear', 'element', 'ferc', 'market', 'monitor', 'mitig', 'order']","[('privileg', 0.015723342), ('commun', 0.015723342), ('call', 0.015723342), ('updat', 0.012578659), ('tomorrow', 0.012578659), ('ferc', 0.012578657), ('pm', 0.012578657), ('I', 0.009433975), ('particip', 0.009433975), ('jame', 0.009433975)]",privileg,0.01572334
570,570,569,"['32', 'I', 'reloc', '32', 'effect', 'dec', '4', 'can', 'set', 'requir', 'equip', 'includ', 'PC', '2', 'flat', 'screen', 'telephon', 'cell', 'phone', 'talk', 'phillip', 'regard', 'set', 'seat', 'right', 'thank', 'advanc', 'barri', 'If', 'question', 'give', 'call', '403', '2453340']","[('set', 0.045454565), ('32', 0.045454565), ('advanc', 0.03030303), ('phillip', 0.03030303), ('regard', 0.03030303), ('seat', 0.03030303), ('right', 0.03030303), ('thank', 0.03030303), ('phone', 0.03030303), ('give', 0.03030303)]",set,0.04545456
571,571,570,"['georg', 'just', 'note', 'check', 'are', 'new', 'develop', 'phillip']","[('georg', 0.125), ('just', 0.125), ('note', 0.125), ('check', 0.125), ('are', 0.125), ('new', 0.125), ('develop', 0.125), ('phillip', 0.125)]",georg,0.12
572,572,571,"['faith', 'regard', '2001', 'plan', 'member', 'west', 'desk', 'follow', 'name', 'titl', 'trade', 'phillip', 'allen', 'VP', 'mike', 'grigsbi', 'director', 'keith', 'holst', 'managerposs', 'director', 'jani', 'tholt', 'director', 'steve', 'south', 'director', 'frank', 'ermi', 'manag', 'tori', 'kuykendal', 'manag', 'matt', 'lenhart', 'analystposs', 'associ', 'moniqu', 'sanchez', 'commerci', 'support', 'manag', 'jay', 'reitmey', 'senior', 'specialist', 'ina', 'rangel', 'assist', 'split', 'cost', 'middl', 'market', 'market', 'barri', 'tycholiz', 'director', 'mark', 'whitt', 'director', 'paul', 'lucci', 'manag', 'possibl', 'director', '23', 'tbd', 'Do', 'I', 'need', 'give', 'name', 'oper', 'group', 'special', 'pay', 'I', 'believ', 'mike', 'grigsbi', 'retent', 'payment', 'due', 'year', 'also', 'budget', 'anoth', '150000', 'special', 'payment', 'I', 'know', 'work', 'barri', 'T', 'headcount', 'differ', 'market', 'staff', 'use', 'number', 'let', 'know', 'anyth', 'els', 'need', 'phillip']","[('director', 0.041666836), ('manag', 0.026041739), ('I', 0.020833371), ('market', 0.02083337), ('need', 0.01562501), ('mike', 0.01562501), ('know', 0.01562501), ('phillip', 0.01562501), ('grigsbi', 0.01562501), ('payment', 0.01562501)]",director,0.04166683
573,573,572,"['onday', 'night', 'ina', 'forward', 'ina', 'rangelhouect', '11032000', '0153', 'PM', 'sherri', 'sorrel', 'ssorrelsvitoltvlyahoocom', '11032000', '015221', 'PM', 'To', 'inarangelenroncom', 'cc', 'subject', 'allen', 'durango', 'hotel', '48', 'HR', 'cancel', 'sale', 'agt', 'jszbatud', 'allenphillip', 'enron', '1400', 'smith', 'houston', 'TX', '77002', 'ina', 'rangel', 'x37257', 'date', 'nov', '03', '2000', 'enron', 'hotel', '06nov', 'doubletre', 'durango', '07nov', '501', 'camino', 'del', 'rio', 'durango', 'CO', '81301', 'telephon', '970', '2596580', 'confirm', '85110885', 'refer', 'd1krac', 'rate', 'rac', 'usd', '8900', 'per', 'night', 'ght', 'addit', 'charg', 'may', 'appli', 'invoic', 'total', '0', 'thank', 'you', '48', 'HR', 'cancel', 'requir', 'thank', 'you', 'for', 'call', 'vitol', 'travel', 'Do', 'you', 'yahoo', 'from', 'homework', 'help', 'love', 'advic', 'yahoo', 'expert', 'answer', 'httpexpertsyahoocom']","[('you', 0.021739174), ('ina', 0.021739174), ('durango', 0.021739174), ('hotel', 0.016304363), ('enron', 0.016304363), ('cancel', 0.016304363), ('HR', 0.016304363), ('48', 0.016304363), ('thank', 0.016304363), ('night', 0.016304363)]",you,0.02173917
574,574,573,['raincheck'],"[('raincheck', 1.0)]",,
575,575,627,"['chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09272000', '0100', 'PM', 'end', '09272000', '0200', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript']","[('meet', 0.044444486), ('start', 0.03333335), ('PM', 0.03333335), ('09272000', 0.03333335), ('descript', 0.03333335), ('scott', 0.03333335), ('date', 0.03333335), ('hunter', 0.022222219), ('S', 0.022222219), ('K', 0.022222219)]",meet,0.04444448
576,576,574,"['As', 'note', 'last', 'email', 'ray', 'nixon', 'expans', 'project', 'colorado', 'incorrect', 'start', 'date', 'My', 'last', 'report', 'show', 'onlin', 'date', 'may', '2001', 'actual', 'anticip', 'onlin', 'date', 'may', '2003', 'the', 'follow', 'list', 'rank', 'qualiti', 'quantiti', 'inform', 'I', 'access', 'wscc', '1', 'CA', 'site', 'offic', 'plant', 'contact', '2', 'pnw', 'site', 'offic', 'plant', 'contact', '3', 'dsw', 'plant', 'contact', '1', 'site', 'offic', 'maricopa', 'counti', 'arizona', '4', 'colorado', 'integr', 'resourc', 'plan', 'If', 'anyon', 'addit', 'inform', 'regard', 'new', 'gener', 'desert', 'southwest', 'colorado', 'plant', 'phone', 'number', 'contact', 'I', 'would', 'greatli', 'appreci', 'receiv', 'contact', 'inform']","[('contact', 0.04109599), ('plant', 0.034246642), ('colorado', 0.0273973), ('offic', 0.0273973), ('site', 0.0273973), ('inform', 0.0273973), ('date', 0.0273973), ('last', 0.020547956), ('I', 0.020547956), ('onlin', 0.020547956)]",contact,0.0410959
577,577,575,"['get', 'your', 'privat', 'free', 'email', 'msn', 'hotmail', 'httpwwwhotmailcom', 'share', 'inform', 'creat', 'public', 'profil', 'httpprofilesmsncom', 'rentroll1027xl', 'rentroll1103xl']","[('inform', 0.0625), ('httpwwwhotmailcom', 0.0625), ('rentroll1027xl', 0.0625), ('httpprofilesmsncom', 0.0625), ('profil', 0.0625), ('public', 0.0625), ('creat', 0.0625), ('get', 0.0625), ('share', 0.0625), ('email', 0.0625)]",inform,0.062
578,578,576,"['No', 'are', 'zone']","[('No', 0.33333334), ('are', 0.33333334), ('zone', 0.33333334)]",No,0.3333333
579,579,577,"['georg', 'your', 'attach', 'open', 'comput', 'can', 'put', 'info', 'word', 'instead', 'thank', 'phillip']","[('info', 0.08333334), ('can', 0.08333334), ('thank', 0.08333334), ('instead', 0.08333334), ('word', 0.08333334), ('georg', 0.08333334), ('put', 0.08333334), ('attach', 0.08333334), ('open', 0.08333334), ('your', 0.08333334)]",info,0.0833333
580,580,578,"['pleas', 'excus', 'delay', 'get', 'resum', 'larri', 'prepar', 'I', 'forgot', 'send', 'ill', 'tri', 'get', 'statu', 'report', 'latter', 'today', 'winmaildat']","[('get', 0.08571431), ('ill', 0.057142857), ('forgot', 0.057142857), ('today', 0.057142857), ('latter', 0.057142857), ('report', 0.057142857), ('statu', 0.057142857), ('tri', 0.057142857), ('pleas', 0.057142857), ('send', 0.057142857)]",get,0.0857143
581,581,579,"['put', 'review']","[('put', 0.5), ('review', 0.5)]",put,0.
582,582,580,"['fill', 'I', 'sign']","[('fill', 0.33333334), ('I', 0.33333334), ('sign', 0.33333334)]",fill,0.3333333
583,583,581,"['onxgat', '05042001', '0432', 'PM', 'cdt', 'to09john', 'J', 'lavoratoenronenronxg', 'louis', 'kitchenhouectect', 'cc09phillip', 'K', 'allenhouectect', 'tim', 'beldenenronenronxg', 'jeff', 'dasovi', 'chnaenronenron', 'chri', 'gaskillenronenronxg', 'mike', 'grigsbyhouectect', 'tim', 'heizenraderenronenronxg', 'vinc', 'J', 'kaminskihouectect', 'steven', 'J', 'keannaenronenron', 'rob', 'milnthorpcalectect', 'kevin', 'M', 'prestohouectect', 'claudio', 'ribeiroenronenronxg', 'richard', 'shapironaenronenron', 'jame', 'D', 'steffesnaenronenron', 'mark', 'tawneyenronenronxg', 'scott', 'tholanenronen', 'ronxgat', 'britt', 'whitmanenronenronxg', 'lloyd', 'willhouectect20', 'subject09california', 'updat', '5401', 'If', 'question', 'pleas', 'contact', 'kristin', 'walsh', '713', '8539510', 'bridg', 'loan', 'financ', 'bill', 'may', 'not', 'meet', 'their', 'may', '8th', 'deadlin', 'due', 'lack', 'support', 'sourc', 'report', 'vote', 'regard', 'author', 'bond', 'issuancebridg', 'loan', 'may', '8th', 'deadlin', 'ani', 'possibl', 'deal', 'reportedli', 'fallen', 'apart', 'accord', 'sourc', 'republ', 'an', 'democrat', 'caucu', 'turn', 'davi', 'the', 'democrat', 'cauc', 'u', 'reportedli', 'unwil', 'fight', 'davi', 'mani', 'legisl', 'republ', 'an', 'democrat', 'reportedli', 'trust', 'davi', 'express', 'concern', 'nce', 'bond', 'issu', 'replenish', 'gener', 'fund', 'davi', 'would', 'doubl', 'dip', 'fund', 'clearli', 'lack', 'good', 'faith', 'leg', 'islatur', 'governor', 'howev', 'believ', 'davi', 'disclos', 'th', 'e', 'detail', 'power', 'contract', 'negoti', 'bond', 'issuanc', 'take', 'plac', 'e', 'addit', 'gener', 'sourc', 'report', 'lon', 'gterm', 'power', 'contract', 'oppos', 'still', 'develop', 'requir', 'hat', 'bond', 'issuanc', 'happen', 'juli', '1', '2001', 'If', 'state', 'may', 'breach', 'contract', 'sourc', 'state', 'legislatur', 'pa', 'th', 'e', 'bridg', 'loan', 'legisl', 'may', '8th', 'bond', 'issuanc', 'juli', '1st', 'wi', 'difficult', 'the', 'republican', 'plan', 'offer', 'altern', 'plan', 'wherebi', 'stat', 'e', 'would', 'eat', '5', 'billion', 'cost', 'power', 'spent', 'date', 'gener', 'fund', 'therebi', 'decreas', 'amount', 'bond', 'issuanc', 'approxim', '8', 'billion', 'howev', 'reportedli', 'go', 'offer', 'even', 'concess', 'sourc', 'report', 'republican', 'intend', 'hold', 'ful', 'l', 'disclosur', 'governor', 'plan', 'handl', 'crisi', 'includ', 'detail', 'term', 'longterm', 'contract', 'negoti', 'support', 'bond', 'issuanc', 'go', 'forward', 'current', 'two', 'bill', 'deal', 'bridg', 'loan', 'AB', '8X', 'AB', '31x', 'AB', '8X', 'author', 'dwr', 'sell', '10', 'billion', 'bond', 'thi', 'bi', 'pass', 'senat', 'march', 'stall', 'assembl', 'due', 'lac', 'k', 'republican', 'support', 'AB', '31x', 'deal', 'energi', 'conserv', 'program', 'fo', 'r', 'commun', 'colleg', 'district', 'howev', 'sourc', 'report', 'bill', 'may', 'end', 'includ', 'languag', 'relev', 'bond', 'sale', 'senat', 'bowen', 'curr', 'ntli', 'AB', '8X', 'senat', 'bowen', 'languag', 'state', 'state', 'get', 'paid', 'util', 'rate', 'payment', 'pass', 'would', 'li', 'keli', 'caus', 'socal', 'bankruptcy20', '20', 'accord', 'sourc', 'close', 'republican', 'legislatur', 'republ', 'an', 'believ', 'bridg', 'loan', 'due', 'money', 'avail', 'gener', 'fund', 'for', 'instanc', 'toni', 'strickland', 'state', '12', 'bond', 'approxim', '5', 'billion', 'issu', 'other', 'republ', 'ican', 'reportedli', 'support', 'issu', 'bond', 'the', 'republican', 'intend', 'bring', 'debat', 'monday', 'addit', 'lehman', 'brother', 'repo', 'rtedli', 'also', 'feel', 'bridg', 'loan', 'unnecessari', 'ind', 'icat', 'lehman', 'may', 'back', 'bridg', 'loan', '20', 'key', 'point', 'bridg', 'financ', 'initi', 'loan', 'amount094125', 'B', 'lenders0909jp', 'morgan090925', 'B', '090909lehman', 'brothers090910', 'B', '090909bear', 'stearns0909625', 'M', 'tax', 'exempt', 'portion09of', '4125', 'B', '16', 'B', 'expect', 'taxexempt', 'project', 'interest', 'rate09tax', 'rate0909577', '090909taxexempt', 'rate0909477', 'current', 'projected20', 'blend', 'ir0909538', 'matur', 'date0909august', '29', '2001', 'for', 'detail', 'pleas', 'contact', '713', '8539510', 'bill', 'SB', '6X', 'pass', 'senat', 'yesterday', 'littl', 'can', 'done', 'thi', 'time', 'the', 'senat', 'pass', 'SB', '6X', 'yesterday', 'author', '5', 'billion', 'creat', 'california', 'consum', 'power', 'conserv', 'author', 'the', '5', 'billion', 'author', 'SB', '6X', '5', 'billion', 'must', 'aut', 'horiz', 'legislatur', 'pay', 'power', 'alreadi', 'purchas', 'addi', 'tional', 'amount', 'bond', 'must', 'author', 'pay', 'purchas', 'power', 'go', 'forward', 'again', 'republican', 'support', 'authoriz', 'ation', 'without', 'detail', 'longterm', 'power', 'contract', 'governor', 'negoti', 'republican', 'know', 'final', 'bond', 'amount', 'must', 'issu', 'taxpay', 'pay', 'support', 'No', 'f', 'urther', 'action', 'taken', 'regard', 'implement', 'SB', '6X', 'clarifi', 'state', 'util', 'get', 'paid', 'purcha', 'ing', 'power', 'also', 'staff', 'defin', 'purpos', 'etc', 'calif', 'ornia', 'public', 'power', 'conserv', 'author', 'howev', 'consi', 'dere', 'victori', 'consum', 'advoc', 'began', 'promot', 'idea', 'earl', 'ier', 'crisi', '20', 'socal', 'edison', 'bankruptci', 'At', 'point', 'two', 'event', 'would', 'like', 'trigger', 'socal', 'bankruptci', 'T', 'first', 'would', 'legisl', 'reject', 'mou', 'socal', 'governor', 'the', 'specifi', 'deadlin', 'legisl', 'approv', 'mou', 'Au', 'gust', '15th', 'howev', 'decis', 'like', 'made', 'earlier', 'accord', 'sourc', 'state', 'yet', 'sign', 'mou', 'socal', 'though', 'socal', 'ign', 'the', 'republican', 'mou', 'current', 'form', 'davi', 'senat', 'lack', 'vote', 'need', 'pa', 'If', 'legislatur', 'indicat', 'e', 'pa', 'mou', 'socal', 'would', 'like', 'file', 'voluntari', 'bank', 'ruptci', 'creditor', 'involuntari', 'due', 'lack', 'oper', 'cash', '20', 'the', 'second', 'like', 'trigger', 'event', 'link', 'directli', 'bond', 'suanc', 'would', 'effort', 'senat', 'bowen', 'amend', 'SB', '31x', 'bridg', 'loan', 'tate', 'dwr', 'would', 'receiv', '100', 'payment', 'ratepay', 'th', 'en', 'util', 'would', 'receiv', 'residu', 'amount', 'In', 'word', 'st', 'ate', 'get', 'paid', 'util', 'If', 'languag', 'includ', 'p', 'ass', 'legislatur', 'appear', 'like', 'socal', 'like', 'file', 'bankruptci', 'socal', 'urg', 'legislatur', 'pay', 'util', 'dwr', 'proportion', 'rate', 'payment']","[('bond', 0.014191443), ('loan', 0.009460926), ('power', 0.009460926), ('socal', 0.009460926), ('would', 0.009460926), ('republican', 0.008514823), ('bridg', 0.008514823), ('the', 0.008514823), ('sourc', 0.008514823), ('author', 0.0075687217)]",bond,0.01419144
584,584,582,['httpwestpowerenroncomcagenerationdefaultasp'],"[('httpwestpowerenroncomcagenerationdefaultasp', 1.0)]",,
585,585,583,"['bob', 'activ', 'plan', 'B', 'No', 'money', 'john', 'wish', 'I', 'better', 'news', 'phillip']","[('wish', 0.08333334), ('money', 0.08333334), ('news', 0.08333334), ('better', 0.08333334), ('I', 0.08333334), ('bob', 0.08333334), ('john', 0.08333334), ('plan', 0.08333334), ('B', 0.08333334), ('activ', 0.08333334)]",wish,0.0833333
586,586,584,"['dave', 'the', 'back', 'offic', 'hard', 'time', 'deal', '11', 'million', 'dollar', 'recogn', 'transport', 'expens', 'west', 'desk', 'recoup', 'offic', 'chairman', 'Is', 'understand', 'west', 'desk', 'receiv', 'origin', 'month', 'base', 'schedul', 'the', 'offic', 'chairman', 'agre', 'grant', 'origin', 'denver', 'desk', 'follow', 'octob', '2000', '1395000', 'novemb', '2000', '1350000', 'decemb', '2000', '1395000', 'januari', '2001', '669600', 'februari', '2001', '604800', 'march', '2001', '669600', 'april', '2001', '648000', 'may', '2001', '669600', 'june', '2001', '648000', 'juli', '2001', '669600', 'august', '2001', '669600', 'septemb', '2001', '648000', 'octob', '2001', '669600', 'novemb', '2001', '648000', 'decemb', '2001', '669600', 'thi', 'schedul', 'repres', 'demand', 'charg', 'payabl', 'nbp', 'energi', 'pipelin', 'denver', 'desk', 'the', 'demand', 'charg', '18mmbtu', '250000', 'mmbtuday', 'oct00', 'thru', 'dec00', '120000', 'mmbtuday', 'jan01', 'thru', 'dec01', 'the', 'ena', 'offic', 'chairman', 'agre', 'reimburs', 'west', 'desk', 'expens', 'let', 'know', 'disagre', 'phillip']","[('2001', 0.06878337), ('669600', 0.042328194), ('desk', 0.03174611), ('the', 0.026455084), ('648000', 0.026455084), ('offic', 0.026455084), ('chairman', 0.02116405), ('west', 0.02116405), ('2000', 0.02116405), ('novemb', 0.01587302)]",2001,0.0687833
587,587,585,"['steve', 'thank', 'updat', 'the', 'need', 'still', 'great', 'disk', 'space', 'phillip']","[('steve', 0.1), ('thank', 0.1), ('updat', 0.1), ('the', 0.1), ('need', 0.1), ('still', 0.1), ('great', 0.1), ('disk', 0.1), ('space', 0.1), ('phillip', 0.1)]",steve,0.
588,588,586,"['bob', 'I', 'spoke', 'jeff', 'He', 'said', 'would', 'pay', 'anyth', 'I', 'wait', 'john', 'good', 'mood', 'ask', 'what', 'plan', 'B', 'phillip']","[('I', 0.081081085), ('john', 0.054054048), ('anyth', 0.054054048), ('B', 0.054054048), ('plan', 0.054054048), ('what', 0.054054048), ('ask', 0.054054048), ('mood', 0.054054048), ('good', 0.054054048), ('bob', 0.054054048)]",I,0.08108108
589,589,587,"['phil', 'thank', 'much', 'pull', 'togeth', 'novemb', 'bidweek', 'inform', 'west', 'get', 'u', 'much', 'detail', 'well', 'deadlin', 'pleas', 'call', 'question', 'comment', 'andor', 'concern', 'bidweek', 'lian', 'kucher', 'insid', 'ferc', 'ga', 'market', 'report', '2023832147']","[('bidweek', 0.05172415), ('much', 0.05172415), ('insid', 0.034482755), ('andor', 0.034482755), ('concern', 0.034482755), ('lian', 0.034482755), ('kucher', 0.034482755), ('question', 0.034482755), ('report', 0.034482755), ('ga', 0.034482755)]",bidweek,0.0517241
590,590,588,"['technolog', 'from', 'stephen', 'stock', '10272000', '1249', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'erm', 'rm', 'databas', 'phillip', 'It', 'look', 'though', 'interim', 'hardwar', 'upgrad', 'build', 'although', 'still', 'expect', 'coupl', 'compon', 'arriv', 'monday', 'the', 'unix', 'team', 'dba', 'team', 'applic', 'team', 'expect', 'work', 'test', 'server', 'environ', 'tuesday', 'If', 'anyth', 'chang', 'ill', 'let', 'know', 'best', 'regard', 'steve', 'stock']","[('team', 0.038835), ('phillip', 0.029126232), ('stock', 0.029126232), ('expect', 0.029126232), ('unix', 0.019417474), ('work', 0.019417474), ('applic', 0.019417474), ('dba', 0.019417474), ('server', 0.019417474), ('monday', 0.019417474)]",team,0.03883
591,591,589,"['nov', '99', 'load', 'current', 'ga', 'price', 'what', 'forecast', 'novemb', 'load', 'let', 'know', 'think', 'phillip']","[('load', 0.11111112), ('novemb', 0.07407407), ('what', 0.07407407), ('think', 0.07407407), ('know', 0.07407407), ('let', 0.07407407), ('nov', 0.07407407), ('forecast', 0.07407407), ('current', 0.07407407), ('ga', 0.07407407)]",load,0.1111111
592,592,590,"['We', 'link', 'file', 'sent', 'u', 'teler', 'replac', '40000', 'equal', '250', '4167', 'heat', 'rate', 'We', 'appli', 'forward', 'ga', 'price', 'histor', 'load', 'I', 'guess', 'give', 'u', 'pictur', 'low', 'load', 'year', 'normal', 'load', 'year', 'price', 'seem', 'low', 'look', 'like', 'novemb', 'np15', 'trade', 'cap', 'base', 'nov', '99', 'load', 'current', 'ga', 'price', 'what', 'forecast', 'novemb', 'load', 'let', 'know', 'think', 'phillip']","[('load', 0.0612246), ('price', 0.040816367), ('We', 0.03061226), ('low', 0.03061226), ('novemb', 0.03061226), ('ga', 0.03061226), ('year', 0.03061226), ('u', 0.03061226), ('like', 0.020408157), ('think', 0.020408157)]",load,0.061224
593,593,591,"['dexter', 'I', 'spoke', 'eol', 'support', 'group', 'request', 'guest', 'id', 'did', 'receiv', 'email', 'login', 'password', 'yesterday', 'If', 'call', 'I', 'find', 'phillip', '7138537041']","[('I', 0.07317075), ('email', 0.048780486), ('did', 0.048780486), ('phillip', 0.048780486), ('find', 0.048780486), ('call', 0.048780486), ('If', 0.048780486), ('yesterday', 0.048780486), ('password', 0.048780486), ('login', 0.048780486)]",I,0.0731707
594,594,592,"['onf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'pleas', 'forward', 'anyon', 'team', 'want', 'updat', 'western', 'wholesal', 'matter', 'also', 'give', 'opportun', 'rais', 'state', 'matter', 'want', 'discu', 'jim', 'forward', 'jame', 'D', 'steffesnaenron', '05032001', '0742', 'AM', 'ray', 'alvarez', '05022001', '0540', 'PM', 'To', 'steve', 'waltonhouectect', 'susan', 'J', 'maranaenronenron', 'alan', 'comnespdxectect', 'lesli', 'lawnernaenronenron', 'rebecca', 'W', 'cantrellhouectect', 'donna', 'fultoncorpenronenron', 'jeff', 'dasovichnaenronenron', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'jalexandergibbsbrunscom', 'phillip', 'K', 'allenhouectect', 'cc', 'linda', 'J', 'noskehouectect', 'subject', 'Re', 'western', 'wholesal', 'activ', 'ga', 'power', 'conf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'date', 'everi', 'thursday', 'time', '100', 'pm', 'pacif', '300', 'pm', 'central', '400', 'pm', 'eastern', 'time', 'number', '18882710949', 'host', 'code', '661877', 'jim', 'particip', 'code', '936022', 'everyon', 'els', 'attach', 'tabl', 'ongo', 'ferc', 'issu', 'proceed', 'updat', 'use', 'tomorrow', 'confer', 'call', 'It', 'avail', 'team', 'member', 'O', 'drive', 'pleas', 'feel', 'free', 'reviseadd', 'updat', 'tabl', 'appropri', 'propos', 'agenda', 'tomorrow', 'power', 'discuss', 'ferc', 'market', 'monitor', 'mitig', 'order', 'el009512', 'review', 'upcom', 'file', 'ga', 'respons', 'subpoena', 'socal', 'edison', 'rp00241', 'upcom', 'item', 'misc', 'I', 'unabl', 'particip', 'call', 'tomorrow', 'I', 'attend', 'senat', 'energi', 'resourc', 'committe', 'hear', 'element', 'ferc', 'market', 'monitor', 'mitig', 'order']","[('privileg', 0.015723342), ('commun', 0.015723342), ('call', 0.015723342), ('tomorrow', 0.012578659), ('ferc', 0.012578659), ('pm', 0.012578659), ('updat', 0.012578657), ('I', 0.009433975), ('particip', 0.009433975), ('jame', 0.009433975)]",privileg,0.01572334
595,595,628,"['greg', 'happi', 'bday', 'email', 'phone', 'I', 'call', 'keith']","[('greg', 0.125), ('happi', 0.125), ('bday', 0.125), ('email', 0.125), ('phone', 0.125), ('I', 0.125), ('call', 0.125), ('keith', 0.125)]",greg,0.12
596,596,629,"['kathi', 'regard', 'guest', 'password', 'ga', 'daili', 'pleas', 'relay', 'inform', 'mike', 'grigsbi', '37031', 'pa', 'along', 'person', 'ga', 'daili', 'today', 'I', 'offic', 'friday', 'thank', 'phillip']","[('daili', 0.068181835), ('ga', 0.068181835), ('I', 0.045454543), ('person', 0.045454543), ('today', 0.045454543), ('pa', 0.045454543), ('offic', 0.045454543), ('friday', 0.045454543), ('grigsbi', 0.045454543), ('thank', 0.045454543)]",daili,0.06818183
597,597,630,"['john', 'denver', 'short', 'rocki', 'posit', 'beyond', '2002', 'creat', 'trailblaz', 'transport', 'they', 'unhedg', '15000d', '2003', '25000d', '2004', '2005', 'they', 'scrub', 'book', 'book', 'hubert', 'deal', 'wednesday', 'thursday', 'phillip']","[('book', 0.060000025), ('they', 0.060000025), ('hubert', 0.04), ('2004', 0.04), ('2005', 0.04), ('scrub', 0.04), ('2003', 0.04), ('thursday', 0.04), ('wednesday', 0.04), ('unhedg', 0.04)]",book,0.06000002
598,598,818,"['will', 'here', 'list', 'top', 'item', 'need', 'work', 'improv', 'posit', 'pl', 'report', 'west', 'desk', 'My', 'underli', 'goal', 'creat', 'posit', 'manag', 'pl', 'report', 'repres', 'risk', 'held', 'desk', 'estim', 'pl', 'great', 'accuraci', 'let', 'tri', 'schedul', 'meet', 'wednesday', 'go', 'item', 'phillip']","[('pl', 0.05882359), ('posit', 0.044117674), ('item', 0.044117674), ('desk', 0.044117674), ('report', 0.044117674), ('estim', 0.029411767), ('great', 0.029411767), ('accuraci', 0.029411767), ('let', 0.029411767), ('risk', 0.029411767)]",pl,0.0588235
599,599,593,"['georg', 'the', 'san', 'marco', 'project', 'sound', 'attract', 'I', 'one', 'investor', 'addit', 'keith', 'interest', 'some', 'addit', 'background', 'inform', 'larri', 'would', 'help', 'background', 'question', 'pleas', 'provid', 'brief', 'person', 'histori', 'two', 'princip', 'involv', 'creeksid', 'pleas', 'list', 'project', 'complet', 'last', '5', 'year', 'includ', 'project', 'descript', 'investor', 'busi', 'entiti', 'pleas', 'provid', 'name', 'number', 'prior', 'investor', 'pleas', 'provid', 'name', 'number', 'sever', 'subcontractor', 'use', 'recent', 'project', 'with', 'regard', 'propos', 'invest', 'structur', 'I', 'would', 'suggest', 'coupl', 'chang', 'better', 'align', 'riskreward', 'profil', 'creeksid', 'investor', 'prefer', 'invest', 'structur', 'develop', 'guarante', 'note', 'investor', 'prefer', 'rate', 'return', '10', 'must', 'achiev', 'profit', 'share', 'builder', 'assum', 'risk', 'cost', 'overrun', 'sinc', 'project', 'appear', 'promis', 'seem', 'like', 'tackl', 'issu', 'these', 'question', 'intend', 'offens', 'way', 'It', 'desir', 'build', 'success', 'project', 'creeksid', 'lead', 'futur', 'opportun', 'I', 'happi', 'provid', 'inform', 'need', 'evalu', 'keith', 'busi', 'partner', 'sincer', 'phillip', 'allen']","[('project', 0.03083714), ('investor', 0.026431816), ('pleas', 0.022026503), ('provid', 0.022026503), ('I', 0.017621186), ('creeksid', 0.017621184), ('busi', 0.013215871), ('question', 0.013215871), ('inform', 0.013215871), ('structur', 0.013215871)]",project,0.0308371
600,600,594,"['bob', 'patti', 'sullivan', 'held', 'togeth', 'schedul', 'group', 'two', 'month', 'randi', 'gay', 'person', 'leav', 'she', 'display', 'tremend', 'amount', 'commit', 'west', 'desk', 'time', 'she', 'frequent', 'came', 'work', '4', 'AM', 'prepar', 'oper', 'report', 'patti', 'work', '7', 'day', 'week', 'time', 'If', 'long', 'hour', 'enough', 'pipelin', 'explos', 'time', 'put', 'extra', 'volatil', 'market', 'extra', 'pressur', 'patti', 'she', 'didnt', 'crack', 'provid', 'much', 'need', 'info', 'time', 'patti', 'perform', 'duti', 'manag', 'paid', 'sr', 'specialist', 'base', 'heroic', 'effort', 'deserv', 'pbr', 'let', 'know', 'accept', 'cash', 'amount', 'phillip']","[('patti', 0.035461072), ('time', 0.035461072), ('she', 0.028368842), ('work', 0.021276614), ('amount', 0.021276614), ('extra', 0.021276612), ('didnt', 0.014184395), ('pipelin', 0.014184395), ('crack', 0.014184395), ('pressur', 0.014184395)]",patti,0.03546107
601,601,595,"['andi', 'pleas', 'assign', 'person', 'name', 'randi', 'gay', 'thank', 'phillip']","[('andi', 0.11111111), ('pleas', 0.11111111), ('assign', 0.11111111), ('person', 0.11111111), ('name', 0.11111111), ('randi', 0.11111111), ('gay', 0.11111111), ('thank', 0.11111111), ('phillip', 0.11111111)]",andi,0.1111111
602,602,596,"['andi', 'I', 'spoke', 'john', 'L', 'okd', 'one', 'new', 'electron', 'system', 'west', 'desk', 'are', 'oper', 'besid', 'ice', 'dynegi', 'If', 'assist', 'call', 'id', 'password', 'thank', 'phillip']","[('assist', 0.041666668), ('call', 0.041666668), ('ice', 0.041666668), ('dynegi', 0.041666668), ('If', 0.041666668), ('oper', 0.041666668), ('thank', 0.041666668), ('password', 0.041666668), ('desk', 0.041666668), ('id', 0.041666668)]",assist,0.04166666
603,603,597,"['structur', 'typic', 'structur', 'limit', 'partnership', 'corpor', 'llc', 'gener', 'partner', 'the', 'gener', 'partner', 'own', '1', 'project', 'carri', 'liabil', 'construct', 'land', 'ownership', 'loan', 'the', 'properti', 'would', 'purchas', 'name', 'limit', 'partnership', 'land', 'loan', 'land', 'improv', 'loan', 'construct', 'loan', 'would', 'name', 'limit', 'partnership', 'each', 'individu', 'investor', 'princip', 'creeksid', 'would', 'also', 'person', 'guarante', 'loan', 'If', 'investor', 'sign', 'loan', 'gener', 'mean', 'larger', 'amount', 'cash', 'requir', 'investor', 'share', 'profit', 'reduc', 'all', 'loan', 'residenti', 'construct', 'intend', 'resal', 'full', 'recours', 'loan', 'If', 'pursu', 'multifamili', 'rental', 'develop', 'construct', 'loan', 'still', 'full', 'recours', 'mortgag', 'often', 'nonrecours', 'use', 'OF', 'initi', 'invest', 'the', 'initi', 'invest', 'use', 'land', 'deposit', 'engin', 'architectur', 'design', 'soil', 'test', 'survey', 'file', 'fee', 'legal', 'fee', 'organ', 'condominium', 'associ', 'format', 'apprais', 'unlik', 'mani', 'real', 'estat', 'invest', 'program', 'none', 'fund', 'use', 'fee', 'creeksid', 'builder', 'llc', 'these', 'profession', 'expens', 'incur', 'estim', '6', 'month', 'design', 'approv', 'period', 'earli', 'land', 'cost', 'the', '4000', 'per', 'month', 'cost', 'list', 'cash', 'flow', 'part', 'land', 'cost', 'repres', 'extens', 'fee', 'due', 'seller', '4', 'month', 'extens', 'close', 'As', 'altern', 'close', 'land', 'loan', 'probabl', '70', 'apprais', 'valu', 'with', 'land', 'valu', 'equal', 'purchas', 'price', '680000', 'would', 'mean', 'land', 'loan', '476000', 'estim', 'monthli', 'interest', 'payment', '3966', 'given', '10', 'annual', 'interest', 'rate', 'plu', 'approxim', '125', 'loan', 'amount', 'close', 'cost', 'loan', 'fee', 'equiti', 'AT', 'improv', 'loan', 'onc', 'site', 'plan', 'approv', 'citi', 'austin', 'citi', 'requir', 'develop', 'entiti', 'post', 'fund', 'fiscal', 'improv', 'refer', 'fiscal', 'thi', 'cost', 'repres', 'bond', 'complet', 'improv', 'coa', 'consid', 'vital', 'fund', 'releas', 'improv', 'complet', 'accept', 'coa', 'thi', 'releas', '90', 'cost', 'remain', '10', 'releas', 'one', 'year', 'complet', 'releas', 'grant', 'everi', '90', 'day', 'expect', 'releas', 'would', 'occur', '6', 'month', 'start', 'lot', 'improv', 'construct', 'these', 'fiscal', 'usual', 'post', 'cash', 'irrevoc', 'letter', 'credit', 'As', 'count', 'develop', 'cost', 'even', 'though', 'spent', 'becaus', 'spent', 'interest', 'charg', 'fund', 'the', 'lot', 'improv', 'loan', 'typic', '75', 'apprais', 'valu', 'finish', 'lot', 'I', 'suspect', 'least', '20000', 'potenti', 'high', '25000', 'thi', 'would', 'produc', 'loan', 'amount', '15000', '20000', 'per', 'lot', 'with', 'estim', 'per', 'lot', 'improv', 'cost', '9000', 'fiscal', '2000', 'land', 'cost', '8000', 'total', 'improv', 'lot', 'cost', '19000', 'mean', '0', '4000', 'per', 'lot', 'total', 'equiti', 'the', 'invest', 'prior', 'obtain', 'improv', 'loan', 'would', 'count', 'toward', 'equiti', 'requir', 'provid', 'direct', 'cost', 'thu', 'addit', 'equiti', 'improv', 'loan', 'would', '0184000', 'even', 'maximum', 'loan', 'would', 'cover', 'cost', 'unlik', 'bank', 'would', 'allow', 'reimburs', 'fund', 'spent', 'the', 'higher', 'estim', 'equiti', 'invest', 'shown', 'preliminari', 'proforma', 'safe', 'side', 'the', 'engin', 'prepar', 'tent', 'site', 'layout', 'initi', 'evalu', 'phase', 'significantli', 'reduc', 'cash', 'equiti', 'requir', 'phase', 'work', 'follow', 'If', 'first', 'phase', 'say', '40', 'unit', 'total', 'lot', 'improv', 'cost', 'might', 'averag', '31000', 'per', 'lot', 'Of', 'probabl', '13000', 'would', 'improv', '19000', 'land', 'cost', 'the', 'improv', 'higher', 'cover', 'larg', 'one', 'time', 'front', 'cost', 'design', 'cost', 'entri', 'road', 'water', 'treatment', 'cost', 'perimet', 'fenc', 'landscap', 'well', '100', 'land', 'the', 'land', 'loan', 'undevelop', 'lot', 'would', '70', 'apprais', 'raw', 'lot', 'valu', 'I', 'would', 'estim', '10000', 'per', 'lot', 'loan', 'valu', '7000', 'per', 'lot', 'then', 'loan', 'valu', 'improv', 'lot', 'would', '15000', 'per', 'lot', 'thi', 'would', 'give', 'total', 'loan', '992000', 'total', 'cost', '1232645', 'equiti', 'requir', '241000', 'thi', 'present', 'initi', 'analysi', 'phase', 'depend', 'care', 'assess', 'civil', 'engin', 'separ', 'phase', 'must', 'abl', 'stand', 'util', 'standpoint', 'construct', 'loan', 'there', 'three', 'type', 'construct', 'loan', 'first', 'specul', 'spec', 'loan', 'taken', 'prior', 'presal', 'activ', 'second', 'construct', 'loan', 'presold', 'unit', 'loan', 'remain', 'builderdevelop', 'name', 'third', 'presold', 'unit', 'construct', 'loan', 'name', 'buyer', 'We', 'expect', '8', 'spec', 'loan', 'start', 'project', 'expect', 'loan', 'presold', 'unit', 'loan', 'name', 'builderdevelop', 'We', 'expect', 'construct', 'loan', 'name', 'buyer', 'loan', 'difficult', 'manag', 'pleas', 'new', 'buyer', 'unfamiliar', 'process', 'spec', 'loan', '70', '75', 'valu', 'construct', 'loan', 'presold', 'unit', 'construct', 'loan', 'mortgag', 'lender', '80', '95', 'valu', 'disburs', 'disburs', 'handl', 'gener', 'partner', 'cover', 'current', 'near', 'term', 'third', 'parti', 'cost', 'necessari', 'reserv', 'prioriti', 'payment', 'partner', 'per', 'agreement', 'the', 'gener', 'partner', 'contract', 'creeksid', 'builder', 'llc', 'construct', 'unit', 'fee', 'CB', 'includ', 'construct', 'manag', 'overhead', 'fee', 'equal', '15', 'direct', 'hard', 'cost', 'exclud', 'land', 'financ', 'sale', 'cost', 'these', 'fee', 'moni', 'creeksid', 'larri', 'lewter', 'prior', 'calcul', 'profit', 'except', 'direct', 'reimburs', 'partnership', 'expens', 'b', 'direct', 'payment', 'CB', 'subcontractor', 'cost', 'perform', 'for', 'exampl', 'CB', 'find', 'good', 'trim', 'carpent', 'sub', 'find', 'enough', 'trim', 'carpent', 'etc', 'decid', 'undertak', 'function', 'charg', 'partnership', 'fee', 'abl', 'obtain', 'third', 'parti', 'disclos', 'case', 'partnership', 'final', 'CB', 'receiv', 'fee', 'use', 'equip', 'use', 'lieu', 'leas', 'equip', 'other', 'At', 'present', 'CB', 'signific', 'equip', 'consid', 'purchas', 'sky', 'track', 'facilit', 'speed', 'frame', 'cornic', 'roof', 'drywal', 'spread', 'report', 'We', 'will', 'provid', 'report', 'track', 'expens', 'v', 'plan', 'what', 'mind', 'I', 'would', 'like', 'use', 'form', 'internet', 'base', 'report', 'bookkeep', 'I', 'sure', 'refer', 'question', 'bookkeep', 'procedur', 'record', 'actual', 'expens', 'pleas', 'expand', 'investor', 'input', 'We', 'glad', 'investor', 'input', 'design', 'materi', 'As', 'alway', 'question', 'final', 'say', 'disagr', 'experi', 'I', 'alway', 'abl', 'reach', 'consensu', 'As', 'I', 'presum', 'keith', 'want', 'involv', 'learn', 'much', 'possibl', 'would', 'make', 'everi', 'effort', 'accommod', 'creeksid', 'proceedur', 'CB', 'procedur', 'deal', 'sub', 'vendor', 'profession', 'formal', 'question', 'indic', 'In', 'extrem', 'tight', 'labor', 'market', 'obtain', '3', 'bid', 'labor', 'trade', 'feasibl', 'for', 'profession', 'sub', 'use', 'develop', 'previou', 'rapport', 'final', 'vendor', 'constantli', 'shop', 'preselect', 'profession', 'sub', 'and', 'vendor', 'ye', 'mani', 'differ', 'sub', 'identifi', 'I', 'provid', 'interest', 'I', 'know', 'I', 'answer', 'everyth', 'start', 'point', 'call', 'review', 'discu', 'sincer', 'georg', 'richard', 'presid', 'creeksid', 'builder', 'llc', 'winmaildat']","[('loan', 0.031225273), ('cost', 0.018899465), ('would', 0.014790861), ('lot', 0.013147418), ('improv', 0.013147418), ('land', 0.0123256985), ('construct', 0.0123256985), ('the', 0.009860536), ('fee', 0.009038816), ('per', 0.008217096)]",loan,0.03122527
604,604,598,"['bob', 'regard', 'patti', 'sullivan', 'contribut', 'west', 'desk', 'year', 'effort', 'deserv', 'recognit', 'pbr', 'award', 'patti', 'step', 'fill', 'gap', 'left', 'randi', 'gay', 'person', 'leav', 'patti', 'held', 'togeth', 'schedul', 'group', '2', 'month', 'work', '7day', 'week', 'time', 'patti', 'alway', 'first', 'one', 'offic', 'time', 'frequent', 'would', 'work', '4', 'AM', 'prepar', 'daili', 'oper', 'packag', 'all', 'trader', 'came', 'depend', 'inform', 'patti', 'provid', 'thi', 'inform', 'extrem', 'critic', 'year', 'due', 'pipelin', 'explos', 'size', 'west', 'desk', 'posit', 'pleas', 'call', 'discu', 'cash', 'award', 'phillip']","[('patti', 0.04444456), ('inform', 0.022222241), ('time', 0.022222241), ('work', 0.022222241), ('west', 0.022222241), ('desk', 0.022222241), ('year', 0.022222241), ('award', 0.022222241), ('week', 0.014814815), ('fill', 0.014814815)]",patti,0.0444445
605,605,599,"['richard', 'are', 'avail', '530', 'ET', 'today', 'phillip']","[('richard', 0.14285715), ('are', 0.14285715), ('avail', 0.14285715), ('530', 0.14285715), ('ET', 0.14285715), ('today', 0.14285715), ('phillip', 0.14285715)]",richard,0.1428571
606,606,600,"['jed', 'I', 'understand', 'contact', 'regard', 'telephon', 'interview', 'discu', 'trade', 'opportun', 'enron', 'I', 'send', 'messag', 'schedul', 'interview', 'pleas', 'call', 'email', 'time', 'would', 'conveni', 'I', 'look', 'forward', 'speak', 'phillip', 'allen', 'west', 'ga', 'trade', 'pallenenroncom', '7138537041']","[('I', 0.064516194), ('trade', 0.048387118), ('interview', 0.048387118), ('would', 0.032258067), ('conveni', 0.032258067), ('look', 0.032258067), ('forward', 0.032258067), ('speak', 0.032258067), ('time', 0.032258067), ('pallenenroncom', 0.032258067)]",I,0.06451619
607,607,601,"['luci', 'here', 'actual', 'util', 'bill', 'versu', 'cap', 'did', 'collect', 'overag', 'let', 'discu', 'rememb', 'bill', 'paid', 'juli', 'august', 'the', 'usag', 'date', 'much', 'earlier', 'I', 'bill', 'I', 'get', 'need', 'philip']","[('bill', 0.07547177), ('I', 0.0566038), ('much', 0.03773585), ('the', 0.03773585), ('usag', 0.03773585), ('date', 0.03773585), ('juli', 0.03773585), ('need', 0.03773585), ('get', 0.03773585), ('earlier', 0.03773585)]",bill,0.0754717
608,608,602,"['bob', 'ani', 'time', 'tomorrow', '10', '1', 'pm', 'would', 'good', 'look', 'plan', 'As', 'far', 'tv', 'need', 'Do', 'need', 'plasma', 'screen', 'would', 'regular', 'monitor', 'good', 'fraction', 'cost', 'phillip']","[('would', 0.06122451), ('need', 0.06122451), ('good', 0.06122451), ('Do', 0.040816326), ('plasma', 0.040816326), ('tv', 0.040816326), ('screen', 0.040816326), ('cost', 0.040816326), ('fraction', 0.040816326), ('As', 0.040816326)]",would,0.0612245
609,609,603,"['In', 'today', 'daili', 'updat', 'youll', 'find', 'free', 'report', 'america', 'onlin', 'aol', 'divin', 'interventur', 'dvin', '3M', 'mmm', 'report', 'broadband', 'space', 'latin', 'american', 'telecom', 'for', 'free', 'research', 'editor', 'pick', 'come', 'daili', 'investor', 'httpwwwmultexinvestorcomaf004627magazinecoverasppromounld20001214', 'investor', 'you', 'receiv', 'mail', 'regist', 'multex', 'investor', 'To', 'unsubscrib', 'see', 'bottom', 'messag', 'sponsor', 'would', 'energi', 'stock', 'SP', '500', 'select', 'sector', 'spdr', 'divid', 'SP', '500', 'nine', 'sector', 'index', 'fund', 'pick', 'choos', 'piec', 'SP', '500', 'like', 'best', 'httpwwwspdrindexcom', 'featur', 'today', 'edit', 'daili', 'updat', '1', 'special', 'announc', 'treat', 'multex', 'investor', 'new', 'person', 'financ', 'channel', 'take', 'advantag', 'topnotch', 'content', 'tool', 'free', '2', 'daili', 'free', 'sponsor', 'report', 'robertson', 'stephen', 'maintain', 'buy', 'rate', 'divin', 'interventur', 'dvin', '3', 'free', 'research', 'report', 'jefferi', 'Co', 'rate', 'america', 'onlin', 'aol', 'buy', 'say', 'project', 'growth', 'remain', 'place', '4', 'ask', 'the', 'analyst', 'morgan', 'stanley', 'dean', 'witter', 'lew', 'smith', 'analyst', 'corner', '5', 'hot', 'report', 'oscar', 'gruss', 'son', 'recent', 'issu', 'broadband', 'brief', 'report', 'latest', 'develop', 'broadband', 'space', '6', 'editor', 'pick', 'bear', 'stearn', 'measur', 'impact', 'broadband', 'internet', 'telecom', 'latin', 'america', '7', 'free', 'stock', 'snapshot', 'the', 'current', 'analyst', 'consensu', 'rate', '3M', 'mmm', 'buyhold', '8', 'join', 'the', 'marketbuzz', 'top', 'financi', 'industri', 'profession', 'answer', 'question', 'offer', 'insight', 'everi', 'market', 'day', 'noon', 'til', '200', 'pm', 'ET', '9', 'transcript', 'from', 'wall', 'street', 'ash', 'rajan', 'senior', 'vice', 'presid', 'market', 'analyst', 'prudenti', 'secur', 'answer', 'question', 'market', 'sponsor', 'profit', 'from', 'aaii', 'cash', 'rich', 'stock', 'screen', '46', 'ytd', 'return', 'with', 'much', 'market', 'volatil', 'aaii', 'cash', 'rich', 'stock', 'screen', 'achiev', 'stellar', 'return', 'find', 'answer', 'take', 'free', 'trial', 'membership', 'american', 'associ', 'individu', 'investor', 'use', 'free', 'stock', 'screen', 'servic', 'httpsubsaaiicomcgoxaaimtex1baaiitu1ss900', '1', 'new', 'ON', 'multex', 'investor', 'take', 'charg', 'person', 'financ', 'Do', 'endless', 'hour', 'free', 'time', 'keep', 'financi', 'hous', 'order', 'We', 'didnt', 'think', 'that', 'need', 'treat', 'multex', 'investor', 'new', 'person', 'financ', 'channel', 'take', 'advantag', 'topnotch', 'content', 'tool', 'free', 'click', 'inform', 'httpwwwmultexpfcommktgsgpftx4promounlt10d20001214', '2', 'daili', 'free', 'sponsor', 'report', 'divin', 'interventur', 'dvin', 'robertson', 'stephen', 'maintain', 'buy', 'rate', 'divin', 'interventur', 'incub', 'focus', 'infrastructur', 'servic', 'businesstobusi', 'b2b', 'exchang', 'regist', 'robertson', 'stephen', 'freeresearch', 'trial', 'access', 'report', 'click', 'httpwwwmultexinvestorcomdownloadaspdocid5018549sid9promounlt12', 'd20001214', '3', 'free', 'research', 'report', 'hold', 'er', 'steadi', 'america', 'onlin', 'aol', 'aol', 'project', 'growth', 'propos', 'merger', 'time', 'warner', 'twx', 'remain', 'place', 'say', 'jefferi', 'Co', 'maintain', 'buy', 'rate', 'aol', 'In', 'report', 'free', 'limit', 'time', 'analyst', 'confid', 'deal', 'close', 'soon', 'click', 'httpwwwmultexinvestorcomaf004627magazinecoverasppromounlt11d2000', '1214', '4', 'today', 'IN', 'the', 'analyst', 'corner', 'follow', 'market', 'trend', 'morgan', 'stanley', 'dean', 'witter', 'lew', 'smith', 'see', 'strong', 'underli', 'trend', 'guid', 'futur', 'market', 'perform', 'what', 'trend', 'point', 'stock', 'sector', 'see', 'benefit', 'premis', 'here', 'opportun', 'gain', 'free', 'access', 'morgan', 'stanley', 'research', 'simpli', 'regist', 'submit', 'question', 'you', 'free', 'trial', 'membership', 'top', 'wall', 'street', 'firm', 'research', 'lew', 'smith', 'analyst', 'corner', '5', 'pm', 'ET', 'thur', 'dec', '14', 'sure', 'ask', 'question', 'ask', 'analyst', 'httpwwwmultexinvestorcomachomeasppromounlt1d20001214', '5', 'what', 'hot', 'research', 'report', 'from', 'multex', 'investor', 'hot', 'list', 'break', 'bottleneck', 'An', 'updat', 'broadband', 'space', 'oscar', 'gruss', 'son', 'recent', 'issu', 'broadband', 'brief', 'report', 'latest', 'develop', 'broadband', 'space', 'coverag', 'adapt', 'broadband', 'adap', 'broadcom', 'brcm', 'effici', 'network', 'efnt', 'other', 'report', 'purchas', '25', 'click', 'httpwwwmultexinvestorcomdownloadaspdocid5149041promounlt4d20001', '214', 'sponsor', 'get', 'red', 'her', 'insight', 'hot', 'ipo', 'invest', 'strategi', 'stock', 'watch', 'futur', 'technolog', 'free', 'enewslett', 'redherringcom', 'provid', 'answer', 'analysi', 'opinion', 'help', 'make', 'strateg', 'invest', 'decis', 'subscrib', 'today', 'httpwwwredherringcomjumpomimultexemail2subscribe47html', '6', 'editor', 'pick', 'current', 'research', 'from', 'the', 'cut', 'edg', 'que', 'pasa', 'predict', 'telecom', 'futur', 'latin', 'america', 'bear', 'stearn', 'measur', 'impact', 'broadband', 'internet', 'telecom', 'latin', 'america', 'say', 'incumb', 'localexchang', 'carrier', 'ilec', 'ideal', 'posit', 'benefit', 'growth', 'internet', 'data', 'servic', 'report', 'purchas', '150', 'click', 'httpwwwmultexinvestorcomdownloadaspdocid5140995promounlt8d20001', '214', '7', 'free', 'stock', 'snapshot', '3M', 'mmm', 'the', 'current', 'analyst', 'consensu', 'rate', '3M', 'buyhold', 'analyst', 'expect', 'industri', 'product', 'manufactur', 'earn', '476', 'per', 'share', '2000', '526', 'per', 'share', '2001', 'click', 'httpwwwmultexinvestorcomdownloadaspdocid1346414promounlt3d20001', '214', '8', 'join', 'the', 'marketbuzz', 'check', 'sageonlin', 'top', 'financi', 'industri', 'profession', 'answer', 'question', 'offer', 'insight', 'everi', 'market', 'day', 'noon', 'til', '200', 'pm', 'ET', 'click', 'httpmultexinvestorsageonlinecompage2aspid9512ps1s2mktgevnpromo', 'unlt24d20001214', '9', 'transcript', 'from', 'wall', 'street', 'guru', 'prudenti', 'secur', 'ash', 'rajan', 'In', 'sageonlin', 'transcript', 'chat', 'took', 'place', 'earlier', 'week', 'ash', 'rajan', 'senior', 'vice', 'presid', 'market', 'analyst', 'prudenti', 'secur', 'answer', 'question', 'tech', 'retail', 'financ', 'outlook', 'gener', 'market', 'click', 'httpmultexinvestorsageonlinecomtranscriptaspid10403ps1s8mktgtrn', 'promounlt13d20001214', 'pleas', 'send', 'question', 'comment', 'mailtoinvestorhelpmultexcom', 'If', 'youd', 'like', 'learn', 'multex', 'investor', 'pleas', 'visit', 'httpwwwmultexinvestorcomwelcomeasp', 'If', 'cant', 'rememb', 'password', 'andor', 'person', 'name', 'click', 'httpwwwmultexinvestorcomlostinfoasp', 'If', 'want', 'updat', 'email', 'address', 'pleas', 'click', 'url', 'httpwwwmultexinvestorcomedituinfoasp', 'To', 'remov', 'mail', 'list', 'daili', 'updat', 'pleas', 'repli', 'thi', 'email', 'messag', 'word', 'unsubscrib', 'subject', 'line', 'To', 'remov', 'multex', 'investor', 'mail', 'includ', 'daili', 'updat', 'the', 'internet', 'analyst', 'pleas', 'respond', 'word', 'NO', 'email', 'subject', 'line', 'you', 'may', 'also', 'unsubscrib', 'account', 'updat', 'page', 'httpwwwmultexinvestorcomedituinfoasp', 'pleas', 'email', 'advertis', 'inquiri', 'u', 'mailtoadvertisemultexcom', 'for', 'inform', 'becom', 'affili', 'click', 'httpwwwmultexinvestorcomaffiliateshomeasppromounl', 'Be', 'sure', 'check', 'one', 'newslett', 'the', 'internet', 'analyst', 'multexcom', 'the', 'internet', 'analyst', 'inform', 'educ', 'entertain', 'usabl', 'invest', 'data', 'idea', 'expert', 'info', 'internet', 'industri', 'To', 'see', 'week', 'issu', 'click', 'httpwwwtheinternetanalystcom', 'If', '100', 'satisfi', 'purchas', 'make', 'multex', 'investor', 'refund', 'money']","[('free', 0.016114991), ('analyst', 0.013429139), ('report', 0.013429139), ('click', 0.011638572), ('investor', 0.01074329), ('the', 0.009848005), ('broadband', 0.008952724), ('market', 0.008952724), ('stock', 0.00805744), ('multex', 0.00805744)]",free,0.01611499
610,610,604,"['here', 'today', 'copi', 'bloomberg', 'power', 'line', 'adob', 'acrobat', 'reader', 'requir', 'view', 'attach', 'pdf', 'file', 'you', 'download', 'free', 'version', 'acrobat', 'reader', 'httpwwwadobecomproductsacrobatreadstephtml', 'If', 'troubl', 'download', 'attach', 'file', 'also', 'locat', 'httpwwwbloombergcomenergydailypdf', 'dont', 'forget', 'check', 'bloomberg', 'powermatch', 'west', 'coast', 'index', 'accur', 'index', 'anywher', 'index', 'valu', 'calcul', 'actual', 'tra', 'de', 'audit', 'powermatch', 'custom', 'our', 'aim', 'bring', 'time', 'electr', 'market', 'coverag', 'industri', 'welcom', 'feedback', 'improv', 'product20', 'bloomberg', 'energi', 'depart', '1213', 'bloomberg', 'daili', 'power', 'report', 'tabl', 'bloomberg', 'US', 'region', 'electr', 'price', 'mwh', '2550', 'mwh', 'preschedul', 'packag', 'exclud', 'transmiss', '20', 'cost', 'onpeak', 'west', 'coast', 'index', 'chang', 'low', 'high', 'midcolumbia', '36250', '31250', '35000', '37500', 'caor', 'border', '45250', '17250', '43000', '47500', 'np15', '38750', '20625', '32500', '45000', 'sp15', '30750', '23350', '30000', '31500', 'ault', 'colorado', '35000', '12500', '30000', '31500', 'mead', '33500', '18750', '32000', '35000', 'palo', 'verd', '33625', '13653', '32000', '35000', 'four', 'corner', '33000', '18250', '32500', '33500', 'midcontin', 'ecar', '6920', '2271', '6300', '7586', 'east', '7500', '1300', '7400', '7600', 'aep', '6700', '2550', '5900', '7500', 'west', '6800', '2450', '6000', '7500', 'central', '6790', '2319', '5900', '7500', 'cinergi', '6790', '2319', '5900', '7500', 'south', '7025', '2395', '6500', '8000', 'north', '6833', '2567', '6500', '7500', 'main', '7256', '1978', '6250', '8750', 'come', '6870', '2137', '6000', '7500', 'lower', '7643', '1817', '6500', '10000', 'mapp', '9992', '4091', '7500', '12500', 'north', '9900', '3767', '7500', '12500', 'lower', '10083', '4417', '7500', '12500', 'gulf', 'coast', 'spp', '8500', '1850', '8000', '9250', 'northern', '8800', '3900', '7800', '10000', 'ercot', '5500', '4000', '5000', '6000', 'serc', '7704', '666', '7234', '8198', 'Va', 'power', '6600', '2500', '6000', '7000', 'vacar', '6750', '950', '6200', '7000', 'into', 'tva', '7025', '2395', '6500', '8000', 'out', 'tva', '7602', '2461', '6941', '8487', 'entergi', '8000', '3080', '7500', '8500', 'southern', '9000', '1000', '9000', '9000', 'flaga', 'border', '8550', '450', '8100', '9000', 'frcc', '11000', '6500', '11000', '11000', 'east', 'coast', 'nepool', '9050', '050', '9050', '9050', 'new', 'york', 'zone', 'J', '9100', '750', '9000', '9200', 'new', 'york', 'zone', 'G', '7450', '100', '7350', '7550', 'new', 'york', 'zone', 'A', '6883', '613', '6550', '7350', 'pjm', '6708', '1275', '6200', '7600', 'east', '6708', '1275', '6200', '7600', 'west', '6708', '1275', '6200', '7600', 'seller', 'choic', '6658', '1275', '6150', '7550', 'end', 'tabl', 'western', 'power', 'price', 'fall', 'with', 'warmer', 'weather', 'natur', 'ga', 'loss', 'lo', 'angel', 'dec', '13', 'bloomberg', 'energi', 'US', 'western', 'spot', 'power', 'price', 'declin', 'today', 'combin', 'warmer', 'weather', 'across', 'region', 'declin', 'natur', 'ga', 'price', 'accord', 'belton', 'missouribas', 'weather', 'deriv', 'inc', 'temperatur', 'pacif', 'northwest', 'averag', '2', 'degre', 'fahrenheit', 'normal', 'next', 'seven', 'day', 'In', 'southwest', 'temperatur', '35', 'degre', 'normal', 'At', 'californiaoregon', 'border', 'heavi', 'load', 'power', 'fell', '17200', 'yesterday', '4300047500', 'what', 'happen', 'bitter', 'cold', 'weather', 'suppos', 'said', 'one', 'northwest', 'power', 'market', 'sinc', 'weather', 'cold', 'expect', 'price', 'drastic', 'lower', 'temperatur', 'lo', 'angel', 'today', 'peak', '66', 'degre', 'expect', 'rise', '74', 'degre', 'weekend', 'natur', 'ga', 'deliv', 'california', 'oregon', 'El', 'paso', 'pipelin', 'trade', '2021', '3', 'yesterday', 'ga', 'price', 'declin', 'caus', 'western', 'daili', 'power', 'price', 'fall', 'said', 'one', 'northwest', 'power', 'trader', 'At', 'np15', 'deliveri', 'point', 'heavi', 'load', 'power', 'decreas', '20625', 'yesterday', '3250045000', 'light', 'load', 'energi', 'fell', '2000035000', 'fall', '17500', 'yesterday', 'psc', 'new', 'mexico', '498megawatt', 'san', 'juan', 'unit', '4', 'coal', 'plant', 'shut', 'morn', 'tube', 'leak', 'the', 'unit', 'schedul', 'restart', 'weekend', 'At', 'four', 'corner', 'locat', 'new', 'mexico', 'power', 'trade', '3250033500', 'plung', '18250', 'yesterday', 'robert', 'scalabrino', 'pjm', 'spot', 'power', 'price', 'dip', 'with', 'weather', 'fall', 'natur', 'ga', 'philadelphia', 'dec', '13', 'bloomberg', 'energi', 'peak', 'nextday', 'power', 'price', 'declin', 'western', 'hub', 'pennsylvanianew', 'jerseymaryland', 'interconnect', 'amid', 'warmer', 'weather', 'forecast', 'fall', 'natur', 'ga', 'price', 'trader', 'said', 'the', 'bloomberg', 'index', 'price', 'peak', 'thursday', 'power', 'western', 'pjm', 'declin', 'averag', '1275', 'megawatthour', 'trade', 'rang', '62007600', 'lexington', 'massachusettsbas', 'weather', 'servic', 'corp', 'forecast', 'tomorrow', 'high', 'temperatur', 'philadelphia', '40', 'degre', 'fahrenheit', '7', 'degre', 'today', 'expect', 'high', 'temperatur', 'could', 'climb', 'high', '42', 'degre', 'friday', 'most', 'day', 'activ', 'took', 'place', 'earli', 'part', 'morn', 'said', 'one', 'pjmbase', 'trader', 'By', 'option', 'expir', 'market', 'pretti', 'much', 'dri', 'trader', 'said', 'fall', 'natur', 'ga', 'price', 'main', 'reason', 'declin', 'spot', 'market', 'price', 'bloomberg', 'figur', 'show', 'spot', 'natur', 'ga', 'deliv', 'new', 'york', 'citi', 'gate', 'declin', 'averag', '125', 'per', 'million', 'british', 'thermal', 'unit', '860890', 'per', 'million', 'btu', 'sinc', 'monday', 'deliv', 'natur', 'ga', 'price', 'declin', 'averag', '244', 'per', 'million', 'btu', 'revis', '610', 'day', 'weather', 'forecast', 'indic', 'reduc', 'util', 'load', 'requir', 'In', 'new', 'york', 'price', 'rose', 'util', 'withheld', 'suppli', 'normal', 'would', 'sold', 'fear', 'sudden', 'chang', 'weather', 'forecast', 'could', 'forc', 'highpric', 'hourli', 'market', 'peak', 'nextday', 'power', 'zone', 'A', 'deliveri', 'point', 'sold', '613', 'higher', 'bloomberg', 'index', 'price', '7033', 'amid', 'trade', '67007500', 'rang', 'power', 'zone', 'J', 'sold', '750', 'higher', '9000', '9200', 'karyn', 'rispoli', 'midcontin', 'power', 'price', 'drop', 'revis', 'forecast', 'ga', 'price', 'cincinnati', 'dec', '13', 'bloomberg', 'energi', 'US', 'midcontin', 'nextday', 'peak', 'power', 'price', 'plung', 'forecast', 'revis', 'warmer', 'natur', 'ga', 'valu', 'continu', 'declin', 'trader', 'said', 'the', 'bloomberg', 'index', 'price', 'peak', 'thursday', 'power', 'cincinnatibas', 'cinergi', 'corp', 'transmiss', 'system', 'drop', '2319', '6790', 'megawatthour', 'trade', 'rang', '7500', 'market', 'open', '5900', 'option', 'expir', 'In', 'midamerica', 'interconnect', 'network', 'trade', 'peak', 'power', 'chicagobas', 'commonwealth', 'edison', 'Co', 'grid', 'sold', '2137', 'lower', 'averag', '60007500', 'power', 'lower', 'main', 'sold', '1817', 'lower', '650010000', 'belton', 'missouribas', 'weather', 'deriv', 'inc', 'predict', 'high', 'temperatur', 'would', 'averag', '2', 'degre', 'fahrenheit', 'normal', 'chicago', 'normal', 'level', 'cincinnati', 'next', 'seven', 'day', '6', '4', 'degre', 'normal', 'monday', 'respect', 'trader', 'said', 'fall', 'spot', 'natur', 'ga', 'valu', 'also', 'pull', 'price', 'natur', 'ga', 'price', 'larg', 'factor', 'recent', 'electr', 'market', 'surg', 'heavi', 'relianc', 'gasfir', 'gener', 'meet', 'increas', 'weatherrel', 'demand', 'spot', 'natur', 'ga', 'cincinnati', 'citi', 'gate', 'sold', 'averag', '95', 'cent', 'le', 'yesterday', '780830', 'per', 'million', 'british', 'thermal', 'unit', 'spot', 'ga', 'chicago', 'citi', 'gate', 'sold', 'averag', '80', 'cent', 'le', '765815', 'per', 'million', 'btu', 'the', 'weather', 'moder', 'ga', 'youv', 'got', 'peopl', 'come', 'sen', 'one', 'trader', 'said', 'these', 'much', 'realist', 'price', 'trader', 'said', 'price', 'could', 'declin', 'tomorrow', 'outlook', 'weather', 'continu', 'mild', 'peak', 'cinergi', 'power', 'deliveri', 'dec', '1822', 'offer', '6000', '9000', 'yesterday', 'midcontin', 'area', 'power', 'pool', 'peak', 'spot', 'power', 'price', 'plung', 'warmer', 'weather', 'forecast', 'increas', 'avail', 'transmiss', 'capac', 'sell', '3767', 'le', 'northern', 'mapp', '4417', 'le', 'southern', 'mapp', '750012500', 'what', 'happen', 'peopl', 'dont', 'firm', 'transmiss', 'get', 'market', 'earli', 'buy', 'high', 'price', 'sinc', 'choic', 'one', 'mapp', 'trader', 'said', 'then', 'youv', 'got', 'peopl', 'lucki', 'enough', 'get', 'firm', 'path', 'wait', 'later', 'morn', 'come', 'price', 'fell', 'said', 'bought', 'lower', 'price', 'caus', 'huge', 'gap', 'day', 'high', 'low', 'trade', 'ken', 'fahnestock', 'southeast', 'US', 'electr', 'price', 'slump', 'after', 'mild', 'forecast', 'atlanta', 'georgia', 'dec', '13', 'bloomberg', 'energi', 'southeast', 'US', 'peak', 'spot', 'power', 'price', 'slump', 'today', 'warmer', 'weather', 'forecast', 'region', 'week', 'trader', 'said', 'trader', 'said', 'southeast', 'util', 'demand', 'reduc', 'sinc', 'mani', 'larg', 'popul', 'center', 'like', 'atlanta', 'see', 'temperatur', 'climb', 'mid50', 'fahrenheit', 'later', 'week', 'there', 'noth', 'go', 'florida', 'today', 'said', 'one', 'southern', 'energi', 'trader', 'everyth', 'go', 'market', 'north', 'trader', 'said', 'suppli', 'rout', 'florida', 'market', 'entergi', 'corp', 'tennesse', 'valley', 'author', 'grid', 'mid70', 'megawatthour', 'price', 'tva', 'start', '80', '90', 'crumbl', 'forecast', 'came', 'said', 'entergi', 'power', 'trader', 'price', 'declin', '60', 'le', 'the', 'bloomberg', 'tva', 'index', 'price', 'fell', 'averag', '2395', '7025', 'amid', 'trade', '65008000', 'rang', 'offpeak', 'trade', 'note', '3200', 'sever', 'dollar', 'higher', 'recent', 'estim', 'southeast', 'power', 'trader', 'said', 'revis', '610', 'day', 'weather', 'forecast', 'lower', 'temperatur', 'balanc', 'week', 'caus', 'price', 'declin', 'region', 'In', 'southwest', 'power', 'pool', 'trader', 'said', 'warmer', 'weather', 'main', 'culprit', 'behind', 'lower', 'price', 'the', 'cold', 'weather', 'back', 'said', 'one', 'spp', 'util', 'trader', 'It', 'minu', '35', 'degre', 'wind', 'chill', 'yesterday', 'today', '9', 'degre', 'wind', 'chill', 'yesterday', 'bitter', 'cold', 'today', 'plain', 'cold', 'power', 'sold', 'northern', 'section', 'spp', '78100', 'though', 'bloomberg', 'index', 'sank', 'averag', '3900', '8800', 'southern', 'spp', 'trade', '8200', '2', 'yesterday', 'brian', 'whari', 'UK', 'dayahead', 'electr', 'price', 'rise', 'amid', 'increas', 'demand', 'london', 'dec', '13', 'bloomberg', 'energi', 'electr', 'price', 'UK', 'rose', 'today', 'fall', 'temperatur', 'expect', 'increas', 'household', 'consumpt', 'space', 'heat', 'trader', 'said', 'the', 'dayahead', 'baseload', 'pool', 'purchas', 'price', 'calcul', 'electr', 'pool', 'england', 'wale', 'rose', '146', 'pound', '2001', 'pound', 'megawatthour', 'temperatur', 'across', 'UK', 'forecast', 'fall', '6', 'degre', '4', 'degre', 'celsiu', 'weekend', 'accord', 'weather', 'servic', 'corp', 'US', 'dayahead', 'electr', 'forward', 'agreement', 'dealt', '1972015', 'pound', 'megawatthour', '21', 'pound', 'higher', 'yesterday', 'decemb', 'continu', 'fall', 'amid', 'combin', 'posit', 'close', 'prior', 'expiri', 'continu', 'belief', 'demand', 'rise', 'suffici', 'justifi', 'high', 'winter', 'price', 'trader', 'said', 'decemb', '2000', 'baseload', 'efa', 'trade', '1791805', 'pound', 'megawatthour', '40', 'penni', 'yesterday', 'last', 'trade', 'first', 'quarter', 'constitu', 'month', 'fell', 'line', 'expect', 'mild', 'forecast', 'new', 'year', 'would', 'continu', 'stifl', 'demand', 'trader', 'said', 'januari', '2001', 'baseload', 'efa', 'dealt', '2462473', 'pound', 'megawatthour', 'fall', '17', 'penni', 'first', 'quarter', '2001', 'baseload', 'efa', 'trade', '216217', 'pound', 'megawatthour', '10', 'penni', 'previou', 'close', 'season', 'structur', 'trade', 'UK', 'power', 'exchang', 'summer', '2001', 'baseload', 'trade', 'unchang', '1815', 'pound', 'megawatthour', 'winter', '2001', 'baseload', 'dealt', '5', 'penni', 'higher', '2175', 'pound', 'megawatthour', 'open', 'posit', 'mani', 'shortterm', 'structur', 'like', 'forc', 'mani', 'trader', 'deal', 'activ', 'contract', 'run', 'christma', 'trader', 'said', 'ad', 'structur', 'probabl', 'remain', 'illiquid', 'new', 'year', 'demand', 'easili', 'assess', 'nick', 'livingston', 'nordic', 'electr', 'price', 'climb', 'follow', 'cold', 'weather', 'forecast', 'lysak', 'norway', 'dec', '13', 'bloomberg', 'energi', 'power', 'price', 'nord', 'pool', 'exchang', 'lysak', 'norway', 'close', 'higher', 'today', 'colder', 'weather', 'forecast', 'spark', 'activ', 'trade', 'trader', 'said', 'week', '51', 'dealt', '145152', 'norwegian', 'krone', 'megawatt', 'hour', '662', 'krone', 'yesterday', 'close', 'trade', '1076', 'megawatt', 'trade', 'volum', 'week', '52', 'rose', '625', 'krone', '446', 'megawatt', 'dealt', '1345014025', 'krone', 'megawatthour', 'suppli', 'hydroproduc', 'expect', 'reced', 'forecast', 'indic', 'reduc', 'precipit', 'scandinavia', 'next', 'week', 'these', 'produc', 'typic', 'gener', 'power', 'prevent', 'reservoir', 'overflow', 'consumpt', 'current', 'unseason', 'low', 'expect', 'rise', 'fall', 'temperatur', 'increas', 'requir', 'space', 'heat', 'trade', 'volum', 'power', 'exchang', 'increas', 'activ', 'trade', 'begin', 'typic', 'winter', 'condit', 'trader', 'said', 'the', 'market', 'wait', 'day', 'long', 'time', 'stockholmbas', 'trader', 'said', 'for', 'long', 'peopl', 'sell', 'winter', 'hasnt', 'live', 'expect', 'We', 'see', 'notic', 'increas', 'spot', 'price', 'temperatur', 'part', 'scandinavia', 'forecast', 'fall', 'freez', 'minu', '5', 'degre', 'celsiu', 'limit', 'chanc', 'rain', '5day', 'outlook', 'accord', 'weather', 'servic', 'corp', 'US', 'the', 'dayahead', 'system', 'averag', 'area', 'price', 'fell', 'demand', 'expect', 'remain', 'limit', 'next', 'week', 'forecast', 'predict', 'temperatur', 'begin', 'fall', 'thursday', 'system', 'area', 'price', 'fell', '157', 'krone', '122', 'percent', '12643', 'krone', 'megawatthour', 'trade', 'volum', 'fell', '4134', 'megawatt', '295414', 'megawatt', 'mani', 'dealer', 'anticip', 'spot', 'price', 'like', 'rise', '1015', 'krone', 'start', 'next', 'week', 'winter', '1', '2001', 'forward', 'structur', 'rose', 'line', 'shorter', 'term', 'contract', 'winter', '1', '2001', 'dealt', '136751385', 'krone', 'megawatthour', '19', 'krone', 'yesterday', 'last', 'trade', '13525', 'krone', 'megawatthour', 'also', 'delay', 'restart', 'swedish', 'nuclear', 'unit', 'although', 'expect', 'like', 'allow', 'abund', 'suppli', 'hydroproduc', 'meet', 'increas', 'demand', 'trader', 'said', 'vattenfal', 'ringhal', '1', '835megawatt', 'nuclear', 'reactor', 'delay', 'restart', 'least', 'week', '52', 'compani', 'said', 'today', 'rapid', 'increas', 'like', 'induc', 'trader', 'use', 'today', 'news', 'gain', 'momentum', 'futur', 'increas', 'trader', 'said', 'nick', 'livingston', '0', 'be', 'dec132000', '2104', 'gmt', '0F', 'dailypdf']","[('price', 0.019931724), ('power', 0.014732115), ('said', 0.012998911), ('trader', 0.012565611), ('trade', 0.009965804), ('weather', 0.009965804), ('forecast', 0.008232602), ('bloomberg', 0.007799302), ('ga', 0.007366001), ('yesterday', 0.0064994004)]",price,0.01993172
611,611,605,"['onsolid', 'posit', 'issu', 'To', 'Do', 'list', 'phillip', 'below', 'issu', 'list', 'go', 'forward', 'document', 'requir', 'consolid', 'physicalfinanci', 'posit', 'transport', 'trade', 'captur', 'what', 'need', 'focu', 'first', 'bullet', 'allan', 'list', 'need', 'singl', 'set', 'requir', 'although', 'meet', 'keith', 'wednesday', 'inform', 'solut', 'creat', 'infinit', 'dynam', 'consolid', 'posit', 'screen', 'extrem', 'difficult', 'time', 'consum', 'throughout', 'meet', 'wednesday', 'keith', 'allud', 'inabl', 'get', 'consensu', 'amongst', 'trader', 'present', 'consolid', 'posit', 'solut', 'make', 'trader', 'arrang', 'posit', 'screen', 'like', 'much', 'like', 'excel', 'what', 'need', 'happen', 'monday', '3', '5', 'effort', 'design', 'desir', 'layout', 'consolid', 'posit', 'screen', 'critic', 'thi', 'exclud', 'build', 'capabl', 'creat', 'flexibl', 'posit', 'present', 'futur', 'order', 'creat', 'plan', 'measur', 'need', 'firm', 'requir', 'also', 'reiter', 'goal', 'project', 'project', 'plan', 'consolid', 'physicalfinanci', 'posit', 'transport', 'trade', 'captur', 'the', 'issu', 'rais', 'captur', 'project', 'need', 'prioritis', 'effort', 'outsid', 'project', 'I', 'involv', 'meet', 'discuss', 'good', 'I', 'believ', 'good', 'commun', 'team', 'need', 'focu', 'object', 'set', 'solv', 'richard', 'forward', 'richard', 'burchfieldhouect', '10062000', '0834', 'AM', 'allan', 'severud', '10052000', '0603', 'PM', 'To', 'richard', 'burchfieldhouectect', 'cc', 'peggi', 'alixhouectect', 'russ', 'seversonhouectect', 'scott', 'millshouectect', 'kenni', 'hahouectect', 'subject', 'consolid', 'posit', 'issu', 'To', 'Do', 'list', 'from', 'initi', 'set', 'meet', 'trader', 'regard', 'consolid', 'posit', 'I', 'think', 'still', 'follow', 'issu', 'We', 'dont', 'singl', 'point', 'contact', 'trade', 'group', 'weve', 'three', 'meet', 'brought', 'differ', 'issu', 'differ', 'trader', 'We', 'realli', 'need', 'singl', 'point', 'contact', 'help', 'drive', 'trader', 'requir', 'help', 'come', 'consensu', 'regard', 'requir', 'were', 'get', 'hit', 'lot', 'differ', 'request', 'mani', 'appear', 'outsid', 'scope', 'posit', 'consolid', 'thing', 'left', 'I', 'think', 'may', 'use', 'tri', 'formul', 'high', 'level', 'project', 'goal', 'make', 'clear', 'possibl', 'tri', 'accomplish', 'project', 'itll', 'help', 'determin', 'request', 'fall', 'project', 'scope', 'Go', 'list', 'request', 'determin', 'scope', 'project', 'fall', 'scope', 'for', 'scope', 'work', 'defin', 'rel', 'import', 'prioriti', 'work', 'trader', 'defin', 'exact', 'requir', 'defin', 'desir', 'lay', 'posit', 'manag', 'screen', 'main', 'view', 'drill', 'down', 'use', 'formul', 'project', 'plan', 'thing', 'request', 'thu', 'far', 'particular', 'order', 'inclus', 'sitara', 'physic', 'deal', 'td', 'posit', 'manag', 'deal', 'ticker', 'custom', 'row', 'column', 'posit', 'manag', 'ad', 'hoc', 'rowscolumn', 'add', 'exist', 'posit', 'manag', 'rowscolumn', 'new', 'drill', 'posit', 'manag', 'break', 'posit', 'physic', 'transport', 'swap', 'option', 'addit', 'curv', 'tab', 'posit', 'manag', 'show', 'realtim', 'valu', 'curv', 'desk', 'posit', 'abil', 'split', 'current', 'posit', 'grid', 'allow', 'daili', 'posit', 'shown', 'directli', 'monthli', 'posit', 'each', 'group', 'column', 'top', 'grid', 'would', 'tie', 'group', 'column', 'bottom', 'grid', 'abil', 'properli', 'show', 'curv', 'shift', 'floatforfloat', 'deal', 'determin', 'appropri', 'posit', 'show', 'ga', 'daili', 'monthli', 'index', 'physic', 'ga', 'nymex', 'physic', 'ga', 'insid', 'ferc', 'physic', 'ga', 'mid', 'market', 'abil', 'td', 'pull', 'valuat', 'result', 'base', 'td', 'flag', 'instead', 'use', 'offici', 'valuat', 'posit', 'PL', 'aggreg', 'across', 'ga', 'desk', 'abil', 'includ', 'ga', 'price', 'book', 'td', 'inclus', 'spread', 'option', 'system', 'abil', 'handl', 'volatil', 'skew', 'correl', 'abil', 'revalu', 'option', 'increment', 'throughout', 'trade', 'day', 'approxim', 'delta', 'chang', 'valuat', 'use', 'instantan', 'gamma', 'gamma', 'grid', 'valuat', 'ga', 'daili', 'option', 'A', 'new', 'posit', 'screen', 'option', 'month', 'x', 'strike', 'x', 'delta', 'tbd', 'inclus', 'posit', 'exot', 'option', 'current', 'manag', 'spreadsheet', 'abil', 'isol', 'posit', 'chang', 'due', 'chang', 'deal', 'posit', 'manag', 'abil', 'view', 'chang', 'deal', 'PL', 'td', 'deal', 'ticker', 'show', 'new', 'deal', 'term', 'prior', 'deal', 'term', 'net', 'PL', 'affect', 'chang', 'elimin', 'chang', 'deal', 'econom', 'impact', 'td', 'deal', 'ticker', 'posit', 'drill', 'posit', 'manag', 'isol', 'impact', 'individu', 'deal', 'posit', 'total', 'grid', 'cell', 'benchmark', 'posit', 'td', 'deploy', 'td', 'canada', 'currenc', 'volum', 'uom', 'convers', 'implicit', 'explicit', 'posit', 'break', 'issu', 'allan', 'PS', 'colleen', 'set', 'meet', 'tomorrow', 'discu', 'direct', 'transport', 'hope', 'well', 'know', 'much', 'better', 'part', 'stand', 'point']","[('posit', 0.041872792), ('deal', 0.014778567), ('manag', 0.012315452), ('project', 0.012315452), ('consolid', 0.011083897), ('abil', 0.011083897), ('td', 0.011083897), ('ga', 0.009852342), ('need', 0.009852342), ('issu', 0.009852342)]",posit,0.04187279
612,612,606,"['onsolid', 'posit', 'issu', 'To', 'Do', 'list', 'phillip', 'below', 'issu', 'list', 'go', 'forward', 'document', 'requir', 'consolid', 'physicalfinanci', 'posit', 'transport', 'trade', 'captur', 'what', 'need', 'focu', 'first', 'bullet', 'allan', 'list', 'need', 'singl', 'set', 'requir', 'although', 'meet', 'keith', 'wednesday', 'inform', 'solut', 'creat', 'infinit', 'dynam', 'consolid', 'posit', 'screen', 'extrem', 'difficult', 'time', 'consum', 'throughout', 'meet', 'wednesday', 'keith', 'allud', 'inabl', 'get', 'consensu', 'amongst', 'trader', 'present', 'consolid', 'posit', 'solut', 'make', 'trader', 'arrang', 'posit', 'screen', 'like', 'much', 'like', 'excel', 'what', 'need', 'happen', 'monday', '3', '5', 'effort', 'design', 'desir', 'layout', 'consolid', 'posit', 'screen', 'critic', 'thi', 'exclud', 'build', 'capabl', 'creat', 'flexibl', 'posit', 'present', 'futur', 'order', 'creat', 'plan', 'measur', 'need', 'firm', 'requir', 'also', 'reiter', 'goal', 'project', 'project', 'plan', 'consolid', 'physicalfinanci', 'posit', 'transport', 'trade', 'captur', 'the', 'issu', 'rais', 'captur', 'project', 'need', 'prioritis', 'effort', 'outsid', 'project', 'I', 'involv', 'meet', 'discuss', 'good', 'I', 'believ', 'good', 'commun', 'team', 'need', 'focu', 'object', 'set', 'solv', 'richard', 'forward', 'richard', 'burchfieldhouect', '10062000', '0834', 'AM', 'allan', 'severud', '10052000', '0603', 'PM', 'To', 'richard', 'burchfieldhouectect', 'cc', 'peggi', 'alixhouectect', 'russ', 'seversonhouectect', 'scott', 'millshouectect', 'kenni', 'hahouectect', 'subject', 'consolid', 'posit', 'issu', 'To', 'Do', 'list', 'from', 'initi', 'set', 'meet', 'trader', 'regard', 'consolid', 'posit', 'I', 'think', 'still', 'follow', 'issu', 'We', 'dont', 'singl', 'point', 'contact', 'trade', 'group', 'weve', 'three', 'meet', 'brought', 'differ', 'issu', 'differ', 'trader', 'We', 'realli', 'need', 'singl', 'point', 'contact', 'help', 'drive', 'trader', 'requir', 'help', 'come', 'consensu', 'regard', 'requir', 'were', 'get', 'hit', 'lot', 'differ', 'request', 'mani', 'appear', 'outsid', 'scope', 'posit', 'consolid', 'thing', 'left', 'I', 'think', 'may', 'use', 'tri', 'formul', 'high', 'level', 'project', 'goal', 'make', 'clear', 'possibl', 'tri', 'accomplish', 'project', 'itll', 'help', 'determin', 'request', 'fall', 'project', 'scope', 'Go', 'list', 'request', 'determin', 'scope', 'project', 'fall', 'scope', 'for', 'scope', 'work', 'defin', 'rel', 'import', 'prioriti', 'work', 'trader', 'defin', 'exact', 'requir', 'defin', 'desir', 'lay', 'posit', 'manag', 'screen', 'main', 'view', 'drill', 'down', 'use', 'formul', 'project', 'plan', 'thing', 'request', 'thu', 'far', 'particular', 'order', 'inclus', 'sitara', 'physic', 'deal', 'td', 'posit', 'manag', 'deal', 'ticker', 'custom', 'row', 'column', 'posit', 'manag', 'ad', 'hoc', 'rowscolumn', 'add', 'exist', 'posit', 'manag', 'rowscolumn', 'new', 'drill', 'posit', 'manag', 'break', 'posit', 'physic', 'transport', 'swap', 'option', 'addit', 'curv', 'tab', 'posit', 'manag', 'show', 'realtim', 'valu', 'curv', 'desk', 'posit', 'abil', 'split', 'current', 'posit', 'grid', 'allow', 'daili', 'posit', 'shown', 'directli', 'monthli', 'posit', 'each', 'group', 'column', 'top', 'grid', 'would', 'tie', 'group', 'column', 'bottom', 'grid', 'abil', 'properli', 'show', 'curv', 'shift', 'floatforfloat', 'deal', 'determin', 'appropri', 'posit', 'show', 'ga', 'daili', 'monthli', 'index', 'physic', 'ga', 'nymex', 'physic', 'ga', 'insid', 'ferc', 'physic', 'ga', 'mid', 'market', 'abil', 'td', 'pull', 'valuat', 'result', 'base', 'td', 'flag', 'instead', 'use', 'offici', 'valuat', 'posit', 'PL', 'aggreg', 'across', 'ga', 'desk', 'abil', 'includ', 'ga', 'price', 'book', 'td', 'inclus', 'spread', 'option', 'system', 'abil', 'handl', 'volatil', 'skew', 'correl', 'abil', 'revalu', 'option', 'increment', 'throughout', 'trade', 'day', 'approxim', 'delta', 'chang', 'valuat', 'use', 'instantan', 'gamma', 'gamma', 'grid', 'valuat', 'ga', 'daili', 'option', 'A', 'new', 'posit', 'screen', 'option', 'month', 'x', 'strike', 'x', 'delta', 'tbd', 'inclus', 'posit', 'exot', 'option', 'current', 'manag', 'spreadsheet', 'abil', 'isol', 'posit', 'chang', 'due', 'chang', 'deal', 'posit', 'manag', 'abil', 'view', 'chang', 'deal', 'PL', 'td', 'deal', 'ticker', 'show', 'new', 'deal', 'term', 'prior', 'deal', 'term', 'net', 'PL', 'affect', 'chang', 'elimin', 'chang', 'deal', 'econom', 'impact', 'td', 'deal', 'ticker', 'posit', 'drill', 'posit', 'manag', 'isol', 'impact', 'individu', 'deal', 'posit', 'total', 'grid', 'cell', 'benchmark', 'posit', 'td', 'deploy', 'td', 'canada', 'currenc', 'volum', 'uom', 'convers', 'implicit', 'explicit', 'posit', 'break', 'issu', 'allan', 'PS', 'colleen', 'set', 'meet', 'tomorrow', 'discu', 'direct', 'transport', 'hope', 'well', 'know', 'much', 'better', 'part', 'stand', 'point']","[('posit', 0.041872792), ('deal', 0.014778567), ('project', 0.012315452), ('manag', 0.012315452), ('td', 0.011083897), ('consolid', 0.011083897), ('abil', 0.011083897), ('issu', 0.009852343), ('need', 0.009852342), ('ga', 0.009852342)]",posit,0.04187279
613,613,607,"['dave', 'here', 'name', 'west', 'desk', 'member', 'categori', 'the', 'origin', 'side', 'spars', 'phillip']","[('the', 0.08333334), ('member', 0.08333334), ('spars', 0.08333334), ('side', 0.08333334), ('origin', 0.08333334), ('dave', 0.08333334), ('categori', 0.08333334), ('name', 0.08333334), ('west', 0.08333334), ('here', 0.08333334)]",the,0.0833333
614,614,608,"['paula', '35', 'million', 'fine', 'phillip']","[('paula', 0.2), ('35', 0.2), ('million', 0.2), ('fine', 0.2), ('phillip', 0.2)]",paula,0.
615,615,609,"['north', 'america', 'corp', 'from', 'airam', 'arteaga', '10042000', '1223', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'thoma', 'A', 'martinhouectect', 'scott', 'nealhouectect', 'john', 'arnoldhouectect', 'grant', 'massonhouectect', 'ted', 'murphyhouectect', 'vladimir', 'gornyhouectect', 'frank', 'haydencorpenronenron', 'cc', 'rita', 'hennessynaenronenron', 'ina', 'rangelhouectect', 'laura', 'hardercorpenronenron', 'kimberli', 'brownhouectect', 'arac', 'romeronaenronenron', 'kimberli', 'hillishouectect', 'subject', 'var', 'report', 'resourc', 'meet', 'pleas', 'plan', 'attend', 'meet', 'topic', 'var', 'report', 'resourc', 'meet', 'date', 'wednesday', 'octob', '11th', 'time', '230', '330', 'locat', 'eb30c1', 'If', 'questionsconflict', 'pleas', 'feel', 'free', 'call', 'thank', 'rain', 'x31560']","[('meet', 0.028777028), ('report', 0.02158275), ('var', 0.02158275), ('pleas', 0.02158275), ('resourc', 0.02158275), ('kimberli', 0.02158275), ('attend', 0.014388487), ('plan', 0.014388487), ('date', 0.014388487), ('brownhouectect', 0.014388487)]",meet,0.02877702
616,616,610,"['westgat', 'enclos', 'demograph', 'westgat', 'site', 'investor', 'allianc', 'investor', 'allianc', 'say', 'demograph', 'similar', 'packag', 'san', 'marco', 'receiv', 'earlier', 'If', 'question', 'inform', 'requir', 'let', 'know', 'then', 'let', 'know', 'interest', 'level', 'westgat', 'project', 'san', 'marco', 'the', 'properti', 'across', 'street', 'sagewood', 'unit', 'san', 'marco', 'sale', 'approv', '134', 'unit', 'the', 'land', 'sell', '250', 'per', 'squar', 'foot', 'one', 'two', 'remain', 'approv', 'multifamili', 'parcel', 'west', 'san', 'marco', 'moratorium', 'develop', 'sever', 'new', 'studi', 'look', 'show', 'rent', 'duplex', 'new', 'unit', 'go', 'significantli', 'higher', 'roughli', '125', 'per', 'squar', 'foot', 'leas', 'entir', 'unit', '12month', 'leas', '130140', 'psf', 'leas', '12month', 'term', 'individu', 'room', 'thi', 'properti', 'best', 'locat', 'student', 'hous', 'new', 'project', 'duplex', 'If', 'project', 'seriou', 'interest', 'pleas', 'let', 'know', 'short', 'window', 'opportun', 'the', 'equiti', 'requir', 'yet', 'known', 'would', 'like', '300000', 'secur', 'land', 'I', 'know', 'question', 'later', 'today', 'sincer', 'georg', 'W', 'richard', 'presid', 'creeksid', 'builder', 'llc', 'winmaildat']","[('san', 0.021834126), ('unit', 0.021834126), ('know', 0.021834126), ('marco', 0.021834126), ('new', 0.017467279), ('leas', 0.017467279), ('the', 0.017467279), ('project', 0.017467279), ('let', 0.017467279), ('westgat', 0.017467279)]",san,0.02183412
617,617,611,"['there', 'meet', 'tuesday', 'oct', '10th', '400pm', 'eb3270', 'regard', 'storag', 'strategi', 'west', 'pleas', 'mark', 'calendar', 'thank', 'regard', 'nanci', 'hall', 'ena', 'denver', 'offic', '3035756490']","[('regard', 0.06976745), ('mark', 0.046511624), ('west', 0.046511624), ('offic', 0.046511624), ('denver', 0.046511624), ('ena', 0.046511624), ('hall', 0.046511624), ('nanci', 0.046511624), ('thank', 0.046511624), ('calendar', 0.046511624)]",regard,0.0697674
618,618,612,"['brenda', 'pleas', 'use', 'second', 'check', 'octob', 'payment', 'If', 'alreadi', 'toss', 'let', 'know', 'I', 'mail', 'anoth', 'phillip']","[('toss', 0.0625), ('If', 0.0625), ('anoth', 0.0625), ('mail', 0.0625), ('I', 0.0625), ('know', 0.0625), ('let', 0.0625), ('brenda', 0.0625), ('alreadi', 0.0625), ('check', 0.0625)]",toss,0.062
619,619,613,"['I', 'think', 'fletch', 'good', 'cpa', 'I', 'still']","[('I', 0.23076926), ('think', 0.15384614), ('fletch', 0.15384614), ('good', 0.15384614), ('cpa', 0.15384614), ('still', 0.15384614)]",I,0.2307692
620,620,614,"['brenda', 'pleas', 'use', 'second', 'check', 'octob', 'payment', 'I', 'copi', 'origin', 'deal', 'Do', 'want', 'fax', 'phillip']","[('copi', 0.06666667), ('I', 0.06666667), ('fax', 0.06666667), ('want', 0.06666667), ('Do', 0.06666667), ('deal', 0.06666667), ('origin', 0.06666667), ('brenda', 0.06666667), ('check', 0.06666667), ('second', 0.06666667)]",copi,0.0666666
621,621,695,"['cooper', 'did', 'add', 'secur', 'expost', 'hourli', 'summari', 'It', 'keep', 'ask', 'addit', 'password', 'domain', 'what', 'I', 'need', 'enter', 'phillip']","[('addit', 0.055555552), ('keep', 0.055555552), ('enter', 0.055555552), ('need', 0.055555552), ('I', 0.055555552), ('what', 0.055555552), ('domain', 0.055555552), ('password', 0.055555552), ('cooper', 0.055555552), ('ask', 0.055555552)]",addit,0.05555555
622,622,616,"['oncern', 'may', 'attempt', 'manipul', 'El', 'paso', 'san', 'juan', 'monthli', 'index', 'It', 'appear', 'singl', 'buyer', 'enter', 'marketplac', 'septemb', '26', '27', 'paid', 'market', 'price', '470480', 'san', 'juan', 'ga', 'At', 'time', 'trade', 'offer', 'physic', 'ga', 'significantli', '10', '15', 'cent', 'lower', 'price', 'bypass', 'order', 'establish', 'higher', 'trade', 'report', 'index', 'calcul', 'addit', 'trade', 'line', 'associ', 'financi', 'swap', 'san', 'juan', 'We', 'compil', 'list', 'financi', 'physic', 'trade', 'execut', 'septemb', '25', 'septemb', '27', 'these', 'complet', 'list', 'trade', 'enron', 'onlin', 'eol', 'enron', 'direct', 'phone', 'convers', 'three', 'brokerag', 'firm', 'amerex', 'apb', 'prebon', 'pleas', 'see', 'attach', 'spreadsheet', 'trade', 'trade', 'list', 'summari', 'We', 'also', 'includ', 'summari', 'ga', 'daili', 'price', 'illustr', 'valu', 'san', 'juan', 'base', 'sever', 'spread', 'relationship', 'the', 'two', 'key', 'point', 'data', 'follow', '1', 'the', 'high', 'physic', 'price', '26th', '27th', '475480', 'much', 'greater', 'high', 'financi', 'trade', '463754665', 'day', '2', 'the', 'spread', 'relationship', 'san', 'juan', 'point', 'socal', 'northwest', 'consist', 'end', 'septemb', 'octob', 'ga', 'daili', 'It', 'doesnt', 'make', 'sens', 'monthli', 'index', 'dramat', 'differ', 'I', 'understand', 'review', 'trade', 'submit', 'outlier', 'hope', 'trade', 'submit', 'reveal', 'counterparti', 'name', 'abl', 'determin', 'one', 'buyer', '470', 'trade', 'outlier', 'I', 'want', 'give', 'addit', 'point', 'refer', 'aid', 'establish', 'reason', 'index', 'It', 'enron', 'belief', 'trade', '470', 'higher', 'market', 'trade', 'exclud', 'calcul', 'index', 'It', 'desir', 'reliabl', 'accur', 'index', 'conduct', 'physic', 'financi', 'busi', 'pleas', 'contact', 'anytim', 'I', 'assist', 'toward', 'goal', 'sincer', 'phillip', 'allen']","[('trade', 0.040580057), ('index', 0.020289976), ('san', 0.017391395), ('juan', 0.017391395), ('financi', 0.0144928135), ('It', 0.0144928135), ('septemb', 0.0144928135), ('ga', 0.0144928135), ('price', 0.0144928135), ('physic', 0.0144928135)]",trade,0.04058005
623,623,617,"['lian', 'As', 'discuss', 'yesterday', 'I', 'concern', 'attempt', 'manipul', 'El', 'paso', 'san', 'juan', 'monthli', 'index', 'A', 'singl', 'buyer', 'enter', 'marketplac', 'septemb', '26', '27', 'paid', 'market', 'price', '470480', 'san', 'juan', 'ga', 'intent', 'distort', 'index', 'At', 'time', 'trade', 'offer', 'physic', 'ga', 'significantli', '10', '15', 'cent', 'lower', 'price', 'bypass', 'order', 'establish', 'higher', 'trade', 'report', 'index', 'calcul', 'addit', 'trade', 'line', 'associ', 'financi', 'swap', 'san', 'juan', 'We', 'compil', 'list', 'financi', 'physic', 'trade', 'execut', 'septemb', '25', 'septemb', '27', 'these', 'complet', 'list', 'trade', 'enron', 'onlin', 'eol', 'enron', 'direct', 'phone', 'convers', 'three', 'brokerag', 'firm', 'amerex', 'apb', 'prebon', 'pleas', 'see', 'attach', 'spreadsheet', 'trade', 'trade', 'list', 'summari', 'We', 'also', 'includ', 'summari', 'ga', 'daili', 'price', 'illustr', 'valu', 'san', 'juan', 'base', 'sever', 'spread', 'relationship', 'the', 'two', 'key', 'point', 'data', 'follow', '1', 'the', 'high', 'physic', 'price', '26th', '27th', '475480', 'much', 'greater', 'high', 'financi', 'trade', '463754665', 'day', '2', 'the', 'spread', 'relationship', 'san', 'juan', 'point', 'socal', 'northwest', 'consist', 'end', 'septemb', 'octob', 'ga', 'daili', 'It', 'doesnt', 'make', 'sens', 'monthli', 'indec', 'dramat', 'differ', 'I', 'understand', 'review', 'trade', 'submit', 'outlier', 'hope', 'trade', 'submit', 'reveal', 'counterparti', 'name', 'abl', 'determin', 'one', 'buyer', '470', 'trade', 'outlier', 'I', 'want', 'give', 'addit', 'point', 'refer', 'aid', 'establish', 'reason', 'index', 'It', 'enron', 'belief', 'trade', '470', 'higher', 'market', 'trade', 'exclud', 'calcul', 'index', 'It', 'desir', 'reliabl', 'accur', 'indec', 'conduct', 'physic', 'financi', 'busi', 'pleas', 'contact', 'anytim', 'I', 'assist', 'toward', 'goal', 'sincer', 'phillip', 'allen']","[('trade', 0.03921603), ('index', 0.016806811), ('juan', 0.016806811), ('san', 0.016806811), ('physic', 0.01400566), ('price', 0.01400566), ('septemb', 0.01400566), ('I', 0.014005659), ('financi', 0.014005659), ('ga', 0.014005659)]",trade,0.0392160
624,624,618,"['structur', 'typic', 'structur', 'limit', 'partnership', 'corpor', 'llc', 'gener', 'partner', 'the', 'gener', 'partner', 'own', '1', 'project', 'carri', 'liabil', 'construct', 'land', 'ownership', 'loan', 'the', 'properti', 'would', 'purchas', 'name', 'limit', 'partnership', 'land', 'loan', 'land', 'improv', 'loan', 'construct', 'loan', 'would', 'name', 'limit', 'partnership', 'each', 'individu', 'investor', 'princip', 'creeksid', 'would', 'also', 'person', 'guarante', 'loan', 'If', 'investor', 'sign', 'loan', 'gener', 'mean', 'larger', 'amount', 'cash', 'requir', 'investor', 'share', 'profit', 'reduc', 'all', 'loan', 'residenti', 'construct', 'intend', 'resal', 'full', 'recours', 'loan', 'If', 'pursu', 'multifamili', 'rental', 'develop', 'construct', 'loan', 'still', 'full', 'recours', 'mortgag', 'often', 'nonrecours', 'use', 'OF', 'initi', 'invest', 'the', 'initi', 'invest', 'use', 'land', 'deposit', 'engin', 'architectur', 'design', 'soil', 'test', 'survey', 'file', 'fee', 'legal', 'fee', 'organ', 'condominium', 'associ', 'format', 'apprais', 'unlik', 'mani', 'real', 'estat', 'invest', 'program', 'none', 'fund', 'use', 'fee', 'creeksid', 'builder', 'llc', 'these', 'profession', 'expens', 'incur', 'estim', '6', 'month', 'design', 'approv', 'period', 'earli', 'land', 'cost', 'the', '4000', 'per', 'month', 'cost', 'list', 'cash', 'flow', 'part', 'land', 'cost', 'repres', 'extens', 'fee', 'due', 'seller', '4', 'month', 'extens', 'close', 'As', 'altern', 'close', 'land', 'loan', 'probabl', '70', 'apprais', 'valu', 'with', 'land', 'valu', 'equal', 'purchas', 'price', '680000', 'would', 'mean', 'land', 'loan', '476000', 'estim', 'monthli', 'interest', 'payment', '3966', 'given', '10', 'annual', 'interest', 'rate', 'plu', 'approxim', '125', 'loan', 'amount', 'close', 'cost', 'loan', 'fee', 'equiti', 'AT', 'improv', 'loan', 'onc', 'site', 'plan', 'approv', 'citi', 'austin', 'citi', 'requir', 'develop', 'entiti', 'post', 'fund', 'fiscal', 'improv', 'refer', 'fiscal', 'thi', 'cost', 'repres', 'bond', 'complet', 'improv', 'coa', 'consid', 'vital', 'fund', 'releas', 'improv', 'complet', 'accept', 'coa', 'thi', 'releas', '90', 'cost', 'remain', '10', 'releas', 'one', 'year', 'complet', 'releas', 'grant', 'everi', '90', 'day', 'expect', 'releas', 'would', 'occur', '6', 'month', 'start', 'lot', 'improv', 'construct', 'these', 'fiscal', 'usual', 'post', 'cash', 'irrevoc', 'letter', 'credit', 'As', 'count', 'develop', 'cost', 'even', 'though', 'spent', 'becaus', 'spent', 'interest', 'charg', 'fund', 'the', 'lot', 'improv', 'loan', 'typic', '75', 'apprais', 'valu', 'finish', 'lot', 'I', 'suspect', 'least', '20000', 'potenti', 'high', '25000', 'thi', 'would', 'produc', 'loan', 'amount', '15000', '20000', 'per', 'lot', 'with', 'estim', 'per', 'lot', 'improv', 'cost', '9000', 'fiscal', '2000', 'land', 'cost', '8000', 'total', 'improv', 'lot', 'cost', '19000', 'mean', '0', '4000', 'per', 'lot', 'total', 'equiti', 'the', 'invest', 'prior', 'obtain', 'improv', 'loan', 'would', 'count', 'toward', 'equiti', 'requir', 'provid', 'direct', 'cost', 'thu', 'addit', 'equiti', 'improv', 'loan', 'would', '0184000', 'even', 'maximum', 'loan', 'would', 'cover', 'cost', 'unlik', 'bank', 'would', 'allow', 'reimburs', 'fund', 'spent', 'the', 'higher', 'estim', 'equiti', 'invest', 'shown', 'preliminari', 'proforma', 'safe', 'side', 'the', 'engin', 'prepar', 'tent', 'site', 'layout', 'initi', 'evalu', 'phase', 'significantli', 'reduc', 'cash', 'equiti', 'requir', 'phase', 'work', 'follow', 'If', 'first', 'phase', 'say', '40', 'unit', 'total', 'lot', 'improv', 'cost', 'might', 'averag', '31000', 'per', 'lot', 'Of', 'probabl', '13000', 'would', 'improv', '19000', 'land', 'cost', 'the', 'improv', 'higher', 'cover', 'larg', 'one', 'time', 'front', 'cost', 'design', 'cost', 'entri', 'road', 'water', 'treatment', 'cost', 'perimet', 'fenc', 'landscap', 'well', '100', 'land', 'the', 'land', 'loan', 'undevelop', 'lot', 'would', '70', 'apprais', 'raw', 'lot', 'valu', 'I', 'would', 'estim', '10000', 'per', 'lot', 'loan', 'valu', '7000', 'per', 'lot', 'then', 'loan', 'valu', 'improv', 'lot', 'would', '15000', 'per', 'lot', 'thi', 'would', 'give', 'total', 'loan', '992000', 'total', 'cost', '1232645', 'equiti', 'requir', '241000', 'thi', 'present', 'initi', 'analysi', 'phase', 'depend', 'care', 'assess', 'civil', 'engin', 'separ', 'phase', 'must', 'abl', 'stand', 'util', 'standpoint', 'construct', 'loan', 'there', 'three', 'type', 'construct', 'loan', 'first', 'specul', 'spec', 'loan', 'taken', 'prior', 'presal', 'activ', 'second', 'construct', 'loan', 'presold', 'unit', 'loan', 'remain', 'builderdevelop', 'name', 'third', 'presold', 'unit', 'construct', 'loan', 'name', 'buyer', 'We', 'expect', '8', 'spec', 'loan', 'start', 'project', 'expect', 'loan', 'presold', 'unit', 'loan', 'name', 'builderdevelop', 'We', 'expect', 'construct', 'loan', 'name', 'buyer', 'loan', 'difficult', 'manag', 'pleas', 'new', 'buyer', 'unfamiliar', 'process', 'spec', 'loan', '70', '75', 'valu', 'construct', 'loan', 'presold', 'unit', 'construct', 'loan', 'mortgag', 'lender', '80', '95', 'valu', 'disburs', 'disburs', 'handl', 'gener', 'partner', 'cover', 'current', 'near', 'term', 'third', 'parti', 'cost', 'necessari', 'reserv', 'prioriti', 'payment', 'partner', 'per', 'agreement', 'the', 'gener', 'partner', 'contract', 'creeksid', 'builder', 'llc', 'construct', 'unit', 'fee', 'CB', 'includ', 'construct', 'manag', 'overhead', 'fee', 'equal', '15', 'direct', 'hard', 'cost', 'exclud', 'land', 'financ', 'sale', 'cost', 'these', 'fee', 'moni', 'creeksid', 'larri', 'lewter', 'prior', 'calcul', 'profit', 'except', 'direct', 'reimburs', 'partnership', 'expens', 'b', 'direct', 'payment', 'CB', 'subcontractor', 'cost', 'perform', 'for', 'exampl', 'CB', 'find', 'good', 'trim', 'carpent', 'sub', 'find', 'enough', 'trim', 'carpent', 'etc', 'decid', 'undertak', 'function', 'charg', 'partnership', 'fee', 'abl', 'obtain', 'third', 'parti', 'disclos', 'case', 'partnership', 'final', 'CB', 'receiv', 'fee', 'use', 'equip', 'use', 'lieu', 'leas', 'equip', 'other', 'At', 'present', 'CB', 'signific', 'equip', 'consid', 'purchas', 'sky', 'track', 'facilit', 'speed', 'frame', 'cornic', 'roof', 'drywal', 'spread', 'report', 'We', 'will', 'provid', 'report', 'track', 'expens', 'v', 'plan', 'what', 'mind', 'I', 'would', 'like', 'use', 'form', 'internet', 'base', 'report', 'bookkeep', 'I', 'sure', 'refer', 'question', 'bookkeep', 'procedur', 'record', 'actual', 'expens', 'pleas', 'expand', 'investor', 'input', 'We', 'glad', 'investor', 'input', 'design', 'materi', 'As', 'alway', 'question', 'final', 'say', 'disagr', 'experi', 'I', 'alway', 'abl', 'reach', 'consensu', 'As', 'I', 'presum', 'keith', 'want', 'involv', 'learn', 'much', 'possibl', 'would', 'make', 'everi', 'effort', 'accommod', 'creeksid', 'proceedur', 'CB', 'procedur', 'deal', 'sub', 'vendor', 'profession', 'formal', 'question', 'indic', 'In', 'extrem', 'tight', 'labor', 'market', 'obtain', '3', 'bid', 'labor', 'trade', 'feasibl', 'for', 'profession', 'sub', 'use', 'develop', 'previou', 'rapport', 'final', 'vendor', 'constantli', 'shop', 'preselect', 'profession', 'sub', 'and', 'vendor', 'ye', 'mani', 'differ', 'sub', 'identifi', 'I', 'provid', 'interest', 'I', 'know', 'I', 'answer', 'everyth', 'start', 'point', 'call', 'review', 'discu', 'sincer', 'georg', 'richard', 'presid', 'creeksid', 'builder', 'llc', 'winmaildat']","[('loan', 0.031225277), ('cost', 0.018899467), ('would', 0.014790863), ('improv', 0.01314742), ('lot', 0.01314742), ('land', 0.0123257), ('construct', 0.0123257), ('the', 0.009860537), ('fee', 0.009038817), ('per', 0.008217097)]",loan,0.03122527
625,625,619,"['structur', 'typic', 'structur', 'limit', 'partnership', 'corpor', 'llc', 'gener', 'partner', 'the', 'gener', 'partner', 'own', '1', 'project', 'carri', 'liabil', 'construct', 'land', 'ownership', 'loan', 'the', 'properti', 'would', 'purchas', 'name', 'limit', 'partnership', 'land', 'loan', 'land', 'improv', 'loan', 'construct', 'loan', 'would', 'name', 'limit', 'partnership', 'each', 'individu', 'investor', 'princip', 'creeksid', 'would', 'also', 'person', 'guarante', 'loan', 'If', 'investor', 'sign', 'loan', 'gener', 'mean', 'larger', 'amount', 'cash', 'requir', 'investor', 'share', 'profit', 'reduc', 'all', 'loan', 'residenti', 'construct', 'intend', 'resal', 'full', 'recours', 'loan', 'If', 'pursu', 'multifamili', 'rental', 'develop', 'construct', 'loan', 'still', 'full', 'recours', 'mortgag', 'often', 'nonrecours', 'use', 'OF', 'initi', 'invest', 'the', 'initi', 'invest', 'use', 'land', 'deposit', 'engin', 'architectur', 'design', 'soil', 'test', 'survey', 'file', 'fee', 'legal', 'fee', 'organ', 'condominium', 'associ', 'format', 'apprais', 'unlik', 'mani', 'real', 'estat', 'invest', 'program', 'none', 'fund', 'use', 'fee', 'creeksid', 'builder', 'llc', 'these', 'profession', 'expens', 'incur', 'estim', '6', 'month', 'design', 'approv', 'period', 'earli', 'land', 'cost', 'the', '4000', 'per', 'month', 'cost', 'list', 'cash', 'flow', 'part', 'land', 'cost', 'repres', 'extens', 'fee', 'due', 'seller', '4', 'month', 'extens', 'close', 'As', 'altern', 'close', 'land', 'loan', 'probabl', '70', 'apprais', 'valu', 'with', 'land', 'valu', 'equal', 'purchas', 'price', '680000', 'would', 'mean', 'land', 'loan', '476000', 'estim', 'monthli', 'interest', 'payment', '3966', 'given', '10', 'annual', 'interest', 'rate', 'plu', 'approxim', '125', 'loan', 'amount', 'close', 'cost', 'loan', 'fee', 'equiti', 'AT', 'improv', 'loan', 'onc', 'site', 'plan', 'approv', 'citi', 'austin', 'citi', 'requir', 'develop', 'entiti', 'post', 'fund', 'fiscal', 'improv', 'refer', 'fiscal', 'thi', 'cost', 'repres', 'bond', 'complet', 'improv', 'coa', 'consid', 'vital', 'fund', 'releas', 'improv', 'complet', 'accept', 'coa', 'thi', 'releas', '90', 'cost', 'remain', '10', 'releas', 'one', 'year', 'complet', 'releas', 'grant', 'everi', '90', 'day', 'expect', 'releas', 'would', 'occur', '6', 'month', 'start', 'lot', 'improv', 'construct', 'these', 'fiscal', 'usual', 'post', 'cash', 'irrevoc', 'letter', 'credit', 'As', 'count', 'develop', 'cost', 'even', 'though', 'spent', 'becaus', 'spent', 'interest', 'charg', 'fund', 'the', 'lot', 'improv', 'loan', 'typic', '75', 'apprais', 'valu', 'finish', 'lot', 'I', 'suspect', 'least', '20000', 'potenti', 'high', '25000', 'thi', 'would', 'produc', 'loan', 'amount', '15000', '20000', 'per', 'lot', 'with', 'estim', 'per', 'lot', 'improv', 'cost', '9000', 'fiscal', '2000', 'land', 'cost', '8000', 'total', 'improv', 'lot', 'cost', '19000', 'mean', '0', '4000', 'per', 'lot', 'total', 'equiti', 'the', 'invest', 'prior', 'obtain', 'improv', 'loan', 'would', 'count', 'toward', 'equiti', 'requir', 'provid', 'direct', 'cost', 'thu', 'addit', 'equiti', 'improv', 'loan', 'would', '0184000', 'even', 'maximum', 'loan', 'would', 'cover', 'cost', 'unlik', 'bank', 'would', 'allow', 'reimburs', 'fund', 'spent', 'the', 'higher', 'estim', 'equiti', 'invest', 'shown', 'preliminari', 'proforma', 'safe', 'side', 'the', 'engin', 'prepar', 'tent', 'site', 'layout', 'initi', 'evalu', 'phase', 'significantli', 'reduc', 'cash', 'equiti', 'requir', 'phase', 'work', 'follow', 'If', 'first', 'phase', 'say', '40', 'unit', 'total', 'lot', 'improv', 'cost', 'might', 'averag', '31000', 'per', 'lot', 'Of', 'probabl', '13000', 'would', 'improv', '19000', 'land', 'cost', 'the', 'improv', 'higher', 'cover', 'larg', 'one', 'time', 'front', 'cost', 'design', 'cost', 'entri', 'road', 'water', 'treatment', 'cost', 'perimet', 'fenc', 'landscap', 'well', '100', 'land', 'the', 'land', 'loan', 'undevelop', 'lot', 'would', '70', 'apprais', 'raw', 'lot', 'valu', 'I', 'would', 'estim', '10000', 'per', 'lot', 'loan', 'valu', '7000', 'per', 'lot', 'then', 'loan', 'valu', 'improv', 'lot', 'would', '15000', 'per', 'lot', 'thi', 'would', 'give', 'total', 'loan', '992000', 'total', 'cost', '1232645', 'equiti', 'requir', '241000', 'thi', 'present', 'initi', 'analysi', 'phase', 'depend', 'care', 'assess', 'civil', 'engin', 'separ', 'phase', 'must', 'abl', 'stand', 'util', 'standpoint', 'construct', 'loan', 'there', 'three', 'type', 'construct', 'loan', 'first', 'specul', 'spec', 'loan', 'taken', 'prior', 'presal', 'activ', 'second', 'construct', 'loan', 'presold', 'unit', 'loan', 'remain', 'builderdevelop', 'name', 'third', 'presold', 'unit', 'construct', 'loan', 'name', 'buyer', 'We', 'expect', '8', 'spec', 'loan', 'start', 'project', 'expect', 'loan', 'presold', 'unit', 'loan', 'name', 'builderdevelop', 'We', 'expect', 'construct', 'loan', 'name', 'buyer', 'loan', 'difficult', 'manag', 'pleas', 'new', 'buyer', 'unfamiliar', 'process', 'spec', 'loan', '70', '75', 'valu', 'construct', 'loan', 'presold', 'unit', 'construct', 'loan', 'mortgag', 'lender', '80', '95', 'valu', 'disburs', 'disburs', 'handl', 'gener', 'partner', 'cover', 'current', 'near', 'term', 'third', 'parti', 'cost', 'necessari', 'reserv', 'prioriti', 'payment', 'partner', 'per', 'agreement', 'the', 'gener', 'partner', 'contract', 'creeksid', 'builder', 'llc', 'construct', 'unit', 'fee', 'CB', 'includ', 'construct', 'manag', 'overhead', 'fee', 'equal', '15', 'direct', 'hard', 'cost', 'exclud', 'land', 'financ', 'sale', 'cost', 'these', 'fee', 'moni', 'creeksid', 'larri', 'lewter', 'prior', 'calcul', 'profit', 'except', 'direct', 'reimburs', 'partnership', 'expens', 'b', 'direct', 'payment', 'CB', 'subcontractor', 'cost', 'perform', 'for', 'exampl', 'CB', 'find', 'good', 'trim', 'carpent', 'sub', 'find', 'enough', 'trim', 'carpent', 'etc', 'decid', 'undertak', 'function', 'charg', 'partnership', 'fee', 'abl', 'obtain', 'third', 'parti', 'disclos', 'case', 'partnership', 'final', 'CB', 'receiv', 'fee', 'use', 'equip', 'use', 'lieu', 'leas', 'equip', 'other', 'At', 'present', 'CB', 'signific', 'equip', 'consid', 'purchas', 'sky', 'track', 'facilit', 'speed', 'frame', 'cornic', 'roof', 'drywal', 'spread', 'report', 'We', 'will', 'provid', 'report', 'track', 'expens', 'v', 'plan', 'what', 'mind', 'I', 'would', 'like', 'use', 'form', 'internet', 'base', 'report', 'bookkeep', 'I', 'sure', 'refer', 'question', 'bookkeep', 'procedur', 'record', 'actual', 'expens', 'pleas', 'expand', 'investor', 'input', 'We', 'glad', 'investor', 'input', 'design', 'materi', 'As', 'alway', 'question', 'final', 'say', 'disagr', 'experi', 'I', 'alway', 'abl', 'reach', 'consensu', 'As', 'I', 'presum', 'keith', 'want', 'involv', 'learn', 'much', 'possibl', 'would', 'make', 'everi', 'effort', 'accommod', 'creeksid', 'proceedur', 'CB', 'procedur', 'deal', 'sub', 'vendor', 'profession', 'formal', 'question', 'indic', 'In', 'extrem', 'tight', 'labor', 'market', 'obtain', '3', 'bid', 'labor', 'trade', 'feasibl', 'for', 'profession', 'sub', 'use', 'develop', 'previou', 'rapport', 'final', 'vendor', 'constantli', 'shop', 'preselect', 'profession', 'sub', 'and', 'vendor', 'ye', 'mani', 'differ', 'sub', 'identifi', 'I', 'provid', 'interest', 'I', 'know', 'I', 'answer', 'everyth', 'start', 'point', 'call', 'review', 'discu', 'sincer', 'georg', 'richard', 'presid', 'creeksid', 'builder', 'llc', 'winmaildat']","[('loan', 0.031225275), ('cost', 0.018899467), ('would', 0.014790862), ('improv', 0.013147419), ('lot', 0.013147419), ('construct', 0.012325699), ('land', 0.012325698), ('the', 0.009860538), ('fee', 0.009038817), ('per', 0.008217097)]",loan,0.03122527
626,626,620,"['richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '10032000', '0230', 'PM', 'end', '10032000', '0330', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'confirm', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '10032000', '0230', 'PM', 'end', '10032000', '0330', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'statu', 'updat', 'fletcher', 'J', 'sturm', 'No', 'respons', 'scott', 'neal', 'No', 'respons', 'hunter', 'S', 'shive', 'No', 'respons', 'phillip', 'K', 'allen', 'No', 'respons', 'allan', 'severud', 'accept', 'scott', 'mill', 'accept', 'russ', 'severson', 'No', 'respons', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'reschedul', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09272000', '0200', 'PM', 'end', '09272000', '0300', 'PM', 'descript', 'ga', 'trade', 'vision', 'meet', 'room', 'eb2601', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'phillip', 'K', 'allenhouectect', 'hunter', 'S', 'shivelyhouectect', 'scott', 'millshouectect', 'allan', 'severudehouectect', 'jeffrey', 'C', 'gossetthouectect', 'colleen', 'sullivanhouectect', 'russ', 'seversonhouectect', 'jayant', 'krishnaswamyhouectect', 'russel', 'longhouectect', 'detail', 'descript', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'confirm', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09272000', '0200', 'PM', 'end', '09272000', '0300', 'PM', 'descript', 'ga', 'trade', 'vision', 'meet', 'room', 'eb2601', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'phillip', 'K', 'allenhouectect', 'hunter', 'S', 'shivelyhouectect', 'scott', 'millshouectect', 'allan', 'severudehouectect', 'jeffrey', 'C', 'gossetthouectect', 'colleen', 'sullivanhouectect', 'russ', 'seversonhouectect', 'jayant', 'krishnaswamyhouectect', 'russel', 'longhouectect', 'detail', 'descript', 'statu', 'updat', 'phillip', 'K', 'allen', 'No', 'respons', 'hunter', 'S', 'shive', 'No', 'respons', 'scott', 'mill', 'No', 'respons', 'allan', 'severud', 'accept', 'jeffrey', 'C', 'gossett', 'accept', 'colleen', 'sullivan', 'No', 'respons', 'russ', 'severson', 'No', 'respons', 'jayant', 'krishnaswami', 'accept', 'russel', 'long', 'accept', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'reschedul', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09282000', '0100', 'PM', 'end', '09282000', '0200', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'confirm', 'chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09282000', '0100', 'PM', 'end', '09282000', '0200', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'statu', 'updat', 'fletcher', 'J', 'sturm', 'No', 'respons', 'scott', 'neal', 'No', 'respons', 'hunter', 'S', 'shive', 'No', 'respons', 'phillip', 'K', 'allen', 'No', 'respons', 'allan', 'severud', 'accept', 'scott', 'mill', 'accept', 'russ', 'severson', 'accept', 'forward', 'phillip', 'K', 'allenhouect', '09262000', '0200', 'PM', 'from', 'cindi', 'cicchetti', '09262000', '1038', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'hunter', 'S', 'shivelyhouectect', 'scott', 'millshouectect', 'allan', 'severudehouectect', 'jeffrey', 'C', 'gossetthouectect', 'colleen', 'sullivanhouectect', 'russ', 'seversonhouectect', 'jayant', 'krishnaswamyhouectect', 'russel', 'longhouectect', 'cc', 'subject', 'ga', 'trade', 'vision', 'mtg', 'thi', 'meet', 'move', '400', 'wed', 'room', '2601', 'I', 'sent', 'confirm', 'via', 'lotu', 'note', 'sorri', 'chang', 'schedul', 'problem', 'coupl', 'peopl', 'origin', 'time', 'slot']","[('meet', 0.036006805), ('PM', 0.031096773), ('K', 0.027823417), ('phillip', 0.027823417), ('scott', 0.027823417), ('respons', 0.024550062), ('No', 0.024550062), ('start', 0.021276707), ('date', 0.021276705), ('descript', 0.021276705)]",meet,0.03600680
627,627,621,"['nymex', 'expir', 'time', 'frame', 'pleas', 'reschedul']","[('nymex', 0.16666667), ('expir', 0.16666667), ('time', 0.16666667), ('frame', 0.16666667), ('pleas', 0.16666667), ('reschedul', 0.16666667)]",nymex,0.1666666
628,628,622,"['chairperson', 'richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09272000', '1130', 'AM', 'end', '09272000', '1230', 'PM', 'descript', 'ga', 'trade', 'vision', 'meet', 'room', 'eb2556', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'phillip', 'K', 'allenhouect', 'hunter', 'S', 'shivelyhouect', 'scott', 'millshouect', 'allan', 'severudehouect', 'jeffrey', 'C', 'gossetthouect', 'colleen', 'sullivanhouect', 'russ', 'seversonhouect', 'jayant', 'krishnaswamyhouect', 'russel', 'longhouect', 'detail', 'descript']","[('meet', 0.049505033), ('09272000', 0.029702988), ('start', 0.029702988), ('descript', 0.029702988), ('date', 0.029702988), ('S', 0.019801978), ('millshouect', 0.019801978), ('severudehouect', 0.019801978), ('shivelyhouect', 0.019801978), ('allan', 0.019801978)]",meet,0.04950503
629,629,623,"['I', 'schedul', 'enter', 'calendar', 'meet', 'referenc', 'topic', 'It', 'take', 'place', 'thursday', '928', '300', '400', 'room', 'eb2537']","[('place', 0.0625), ('It', 0.0625), ('room', 0.0625), ('400', 0.0625), ('300', 0.0625), ('928', 0.0625), ('thursday', 0.0625), ('I', 0.0625), ('take', 0.0625), ('meet', 0.0625)]",place,0.062
630,630,624,"['jeff', 'Is', 'close', 'today', 'after', 'review', 'agreementi', 'find', 'isnt', 'bind', 'far', 'I', 'determin', 'It', 'vagu', 'doesnt', 'sound', 'like', 'anyth', 'attorney', 'titl', 'compani', 'woulddraft', 'real', 'estat', 'closingbut', 'cours', 'I', 'could', 'wrong', 'If', 'thisclos', 'go', 'take', 'place', 'without', 'agreement', 'point', 'follow', 'thisdocu', 'valid', 'I', 'need', 'go', 'back', 'close', 'document', 'see', 'what', 'find', 'I', 'deal', 'best', 'I', 'I', 'guess', 'I', 'expect', 'someth', 'would', 'exhibit', 'record', 'document', 'someth', 'littl', 'exact', 'rathersort', 'contract', 'thi', 'isnt', 'either', 'I', 'tri', 'get', 'real', 'estat', 'atti', 'phone', 'last', 'night', 'pocket', 'I', 'talk', 'crim', 'atti', 'friend', 'said', 'area', 'doesnt', 'sound', 'bind', 'I', 'go', 'back', 'mine', 'phillip', 'allen', 'transactionand', 'take', 'look', 'vagu', 'gener', 'I', 'doubt', 'signatur', 'even', 'need', 'complet', 'transact', 'I', '12', 'noon', 'need', 'contact', 'regard', 'close', 'I', 'realli', 'want', 'hold', 'anyth', 'gener', 'work', 'I', 'dont', 'want', 'insult', 'annoy', 'anyon', 'paper', 'realli', 'doesnt', 'seem', 'someth', 'requir', 'close', 'In', 'event', 'need', 'signatur', 'someth', 'like', 'I', 'would', 'rather', 'time', 'review', 'I', 'accept', 'brenda']","[('I', 0.06719413), ('someth', 0.019762909), ('need', 0.019762909), ('close', 0.019762909), ('doesnt', 0.01581031), ('go', 0.01581031), ('gener', 0.011857715), ('take', 0.011857715), ('document', 0.0118577145), ('real', 0.0118577145)]",I,0.0671941
631,631,625,"['chri', 'what', 'latest', 'pge', 'We', 'good', 'discuss', 'regard', 'eol', 'call', 'x37041', 'phillip']","[('regard', 0.08333334), ('good', 0.08333334), ('x37041', 0.08333334), ('call', 0.08333334), ('eol', 0.08333334), ('chri', 0.08333334), ('discuss', 0.08333334), ('latest', 0.08333334), ('pge', 0.08333334), ('what', 0.08333334)]",regard,0.0833333
632,632,626,"['richard', 'burchfield', 'sent', 'cindi', 'cicchetti', 'start', '09282000', '0100', 'PM', 'end', '09282000', '0200', 'PM', 'descript', 'ga', 'physicalfinancail', 'posit', 'room', '2537', 'thi', 'meet', 'repeat', 'start', 'date', 'occur', 'weekend', 'meet', 'meet', 'date', 'fletcher', 'J', 'sturmhouect', 'scott', 'nealhouect', 'hunter', 'S', 'shivelyhouect', 'phillip', 'K', 'allenhouect', 'allan', 'severudehouect', 'scott', 'millshouect', 'russ', 'seversonhouect', 'detail', 'descript', 'the', 'meet', 'richard', 'burchfieldhouect', 'reschedul', 'On', '09282000', '030000', 'PM', 'cdt', 'for', '1', 'hour', 'with', 'richard', 'burchfieldhouect', 'chairperson', 'fletcher', 'J', 'sturmhouect', 'invit', 'scott', 'nealhouect', 'invit', 'hunter', 'S', 'shivelyhouect', 'invit', 'phillip', 'K', 'allenhouect', 'invit', 'allan', 'severudehouect', 'invit', 'scott', 'millshouect', 'invit', 'russ', 'seversonhouect', 'invit', 'ga', 'physicalfinancail', 'posit', 'room', '2537']","[('invit', 0.05479465), ('scott', 0.034246624), ('meet', 0.034246624), ('09282000', 0.027397284), ('PM', 0.027397284), ('richard', 0.027397284), ('shivelyhouect', 0.020547945), ('S', 0.020547945), ('phillip', 0.020547945), ('allenhouect', 0.020547945)]",invit,0.0547946
633,633,696,"['stephani', 'pleas', 'grant', 'paul', 'request', 'eol', 'right', 'thank', 'phillip']","[('stephani', 0.11111111), ('pleas', 0.11111111), ('grant', 0.11111111), ('paul', 0.11111111), ('request', 0.11111111), ('eol', 0.11111111), ('right', 0.11111111), ('thank', 0.11111111), ('phillip', 0.11111111)]",stephani,0.1111111
634,634,631,"['georg', 'below', 'list', 'question', 'keith', 'I', 'regard', 'westgat', 'project', 'ownership', 'structur', 'what', 'ownership', 'structur', 'limit', 'partnership', 'gener', 'partner', 'what', 'legal', 'entiti', 'involv', 'capacityregard', 'ownership', 'liabil', 'who', 'own', 'land', 'improv', 'who', 'hold', 'variou', 'loan', 'Is', 'land', 'collater', 'invest', 'what', 'happen', 'initi', 'invest', 'Is', 'use', 'purchas', 'land', 'cashsecur', 'futur', 'loan', 'whi', 'land', 'cost', 'spread', 'cash', 'flow', 'statement', 'when', '700000', 'actual', 'need', 'now', 'land', 'close', 'invest', 'schedul', 'invest', 'return', 'Is', 'equiti', 'repay', 'return', 'origin', 'invest', 'Is', 'plan', 'wait', 'last', 'unit', 'sold', 'close', 'profit', 'distribut', 'debt', 'which', 'entiti', 'borrow', 'loan', 'recours', 'collater', 'associ', 'loan', 'improv', 'construct', 'are', 'two', 'loan', 'look', 'like', 'cash', 'flow', 'statement', 'term', 'loan', 'use', 'fund', 'how', 'disburs', 'made', 'By', 'what', 'type', 'bank', 'account', 'control', 'max', 'disburs', 'internet', 'view', 'investor', 'report', 'track', 'expens', 'v', 'plan', 'bookkeep', 'procedur', 'record', 'actual', 'expens', 'what', 'relationship', 'creeksid', 'builder', 'project', 'Do', 'get', 'paid', 'markup', 'subcontractor', 'gener', 'contractor', 'paid', 'gain', 'profit', 'Do', 'larri', 'receiv', 'money', 'form', 'salari', 'person', 'expens', 'ultim', 'payout', 'profit', 'design', 'construct', 'when', 'design', 'complet', 'what', 'input', 'investor', 'select', 'design', 'materi', 'unit', 'what', 'level', 'investor', 'involv', 'possibl', 'construct', 'plan', 'permit', 'doe', 'creeksid', 'specif', 'procedur', 'deal', 'subcontractor', 'vendor', 'profession', 'such', 'alway', 'get', '3', 'bid', 'payment', 'schedul', 'refer', 'check', 'are', 'specif', 'compani', 'individu', 'alreadi', 'plan', 'use', 'name', 'these', 'question', 'probabl', 'basic', 'first', 'time', 'investor', 'project', 'like', 'new', 'also', 'I', 'want', 'learn', 'much', 'possibl', 'process', 'phillip']","[('what', 0.022038724), ('loan', 0.019283874), ('land', 0.01652902), ('invest', 0.01652902), ('Is', 0.013774167), ('investor', 0.013774167), ('plan', 0.013774167), ('ownership', 0.011019317), ('project', 0.011019317), ('profit', 0.0110193165)]",what,0.02203872
635,635,632,"['enclos', 'preliminari', 'proforma', 'westgat', 'properti', 'austin', 'told', 'As', 'tell', 'proforma', 'project', 'produc', 'truli', 'except', 'return', '40', 'per', 'year', '3', 'year', 'thi', 'especi', 'attract', 'project', 'market', 'strong', 'austin', 'introduc', 'new', 'product', 'low', 'price', 'rang', 'market', 'thi', 'best', 'project', 'term', 'risk', 'reward', 'uncov', 'date', 'austin', 'market', 'the', 'project', 'approv', 'zone', 'requir', 'site', 'plan', 'As', 'smart', 'growth', 'corridor', 'area', 'design', 'citi', 'austin', 'prefer', 'develop', 'fast', 'track', 'complet', 'le', '6', 'month', 'addit', 'mani', 'current', 'sever', 'water', 'treatment', 'ordin', 'waiv', 'I', 'estim', 'lot', 'improv', 'cost', 'base', '28', 'lot', 'develop', 'investig', 'north', 'austin', 'includ', 'detentionretent', 'filtrat', 'pond', 'street', 'widen', 'even', 'though', 'properti', 'like', 'requir', 'street', 'widen', 'le', 'detentionretent', 'filtrat', 'pond', 'requir', 'I', 'use', 'data', 'cautiou', 'the', 'lone', 'star', 'ga', 'line', 'easement', 'lower', 'portion', 'properti', 'expect', 'impact', 'sale', 'significantli', 'other', 'project', 'quit', 'success', 'ident', 'relationship', 'pipelin', 'adjoin', 'singl', 'famili', 'residenti', 'project', 'St', 'edward', 'univers', 'As', 'infil', 'project', 'qualiti', 'surround', 'neighborhood', 'uneven', 'We', 'includ', 'fenc', 'around', 'entir', 'properti', 'may', 'put', 'westgat', 'cameron', 'loop', 'gate', 'commun', 'far', 'prefer', 'good', 'idea', 'screen', 'current', 'buyer', 'prefer', 'the', 'seller', 'accept', 'offer', 'thursday', 'even', 'price', '680000', 'extend', 'escrow', 'thi', 'enabl', 'u', 'probabl', 'obtain', 'approv', 'site', 'plan', 'close', 'contract', 'mean', 'close', 'AD', 'loan', 'rather', 'land', 'loan', 'improv', 'loan', 'thi', 'analysi', 'show', 'invest', '700000', '50', 'interest', 'profit', 'project', 'As', 'discuss', 'san', 'marco', 'also', 'discu', 'invest', 'lot', 'sell', 'lot', 'construct', 'entiti', 'profit', 'lot', 'I', 'believ', 'would', 'facilit', 'use', '1031', 'exchang', 'proce', 'deal', 'anoth', 'project', 'rental', 'deal', 'least', 'land', 'rental', 'project', 'would', 'equiti', 'project', 'you', 'would', 'need', 'discu', 'exchang', 'expert', 'first', 'larri', 'lewter', 'know', 'expert', 'field', 'san', 'antonio', 'know', 'anyon', 'I', 'send', 'packag', 'properti', 'prepar', 'broker', 'airborn', 'express', 'today', 'saturday', 'deliveri', 'onc', 'read', 'packag', 'review', 'proforma', 'would', 'want', 'schedul', 'tour', 'site', 'area', 'pleas', 'get', 'back', 'soon', 'schedul', 'permit', 'regard', 'site', 'visit', 'feel', 'free', 'call', 'time', 'you', 'reach', 'weekend', 'even', 'either', '5123381119', '5123381110', 'My', 'cell', 'phone', '5127487495', 'fax', '5123381103', 'I', 'look', 'forward', 'hear', 'work', 'project', 'sure', 'major', 'winner', 'I', 'regret', 'took', 'long', 'get', 'back', 'unusu', 'event', 'past', 'week', 'A', 'small', 'freakish', 'wind', 'storm', 'sever', '60mpg', 'downdraft', 'hit', 'south', 'part', 'austin', 'build', '10', 'town', 'home', 'one', 'unit', 'roof', 'deck', 'side', 'schedul', 'start', 'next', 'day', 'the', 'sever', 'downdraft', 'hit', 'deck', 'roof', 'enough', 'knock', 'the', 'citi', 'shut', 'project', 'week', 'took', 'anoth', 'week', 'get', 'everi', 'thing', 'back', 'tract', 'then', 'last', 'week', 'I', 'take', 'wife', 'emerg', 'she', 'bulg', 'materi', 'vertebra', 'spine', 'caus', 'extrem', 'pain', 'kept', 'bedridden', 'past', 'week', 'there', 'noth', 'like', 'wife', 'incapacit', 'realiz', 'enorm', 'number', 'thing', 'everyday', 'fortun', 'look', 'ok', 'long', 'run', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc', 'westgat', 'proformaphillip', 'allenxl']","[('project', 0.019915015), ('I', 0.011379966), ('austin', 0.009957459), ('lot', 0.008534949), ('week', 0.008534949), ('the', 0.008534949), ('properti', 0.008534949), ('site', 0.0071124425), ('thi', 0.0071124425), ('As', 0.0071124425)]",project,0.01991501
636,636,633,"['georg', 'here', 'sale', 'number', 'reagan', 'As', 'see', 'unit', 'sold', 'varieti', 'price', 'per', 'squar', 'foot', 'the', '13081308', 'model', 'seem', 'data', 'look', 'similiar', 'unit', 'sell', 'At', '27', 'MM', 'bid', '70sf', 'higher', 'unit', 'construct', 'I', 'hard', 'time', 'justifi', 'pay', 'much', 'competit', 'way', 'the', 'price', 'I', 'bid', 'higher', 'deal', 'actual', 'done', 'date', 'let', 'know', 'think', 'I', 'follow', 'email', 'phone', 'call', 'cherri', 'creek', 'I', 'sure', 'deborah', 'yate', 'let', 'know', 'bid', 'reject', 'De', 'vill', 'properti', 'phillip', 'allen']","[('I', 0.038461618), ('bid', 0.030769272), ('unit', 0.030769272), ('price', 0.023076938), ('the', 0.023076938), ('higher', 0.023076938), ('know', 0.023076938), ('let', 0.023076938), ('actual', 0.015384611), ('date', 0.015384611)]",I,0.03846161
637,637,634,"['jeff', 'what', 'burnet', 'phillip']","[('jeff', 0.25), ('what', 0.25), ('burnet', 0.25), ('phillip', 0.25)]",jeff,0.2
638,638,635,"['jeff', 'I', 'need', 'see', 'site', 'plan', 'burnet', 'rememb', 'I', 'must', 'get', 'written', 'approv', 'brenda', 'key', 'stone', 'I', 'sell', 'properti', 'concern', 'way', 'properti', 'subdivid', 'I', 'would', 'also', 'like', 'review', 'close', 'statement', 'soon', 'possibl', 'phillip']","[('I', 0.080645256), ('properti', 0.048387118), ('would', 0.032258067), ('like', 0.032258067), ('concern', 0.032258067), ('way', 0.032258067), ('subdivid', 0.032258067), ('possibl', 0.032258067), ('also', 0.032258067), ('statement', 0.032258067)]",I,0.08064525
639,639,636,"['luci', 'I', 'want', 'accur', 'rent', 'roll', 'soon', 'possibl', 'I', 'fax', 'copi', 'file', 'you', 'fill', 'comput', 'write', 'correct', 'amount', 'I', 'input']","[('I', 0.105263196), ('file', 0.052631576), ('fax', 0.052631576), ('amount', 0.052631576), ('correct', 0.052631576), ('write', 0.052631576), ('comput', 0.052631576), ('fill', 0.052631576), ('you', 0.052631576), ('luci', 0.052631576)]",I,0.10526319
640,640,637,"['brenda', 'I', 'check', 'record', 'I', 'mail', 'check', '1178', 'normal', 'amount', 'august', '28th', 'I', 'mail', '4303', 'pate', 'Rd', '29', 'colleg', 'station', 'TX', '77845', 'I', 'go', 'ahead', 'mail', 'anoth', 'check', 'If', 'first', 'one', 'show', 'treat', '2nd', 'payment', 'octob', 'I', 'know', 'concern', 'site', 'plan', 'I', 'proceed', 'without', 'get', 'detail', 'get', 'approv', 'I', 'find', 'amort', 'schedul', 'send', 'soon', 'phillip']","[('I', 0.08080825), ('check', 0.040404078), ('mail', 0.040404078), ('get', 0.030303044), ('concern', 0.020202013), ('2nd', 0.020202013), ('site', 0.020202013), ('proceed', 0.020202013), ('know', 0.020202013), ('payment', 0.020202013)]",I,0.0808082
641,641,638,"['luci', 'you', 'wrote', 'fewer', 'check', 'month', 'spent', 'money', 'materi', 'le', 'labor', 'june', 'juli', 'august', 'total', 'materi', '2929', '4085', '4801', 'servic', '53', '581', '464', 'labor', '3187', '3428', '2770', 'here', 'question', 'august', 'bank', 'statement', 'attach', '1', 'check', '1406', 'walmart', 'descript', 'unit', '2', 'check', '1410', 'crump', 'detail', 'descript', 'unit', '3', 'check', '1411', 'luci', 'what', '4', 'check', '1415', 'pape', 'detail', 'descript', 'unit', '5', 'check', '1416', '1417', '1425', 'whi', 'overtim', '6', 'check', '1428', 'ralph', 'what', 'unit', '7', 'check', '1438', 'walmart', 'descript', 'unit', 'tri', 'pull', 'togeth', 'support', 'item', 'get', 'back', 'phillip']","[('check', 0.060402885), ('unit', 0.04026856), ('descript', 0.033557113), ('materi', 0.020134239), ('detail', 0.020134239), ('what', 0.020134239), ('labor', 0.020134239), ('august', 0.020134239), ('walmart', 0.020134239), ('luci', 0.020134239)]",check,0.06040288
642,642,639,"['ontact', 'list', 'mid', 'market', 'phillip', 'attach', 'list', 'have', 'peopl', 'fill', 'column', 'highlight', 'yellow', 'As', 'best', 'tri', 'overlap', 'account', 'thank', 'mike']","[('list', 0.0769231), ('column', 0.05128205), ('thank', 0.05128205), ('account', 0.05128205), ('overlap', 0.05128205), ('tri', 0.05128205), ('best', 0.05128205), ('As', 0.05128205), ('yellow', 0.05128205), ('ontact', 0.05128205)]",list,0.076923
643,643,640,['httpwwwhearmecomvc2chnlownrpallenenroncom'],"[('httpwwwhearmecomvc2chnlownrpallenenroncom', 1.0)]",,
644,644,641,"['enclos', 'preliminari', 'proforma', 'westgat', 'properti', 'austin', 'told', 'As', 'tell', 'proforma', 'project', 'produc', 'truli', 'except', 'return', '40', 'per', 'year', '3', 'year', 'thi', 'especi', 'attract', 'project', 'market', 'strong', 'austin', 'introduc', 'new', 'product', 'low', 'price', 'rang', 'market', 'thi', 'best', 'project', 'term', 'risk', 'reward', 'uncov', 'date', 'austin', 'market', 'the', 'project', 'approv', 'zone', 'requir', 'site', 'plan', 'As', 'smart', 'growth', 'corridor', 'area', 'design', 'citi', 'austin', 'prefer', 'develop', 'fast', 'track', 'complet', 'le', '6', 'month', 'addit', 'mani', 'current', 'sever', 'water', 'treatment', 'ordin', 'waiv', 'I', 'estim', 'lot', 'improv', 'cost', 'base', '28', 'lot', 'develop', 'investig', 'north', 'austin', 'includ', 'detentionretent', 'filtrat', 'pond', 'street', 'widen', 'even', 'though', 'properti', 'like', 'requir', 'street', 'widen', 'le', 'detentionretent', 'filtrat', 'pond', 'requir', 'I', 'use', 'data', 'cautiou', 'the', 'lone', 'star', 'ga', 'line', 'easement', 'lower', 'portion', 'properti', 'expect', 'impact', 'sale', 'significantli', 'other', 'project', 'quit', 'success', 'ident', 'relationship', 'pipelin', 'adjoin', 'singl', 'famili', 'residenti', 'project', 'St', 'edward', 'univers', 'As', 'infil', 'project', 'qualiti', 'surround', 'neighborhood', 'uneven', 'We', 'includ', 'fenc', 'around', 'entir', 'properti', 'may', 'put', 'westgat', 'cameron', 'loop', 'gate', 'commun', 'far', 'prefer', 'good', 'idea', 'screen', 'current', 'buyer', 'prefer', 'the', 'seller', 'accept', 'offer', 'thursday', 'even', 'price', '680000', 'extend', 'escrow', 'thi', 'enabl', 'u', 'probabl', 'obtain', 'approv', 'site', 'plan', 'close', 'contract', 'mean', 'close', 'AD', 'loan', 'rather', 'land', 'loan', 'improv', 'loan', 'thi', 'analysi', 'show', 'invest', '700000', '50', 'interest', 'profit', 'project', 'As', 'discuss', 'san', 'marco', 'also', 'discu', 'invest', 'lot', 'sell', 'lot', 'construct', 'entiti', 'profit', 'lot', 'I', 'believ', 'would', 'facilit', 'use', '1031', 'exchang', 'proce', 'deal', 'anoth', 'project', 'rental', 'deal', 'least', 'land', 'rental', 'project', 'would', 'equiti', 'project', 'you', 'would', 'need', 'discu', 'exchang', 'expert', 'first', 'larri', 'lewter', 'know', 'expert', 'field', 'san', 'antonio', 'know', 'anyon', 'I', 'send', 'packag', 'properti', 'prepar', 'broker', 'airborn', 'express', 'today', 'saturday', 'deliveri', 'onc', 'read', 'packag', 'review', 'proforma', 'would', 'want', 'schedul', 'tour', 'site', 'area', 'pleas', 'get', 'back', 'soon', 'schedul', 'permit', 'regard', 'site', 'visit', 'feel', 'free', 'call', 'time', 'you', 'reach', 'weekend', 'even', 'either', '5123381119', '5123381110', 'My', 'cell', 'phone', '5127487495', 'fax', '5123381103', 'I', 'look', 'forward', 'hear', 'work', 'project', 'sure', 'major', 'winner', 'I', 'regret', 'took', 'long', 'get', 'back', 'unusu', 'event', 'past', 'week', 'A', 'small', 'freakish', 'wind', 'storm', 'sever', '60mpg', 'downdraft', 'hit', 'south', 'part', 'austin', 'build', '10', 'town', 'home', 'one', 'unit', 'roof', 'deck', 'side', 'schedul', 'start', 'next', 'day', 'the', 'sever', 'downdraft', 'hit', 'deck', 'roof', 'enough', 'knock', 'the', 'citi', 'shut', 'project', 'week', 'took', 'anoth', 'week', 'get', 'everi', 'thing', 'back', 'tract', 'then', 'last', 'week', 'I', 'take', 'wife', 'emerg', 'she', 'bulg', 'materi', 'vertebra', 'spine', 'caus', 'extrem', 'pain', 'kept', 'bedridden', 'past', 'week', 'there', 'noth', 'like', 'wife', 'incapacit', 'realiz', 'enorm', 'number', 'thing', 'everyday', 'fortun', 'look', 'ok', 'long', 'run', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc', 'westgat', 'proformaphillip', 'allenxl']","[('project', 0.019915015), ('I', 0.011379966), ('austin', 0.009957459), ('week', 0.008534949), ('the', 0.008534949), ('lot', 0.008534949), ('properti', 0.008534949), ('thi', 0.0071124425), ('would', 0.0071124425), ('As', 0.0071124425)]",project,0.01991501
645,645,642,"['jeff', 'I', 'receiv', 'rent', 'roll', 'I', 'go', 'san', 'marco', 'weekend', 'I', 'book', 'stage', 'coach', 'I', 'drive', 'friday', 'even', 'I', 'let', 'know', 'next', 'week', 'I', 'need', 'see', 'insid', 'can', 'find', 'chelsea', 'villa', 'last', 'chang', 'hand', 'price', 'what', 'get', 'look', 'site', 'plan', 'burnet', 'deal', 'rememb', 'get', 'brenda', 'happi', 'phillip']","[('I', 0.0795456), ('get', 0.03409093), ('find', 0.02272727), ('chelsea', 0.02272727), ('villa', 0.02272727), ('last', 0.02272727), ('chang', 0.02272727), ('hand', 0.02272727), ('price', 0.02272727), ('what', 0.02272727)]",I,0.079545
646,646,643,"['98', '97', 'diff', 'socal', '36600', '37200', '600', 'nwpl', '51000', '51250', '250', 'san', 'juan', '32500', '32000', '500', 'the', 'reason', 'benchmark', 'report', 'show', 'net', 'sell', 'san', 'juan', 'transport', 'posit', 'roll', '98', 'thi', 'ad', '800', 'short', 'san', 'juan', '200', 'long', 'socal', 'befor', 'adjust', 'bought', '300', 'san', 'juan', 'sold', '800', 'socal']","[('juan', 0.059523895), ('san', 0.059523895), ('socal', 0.047619093), ('98', 0.035714302), ('800', 0.035714302), ('transport', 0.02380952), ('ad', 0.02380952), ('short', 0.02380952), ('posit', 0.02380952), ('thi', 0.02380952)]",juan,0.05952389
647,647,644,"['aeco', 'basi', 'low', 'list', 'Is', 'nwpl', 'map', 'differ', 'aeco', 'what', 'correl', 'nymex', 'aeco']","[('aeco', 0.16666673), ('basi', 0.083333336), ('low', 0.083333336), ('list', 0.083333336), ('Is', 0.083333336), ('nwpl', 0.083333336), ('map', 0.083333336), ('differ', 0.083333336), ('what', 0.083333336), ('correl', 0.083333336)]",aeco,0.1666667
648,648,645,"['jeff', 'you', 'would', 'clearli', 'receiv', 'commiss', 'deal', 'sagewood', 'I', 'surpris', 'request', 'payment', 'type', 'project', 'I', 'might', 'becom', 'involv', 'creeksid', 'are', 'busi', 'broker', 'properti', 'contact', 'Is', 'posit', 'base', 'legal', 'perceiv', 'ethic', 'issu', 'did', 'propos', 'look', 'develop', 'project', 'scratch', 'I', 'prepar', 'pay', '27', 'sagewood', 'yet', 'phillip']","[('I', 0.047619093), ('project', 0.035714302), ('sagewood', 0.035714302), ('ethic', 0.02380952), ('issu', 0.02380952), ('did', 0.02380952), ('posit', 0.02380952), ('base', 0.02380952), ('look', 0.02380952), ('legal', 0.02380952)]",I,0.04761909
649,649,646,"['transwestern', 'pipelin', 'Co', 'post', 'new', 'notic', 'sinc', 'last', 'check', '12132000', '33001', 'PM', 'newest', 'notic', 'look', 'like', 'capac', 'constraint', 'dec', '13', '2000', '403pm', 'dec', '14', '2000', '900am', 'dec', '15', '2000', '859am', '2241', 'alloc', 'san', 'juan', 'later', 'pleas', 'click', 'follow', 'go', 'web', 'site', 'detail', 'httpiosetsenroncominfopostingssharedetnoncriticalnoticeaspcompani', '60']","[('dec', 0.04819282), ('2000', 0.04819282), ('notic', 0.036144596), ('juan', 0.024096385), ('click', 0.024096385), ('15', 0.024096385), ('859am', 0.024096385), ('2241', 0.024096385), ('alloc', 0.024096385), ('san', 0.024096385)]",dec,0.0481928
650,650,647,"['I', 'awar', 'regan', 'lehman', 'lot', 'develop', 'entir', '70', 'lot', 'duplex', 'project', 'sell', 'unit', '180', 'He', 'much', 'lower', 'basi', 'lot', 'anyon', 'els', 'prime', 'differ', 'due', 'sell', 'construct', 'b', 'smaller', 'unit', 'We', 'know', 'exact', 'size', 'unit', 'believ', 'one', 'duplex', '11641302', 'sq', 'ft', 'plan', 'thi', 'would', 'produc', 'averag', 'sq', 'footag', '1233', 'would', '7380', 'psf', '182000', 'I', 'thought', 'sale', 'price', '187000', 'At', 'price', 'psf', '1376', 'sf', 'unit', 'would', 'sell', '203108', 'what', 'import', 'view', 'rental', 'rate', 'b', 'rentabl', 'you', 'current', 'rental', 'cost', 'data', 'evalu', 'As', 'rentabl', 'I', 'believ', 'shown', '3bedroom', '35', 'bath', 'strongli', 'prefer', 'market', 'In', 'fact', 'abl', 'purchas', 'addit', 'lot', 'regan', 'would', 'build', '4', 'bedroom', 'unit', 'along', '3bedroom', 'plan', 'phillip', 'I', 'call', 'today', 'go', 'thoroughli', 'sincer', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc']","[('unit', 0.028571537), ('I', 0.023809597), ('lot', 0.023809597), ('would', 0.023809597), ('sell', 0.019047663), ('psf', 0.014285728), ('sq', 0.014285728), ('b', 0.014285728), ('plan', 0.014285728), ('3bedroom', 0.014285728)]",unit,0.02857153
651,651,648,"['enclos', 'preliminari', 'proforma', 'westgat', 'properti', 'austin', 'told', 'As', 'tell', 'proforma', 'project', 'produc', 'truli', 'except', 'return', '40', 'per', 'year', '3', 'year', 'thi', 'especi', 'attract', 'project', 'market', 'strong', 'austin', 'introduc', 'new', 'product', 'low', 'price', 'rang', 'market', 'thi', 'best', 'project', 'term', 'risk', 'reward', 'uncov', 'date', 'austin', 'market', 'the', 'project', 'approv', 'zone', 'requir', 'site', 'plan', 'As', 'smart', 'growth', 'corridor', 'area', 'design', 'citi', 'austin', 'prefer', 'develop', 'fast', 'track', 'complet', 'le', '6', 'month', 'addit', 'mani', 'current', 'sever', 'water', 'treatment', 'ordin', 'waiv', 'I', 'estim', 'lot', 'improv', 'cost', 'base', '28', 'lot', 'develop', 'investig', 'north', 'austin', 'includ', 'detentionretent', 'filtrat', 'pond', 'street', 'widen', 'even', 'though', 'properti', 'like', 'requir', 'street', 'widen', 'le', 'detentionretent', 'filtrat', 'pond', 'requir', 'I', 'use', 'data', 'cautiou', 'the', 'lone', 'star', 'ga', 'line', 'easement', 'lower', 'portion', 'properti', 'expect', 'impact', 'sale', 'significantli', 'other', 'project', 'quit', 'success', 'ident', 'relationship', 'pipelin', 'adjoin', 'singl', 'famili', 'residenti', 'project', 'St', 'edward', 'univers', 'As', 'infil', 'project', 'qualiti', 'surround', 'neighborhood', 'uneven', 'We', 'includ', 'fenc', 'around', 'entir', 'properti', 'may', 'put', 'westgat', 'cameron', 'loop', 'gate', 'commun', 'far', 'prefer', 'good', 'idea', 'screen', 'current', 'buyer', 'prefer', 'the', 'seller', 'accept', 'offer', 'thursday', 'even', 'price', '680000', 'extend', 'escrow', 'thi', 'enabl', 'u', 'probabl', 'obtain', 'approv', 'site', 'plan', 'close', 'contract', 'mean', 'close', 'AD', 'loan', 'rather', 'land', 'loan', 'improv', 'loan', 'thi', 'analysi', 'show', 'invest', '700000', '50', 'interest', 'profit', 'project', 'As', 'discuss', 'san', 'marco', 'also', 'discu', 'invest', 'lot', 'sell', 'lot', 'construct', 'entiti', 'profit', 'lot', 'I', 'believ', 'would', 'facilit', 'use', '1031', 'exchang', 'proce', 'deal', 'anoth', 'project', 'rental', 'deal', 'least', 'land', 'rental', 'project', 'would', 'equiti', 'project', 'you', 'would', 'need', 'discu', 'exchang', 'expert', 'first', 'larri', 'lewter', 'know', 'expert', 'field', 'san', 'antonio', 'know', 'anyon', 'I', 'send', 'packag', 'properti', 'prepar', 'broker', 'airborn', 'express', 'today', 'saturday', 'deliveri', 'onc', 'read', 'packag', 'review', 'proforma', 'would', 'want', 'schedul', 'tour', 'site', 'area', 'pleas', 'get', 'back', 'soon', 'schedul', 'permit', 'regard', 'site', 'visit', 'feel', 'free', 'call', 'time', 'you', 'reach', 'weekend', 'even', 'either', '5123381119', '5123381110', 'My', 'cell', 'phone', '5127487495', 'fax', '5123381103', 'I', 'look', 'forward', 'hear', 'work', 'project', 'sure', 'major', 'winner', 'I', 'regret', 'took', 'long', 'get', 'back', 'unusu', 'event', 'past', 'week', 'A', 'small', 'freakish', 'wind', 'storm', 'sever', '60mpg', 'downdraft', 'hit', 'south', 'part', 'austin', 'build', '10', 'town', 'home', 'one', 'unit', 'roof', 'deck', 'side', 'schedul', 'start', 'next', 'day', 'the', 'sever', 'downdraft', 'hit', 'deck', 'roof', 'enough', 'knock', 'the', 'citi', 'shut', 'project', 'week', 'took', 'anoth', 'week', 'get', 'everi', 'thing', 'back', 'tract', 'then', 'last', 'week', 'I', 'take', 'wife', 'emerg', 'she', 'bulg', 'materi', 'vertebra', 'spine', 'caus', 'extrem', 'pain', 'kept', 'bedridden', 'past', 'week', 'there', 'noth', 'like', 'wife', 'incapacit', 'realiz', 'enorm', 'number', 'thing', 'everyday', 'fortun', 'look', 'ok', 'long', 'run', 'georg', 'W', 'richard', 'creeksid', 'builder', 'llc', 'westgat', 'proformaphillip', 'allenxl']","[('project', 0.019915015), ('I', 0.011379966), ('austin', 0.009957459), ('properti', 0.00853495), ('week', 0.008534949), ('the', 0.008534949), ('lot', 0.008534949), ('site', 0.0071124425), ('thi', 0.0071124425), ('would', 0.0071124425)]",project,0.01991501
652,652,649,"['get', 'your', 'privat', 'free', 'email', 'msn', 'hotmail', 'httpwwwhotmailcom', 'share', 'inform', 'creat', 'public', 'profil', 'httpprofilesmsncom', 'utilityxl', 'utilityxl']","[('utilityxl', 0.0967742), ('share', 0.06451613), ('httpprofilesmsncom', 0.06451613), ('profil', 0.06451613), ('public', 0.06451613), ('creat', 0.06451613), ('inform', 0.06451613), ('get', 0.06451613), ('email', 0.06451613), ('free', 0.06451613)]",utilityxl,0.096774
653,653,650,"['execut', 'impact', 'influenc', 'program', 'immedi', 'action', 'requir', 'Do', 'not', 'delet', 'As', 'part', 'execut', 'impact', 'influenc', 'program', 'particip', 'ask', 'gather', 'input', 'particip', 'manag', 'style', 'practic', 'experienc', 'immedi', 'manag', 'direct', 'report', 'eight', 'peerscolleagu', 'you', 'request', 'provid', 'feedback', 'particip', 'attend', 'next', 'program', 'your', 'input', 'ie', 'self', 'assess', 'manag', 'assess', 'direct', 'report', 'assess', 'peercolleagu', 'assess', 'combin', 'input', 'other', 'use', 'program', 'particip', 'develop', 'action', 'plan', 'improv', 'hisher', 'manag', 'style', 'practic', 'It', 'import', 'complet', 'assess', 'NO', 'later', 'than', 'close', 'OF', 'busi', 'thursday', 'septemb', '14', 'sinc', 'feedback', 'import', 'part', 'program', 'particip', 'ask', 'cancel', 'hisher', 'attend', 'enough', 'feedback', 'receiv', 'therefor', 'feedback', 'critic', 'To', 'complet', 'assess', 'pleas', 'click', 'follow', 'link', 'simpli', 'open', 'internet', 'browser', 'go', 'httpwwwfsddatasvccomenron', 'your', 'uniqu', 'ID', 'particip', 'ask', 'rate', 'uniqu', 'ID', 'particip', 'evh3ji', 'john', 'arnold', 'er93fx', 'john', 'lavorato', 'epexwx', 'hunter', 'shive', 'If', 'experi', 'technic', 'problem', 'pleas', 'call', 'denni', 'ward', 'fsd', 'data', 'servic', '7139428436', 'If', 'question', 'process', 'may', 'contact', 'debbi', 'nowak', 'enron', '7138533304', 'christi', 'smith', 'keilti', 'goldsmith', 'compani', '8584502554', 'thank', 'particip']","[('particip', 0.034351338), ('assess', 0.026717683), ('program', 0.022900859), ('feedback', 0.019084036), ('manag', 0.019084036), ('input', 0.01526721), ('ask', 0.015267208), ('john', 0.01145039), ('impact', 0.01145039), ('report', 0.01145039)]",particip,0.03435133
654,654,651,"['larri', 'just', 'note', 'touch', 'base', 'sagewood', 'townhom', 'develop', 'opportun', 'I', 'stumbl', 'across', 'duplex', 'sale', 'street', 'built', 'reagan', 'lehmann', '22', 'unit', 'sold', 'around', '2', 'million', '182000duplex', 'I', 'spoke', 'reagan', 'indic', 'unit', 'construct', 'would', 'avail', '180', 'are', 'unit', 'sell', 'significantli', 'differ', 'He', 'mention', 'unit', '1308', 'floor', 'plan', 'My', 'bid', '27', 'million', 'almost', '193000duplex', 'As', 'far', 'investor', 'new', 'project', 'I', 'still', 'interest', 'call', 'email', 'thought', 'phillip']","[('unit', 0.04201689), ('I', 0.03361349), ('million', 0.025210103), ('reagan', 0.025210101), ('plan', 0.01680672), ('floor', 0.01680672), ('My', 0.01680672), ('significantli', 0.01680672), ('He', 0.01680672), ('differ', 0.01680672)]",unit,0.0420168
655,655,652,"['ina', 'I', 'schedul', 'meet', 'jean', 'mrha', 'tomorrow', '330']","[('ina', 0.125), ('I', 0.125), ('schedul', 0.125), ('meet', 0.125), ('jean', 0.125), ('mrha', 0.125), ('tomorrow', 0.125), ('330', 0.125)]",ina,0.12
656,656,653,"['forward', 'tim', 'beldenhouect', '09062000', '0727', 'AM', 'enron', 'capit', 'trade', 'resourc', 'corp', 'from', 'kevin', 'M', 'presto', '09052000', '0159', 'PM', 'To', 'tim', 'beldenhouectect', 'cc', 'roger', 'herndonhouectect', 'john', 'zufferlihouectect', 'lloyd', 'willhouectect', 'doug', 'gilbertsmithcorpenronenron', 'mike', 'swerzbinhouectect', 'subject', 'wow', 'Do', 'underestim', 'effect', 'internet', 'economi', 'load', 'growth', 'I', 'preach', 'tremend', 'growth', 'describ', 'last', 'year', 'the', 'util', 'infrastructur', 'simpli', 'handl', 'load', 'distribut', 'level', 'ultimatley', 'distribut', 'gener', 'requir', 'power', 'qualiti', 'reason', 'the', 'citi', 'austin', 'TX', 'experienc', '300', 'MW', 'load', 'growth', 'year', 'due', 'server', 'farm', 'technolog', 'compani', 'there', '100', 'MW', 'server', 'farm', 'tri', 'hook', 'hlp', 'speak', 'deliv', '12', 'month', 'due', 'distribut', 'infrastructur', 'issu', 'obvious', 'seattl', 'porltand', 'bois', 'denver', 'san', 'fran', 'san', 'jose', 'market', 'rude', 'awaken', 'next', '23', 'year', 'forward', 'kevin', 'M', 'prestohouect', '09052000', '0341', 'PM', 'enron', 'north', 'america', 'corp', 'from', 'john', 'D', 'suarez', '09052000', '0145', 'PM', 'To', 'kevin', 'M', 'prestohouectect', 'mark', 'dana', 'davishouectect', 'paul', 'J', 'broderickhouectect', 'jeffrey', 'millernaenronenron', 'cc', 'subject', 'forward', 'john', 'D', 'suarezhouect', '09052000', '0146', 'PM', 'georg', 'hopley', '09052000', '1141', 'AM', 'To', 'john', 'D', 'suarezhouectect', 'suresh', 'vasanenron', 'communicationsenron', 'communicationsenron', 'cc', 'subject', 'internet', 'data', 'gain', 'Is', 'major', 'power', 'drain', 'local', 'util', 'septemb', '05', '2000', 'In', '1997', 'littleknown', 'silicon', 'valley', 'compani', 'call', 'exodu', 'commun', 'open', '15000squarefoot', 'data', 'center', 'tukwila', 'the', 'mission', 'handl', 'internet', 'traffic', 'comput', 'server', 'region', 'grow', 'number', 'dotcom', 'fastforward', 'summer', '2000', 'exodu', 'wrap', 'construct', 'new', '13acr', '576000squarefoot', 'data', 'center', 'le', 'mile', 'origin', 'facil', 'sit', 'confluenc', 'sever', 'fiber', 'optic', 'backbon', 'exodu', 'plant', 'consum', 'enough', 'power', 'small', 'town', 'eventu', 'hous', 'internet', 'server', 'firm', 'avenu', 'A', 'microsoft', 'onviacom', 'exodu', 'compani', 'build', 'massiv', 'data', 'center', 'near', 'seattl', 'more', 'dozen', 'compani', 'name', 'like', 'abovenet', 'globix', 'hostpro', 'look', 'facil', 'hous', 'network', 'equip', 'internet', 'economi', 'It', 'big', 'busi', 'could', 'effect', 'everyth', 'monthli', 'electr', 'bill', 'eas', 'access', 'favorit', 'web', 'site', 'data', 'center', 'also', 'known', 'coloc', 'facil', 'server', 'farm', 'sprout', 'furiou', 'pace', 'tukwila', 'kent', 'valley', 'express', 'concern', 'whether', 'seattl', 'citi', 'light', 'puget', 'sound', 'energi', 'handl', 'power', 'necessari', 'run', '24hour', 'highsecur', 'facil', 'We', 'talk', 'half', 'dozen', 'custom', 'request', '445', 'megawatt', 'power', 'littl', 'area', 'near', 'southcent', 'mall', 'said', 'karl', 'karzmar', 'manag', 'revenu', 'requir', 'puget', 'sound', 'energi', 'that', 'equival', 'six', 'oil', 'refineri', 'A', 'rel', 'new', 'phenomenon', 'util', 'busi', 'rise', 'internet', 'data', 'center', 'util', 'veteran', 'scratch', 'head', 'puget', 'sound', 'energi', 'last', 'week', 'ask', 'washington', 'util', 'transport', 'commiss', 'accept', 'tariff', 'new', 'data', 'center', 'the', 'tariff', 'design', 'protect', 'compani', 'exist', 'residenti', 'busi', 'custom', 'foot', 'bill', 'new', 'base', 'station', 'necessari', 'support', 'project', 'those', 'base', 'station', 'could', 'cost', 'much', '20', 'million', 'karzmar', 'said', 'not', 'left', 'behind', 'seattl', 'citi', 'light', 'plan', 'bring', 'data', 'center', 'issu', 'thursday', 'seattl', 'citi', 'council', 'meet', 'for', 'util', 'provid', 'power', 'home', 'busi', 'school', 'region', 'new', 'complex', 'issu', 'On', 'one', 'hand', 'data', 'center', 'amaz', 'appetit', 'power', 'repres', 'potenti', 'lucr', 'busi', 'custom', 'the', 'facil', 'run', '24', 'hour', 'day', 'seven', 'day', 'week', 'therefor', 'could', 'becom', 'constant', 'revenu', 'stream', 'On', 'hand', 'requir', 'much', 'energi', 'could', 'potenti', 'flood', 'util', 'exorbit', 'capit', 'expenditur', 'who', 'pay', 'expenditur', 'mean', 'power', 'rate', 'area', 'still', 'open', 'debat', 'these', 'facil', 'call', 'extrem', 'dens', 'load', 'said', 'bob', 'royer', 'director', 'commun', 'public', 'affair', 'seattl', 'citi', 'light', 'the', 'entir', 'univers', 'washington', 'stadium', 'light', 'footbal', 'game', 'medic', 'school', 'averag', '31', 'megawatt', 'per', 'day', 'We', 'data', 'center', 'project', 'front', 'u', 'ask', '30', '40', '50', 'megawatt', 'with', '15', 'million', 'squar', 'foot', 'interg', 'complex', 'tukwila', 'one', 'biggest', 'data', 'center', 'sabey', 'corp', 'repurchas', '135', 'million', 'squarefoot', 'interg', 'east', 'facil', 'last', 'septemb', 'boe', 'space', 'defens', 'In', 'le', '12', 'month', 'develop', 'leas', '92', 'percent', 'sixbuild', 'complex', 'seven', 'differ', 'coloc', 'compani', 'It', 'probabl', 'largest', 'data', 'center', 'park', 'countri', 'boast', 'laurent', 'pool', 'chief', 'oper', 'offic', 'sabey', 'exodu', 'icg', 'commun', 'netstream', 'commun', 'pac', 'west', 'telecomm', 'zama', 'network', 'leas', 'space', 'offic', 'park', 'after', 'build', 'exodu', 'first', 'tukwila', 'facil', '1997', 'sabey', 'becom', 'expert', 'arena', 'facil', 'either', 'manag', 'develop', 'lo', 'angel', 'spokan', 'denver', 'pool', 'claim', 'firm', 'one', 'top', 'four', 'builder', 'internet', 'data', 'center', 'countri', 'As', 'peopl', 'access', 'internet', 'conduct', 'bandwidthheavi', 'task', 'listen', 'onlin', 'music', 'pool', 'said', 'need', 'coloc', 'space', 'seattl', 'continu', 'escal', 'but', 'seattl', 'the', 'need', 'data', 'center', 'space', 'grow', 'rapid', 'clip', 'mani', 'technolog', 'hub', 'throughout', 'countri', 'caus', 'similar', 'concern', 'among', 'util', 'place', 'texa', 'california', 'exodu', 'one', 'largest', 'provid', 'coloc', 'space', 'plan', 'nearli', 'doubl', 'amount', 'space', 'end', 'year', 'while', 'compani', 'amazoncom', 'run', 'server', 'farm', 'mani', 'hightech', 'compani', 'decid', 'outsourc', 'oper', 'compani', 'exodu', 'may', 'better', 'prepar', 'deal', 'internet', 'traffic', 'manag', 'We', '2', 'million', 'squar', 'foot', 'space', 'construct', 'plan', 'doubl', 'size', 'next', 'nine', 'month', 'yet', 'demand', 'right', 'data', 'center', 'space', 'said', 'steve', 'porter', 'account', 'execut', 'exodu', 'seattl', 'the', 'boom', 'market', 'coloc', 'space', 'left', 'local', 'util', 'industri', 'perplex', 'It', 'acceler', 'quantum', 'way', 'serv', 'growth', 'said', 'seattl', 'citi', 'light', 'royer', 'the', 'util', 'industri', 'almost', 'stun', 'way']","[('data', 0.013769747), ('center', 0.012909132), ('util', 0.009466668), ('seattl', 0.009466668), ('compani', 0.008606053), ('facil', 0.008606053), ('internet', 0.008606053), ('exodu', 0.008606053), ('the', 0.008606053), ('space', 0.008606053)]",data,0.01376974
657,657,654,"['john', 'J', 'lavoratoenron', '09062000', '0539', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'Re', 'the', 'commerci', 'support', 'peopl', 'hunter', 'want', 'make', 'commerci', 'manag']","[('commerci', 0.06976745), ('subject', 0.046511624), ('cc', 0.046511624), ('make', 0.046511624), ('want', 0.046511624), ('hunter', 0.046511624), ('peopl', 0.046511624), ('support', 0.046511624), ('the', 0.046511624), ('Re', 0.046511624)]",commerci,0.0697674
658,658,655,['resum'],"[('resum', 1.0)]",,
659,659,656,"['We', 'receiv', 'complet', 'team', 'select', 'inform', 'It', 'imper', 'receiv', 'team', 'inform', 'email', 'phone', 'number', 'offic', 'asap', 'We', 'start', 'administr', 'without', 'inform', 'rater', 'le', 'time', 'provid', 'feedback', 'thank', 'assist', 'christi', 'origin', 'messag', 'from', 'christi', 'smith', 'mailtochristismithlrinetcom', 'sent', 'thursday', 'august', '31', '2000', '1033', 'AM', 'To', 'phillipkallenenroncom', 'Cc', 'debbi', 'nowak', 'email', 'deborah', 'evan', 'email', 'subject', 'receipt', 'team', 'select', 'form', 'execut', 'impact', 'influenc', 'program', 'import', 'high', 'Hi', 'phillip', 'We', 'appreci', 'prompt', 'attent', 'complet', 'team', 'select', 'inform', 'ideal', 'need', 'receiv', 'team', 'rater', 'team', 'select', 'form', 'sent', 'the', 'inform', 'need', 'easili', 'transfer', 'databas', 'directli', 'excel', 'spreadsheet', 'If', 'abil', 'complet', 'form', 'insert', 'list', 'still', 'requir', 'addit', 'inform', 'We', 'need', 'person', 'email', 'address', 'without', 'email', 'address', 'email', 'internet', 'link', 'ID', 'provid', 'feedback', 'send', 'automat', 'remind', 'via', 'email', 'It', 'would', 'also', 'good', 'person', 'phone', 'number', 'event', 'need', 'reach', 'So', 'need', 'receiv', 'complet', 'TS', 'excel', 'spreadsheet', 'need', 'instead', 'provid', 'need', 'inform', 'via', 'email', 'thank', 'assist', 'phillip', 'christi', 'L', 'smith', 'project', 'manag', 'client', 'servic', 'keilti', 'goldsmith', 'compani', '8584502554', 'origin', 'messag', 'from', 'phillip', 'K', 'allen', 'mailtophillipkallenenroncom', 'sent', 'thursday', 'august', '31', '2000', '1203', 'PM', 'To', 'debefsddatasvccom', 'subject', 'john', 'lavoratom', 'mike', 'grigsbyd', 'keith', 'holstd', 'frank', 'ermisd', 'steve', 'southd', 'jani', 'tholtd', 'scott', 'nealp', 'hunter', 'shivelyp', 'tom', 'martinp', 'john', 'arnoldp']","[('email', 0.028302066), ('need', 0.025157385), ('inform', 0.02515738), ('team', 0.022012696), ('complet', 0.015723329), ('select', 0.015723329), ('receiv', 0.015723329), ('We', 0.015723325), ('phillip', 0.012578644), ('provid', 0.012578644)]",email,0.02830206
660,660,657,"['market', 'alert', 'the', 'wall', 'street', 'journal', 'decemb', '13', '2000', 'the', 'nasdaq', 'composit', 'drop', '10831', '37', '282346', 'wednesday', 'investor', 'turn', 'attent', 'earn', 'warn', 'the', 'market', 'couldnt', 'sustain', 'initi', 'enthusiasm', 'elect', 'drama', 'near', 'close', 'dow', 'industri', 'finish', '2617', '1079444', 'for', 'more', 'inform', 'see', 'httpinteractivewsjcompagesmoneyhtm', 'TO', 'check', 'your', 'portfolio', 'see', 'httpinteractivewsjcompjportfoliodisplaycgi', 'advertis', 'visit', 'careerjournalcom', 'the', 'wall', 'street', 'journal', 'execut', 'career', 'site', 'read', '2000', 'articl', 'job', 'hunt', 'career', 'manag', 'plu', 'search', '30000', 'highlevel', 'job', 'for', 'today', 'featur', 'job', 'list', 'click', 'httpcareerjournalcom', 'look', 'for', 'the', 'perfect', 'holiday', 'gift', 'give', 'subscript', 'wsjcom', 'visit', 'httpinteractivewsjcomgiftlink2000', 'subscript', 'inform', 'TO', 'remov', 'yourself', 'list', 'see', 'httpinteractivewsjcompersoncgibinsearchuserplactionemailalert', 'then', 'uncheck', 'appropri', 'box', 'unsubscrib', 'list', 'click', 'save', 'select', 'button', 'when', 'regist', 'wsjcom', 'indic', 'wish', 'receiv', 'market', 'new', 'alert', 'email', 'for', 'question', 'pleas', 'call', 'custom', 'servic', 'depart', '18003692834', '16095140870', 'hour', '8', '9', 'pm', 'eastern', 'mondayfriday', 'email', 'inquiriesinteractivewsjcom', 'copyright', '2000', 'dow', 'jone', 'compani', 'inc', 'all', 'right', 'reserv']","[('the', 0.023622151), ('for', 0.01968511), ('market', 0.01574807), ('list', 0.01574807), ('2000', 0.01574807), ('job', 0.01574807), ('see', 0.01574807), ('journal', 0.011811036), ('visit', 0.011811035), ('career', 0.011811035)]",the,0.02362215
661,661,658,"['from', 'phillip', 'K', 'allen', '08292000', '0220', 'PM', 'To', 'markintelligencepresscom', 'cc', 'subject', 'mark', 'here', 'spreadsheet', 'detail', 'septemb', 'socal', 'trade', 'I', 'distinguish', 'buy', 'v', 'sell', 'phillip']","[('phillip', 0.06382982), ('trade', 0.042553194), ('detail', 0.042553194), ('septemb', 0.042553194), ('socal', 0.042553194), ('I', 0.042553194), ('v', 0.042553194), ('buy', 0.042553194), ('mark', 0.042553194), ('distinguish', 0.042553194)]",phillip,0.0638298
662,662,659,"['north', 'america', 'corp', 'from', 'matt', 'motley', '09012000', '0853', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'fyi', 'ray', 'nile', 'price', 'capspdf']","[('K', 0.049999997), ('To', 0.049999997), ('price', 0.049999997), ('nile', 0.049999997), ('ray', 0.049999997), ('fyi', 0.049999997), ('subject', 0.049999997), ('cc', 0.049999997), ('allenhouectect', 0.049999997), ('north', 0.049999997)]",K,0.04999999
663,663,660,"['richard', 'compar', 'california', 'product', 'number', '2000', 'california', 'ga', 'report', 'It', 'show', '410', 'but', 'might', 'two', 'util', 'receiv']","[('california', 0.090909116), ('show', 0.06060606), ('report', 0.06060606), ('util', 0.06060606), ('two', 0.06060606), ('might', 0.06060606), ('but', 0.06060606), ('410', 0.06060606), ('richard', 0.06060606), ('2000', 0.06060606)]",california,0.09090911
664,664,661,"['cooper', 'can', 'give', 'access', 'new', 'west', 'power', 'site', 'jay', 'reitmey', 'He', 'analyst', 'group', 'phillip']","[('jay', 0.07142858), ('power', 0.07142858), ('group', 0.07142858), ('analyst', 0.07142858), ('He', 0.07142858), ('reitmey', 0.07142858), ('cooper', 0.07142858), ('site', 0.07142858), ('give', 0.07142858), ('new', 0.07142858)]",jay,0.0714285
665,665,697,"['cash', 'hehub', 'chicago', 'pepl', 'kati', 'socal', 'opal', 'permian', 'ga', 'daili', 'hehub', 'chicago', 'pepl', 'kati', 'socal', 'nwpl', 'permian', 'prompt', 'nymex', 'chicago', 'pepl', 'hsc', 'socal', 'nwpl']","[('chicago', 0.105263196), ('pepl', 0.105263196), ('socal', 0.105263196), ('nwpl', 0.07894738), ('kati', 0.07894738), ('hehub', 0.07894738), ('permian', 0.07894738), ('opal', 0.05263157), ('nymex', 0.05263157), ('prompt', 0.05263157)]",chicago,0.10526319
666,666,698,"['I', 'tri', 'run', 'model', 'work']","[('I', 0.2), ('tri', 0.2), ('run', 0.2), ('model', 0.2), ('work', 0.2)]",I,0.
667,667,699,"['eol', 'report', 'TV', 'confer', '33', 'cash', 'hehub', 'chicago', 'pepl', 'kati', 'waha', 'prompt', 'month', 'nymex']","[('pepl', 0.07142858), ('hehub', 0.07142858), ('month', 0.07142858), ('prompt', 0.07142858), ('waha', 0.07142858), ('kati', 0.07142858), ('eol', 0.07142858), ('chicago', 0.07142858), ('TV', 0.07142858), ('33', 0.07142858)]",pepl,0.0714285
668,668,662,"['Hi', 'phillip', 'We', 'appreci', 'prompt', 'attent', 'complet', 'team', 'select', 'inform', 'ideal', 'need', 'receiv', 'team', 'rater', 'team', 'select', 'form', 'sent', 'the', 'inform', 'need', 'easili', 'transfer', 'databas', 'directli', 'excel', 'spreadsheet', 'If', 'abil', 'complet', 'form', 'insert', 'list', 'still', 'requir', 'addit', 'inform', 'We', 'need', 'person', 'email', 'address', 'without', 'email', 'address', 'email', 'internet', 'link', 'ID', 'provid', 'feedback', 'send', 'automat', 'remind', 'via', 'email', 'It', 'would', 'also', 'good', 'person', 'phone', 'number', 'event', 'need', 'reach', 'So', 'need', 'receiv', 'complet', 'TS', 'excel', 'spreadsheet', 'need', 'instead', 'provid', 'need', 'inform', 'via', 'email', 'thank', 'assist', 'phillip', 'christi', 'L', 'smith', 'project', 'manag', 'client', 'servic', 'keilti', 'goldsmith', 'compani', '8584502554', 'origin', 'messag', 'from', 'phillip', 'K', 'allen', 'mailtophillipkallenenroncom', 'sent', 'thursday', 'august', '31', '2000', '1203', 'PM', 'To', 'debefsddatasvccom', 'subject', 'john', 'lavoratom', 'mike', 'grigsbyd', 'keith', 'holstd', 'frank', 'ermisd', 'steve', 'southd', 'jani', 'tholtd', 'scott', 'nealp', 'hunter', 'shivelyp', 'tom', 'martinp', 'john', 'arnoldp']","[('need', 0.03433494), ('email', 0.025751175), ('inform', 0.021459298), ('team', 0.017167421), ('complet', 0.017167421), ('phillip', 0.017167421), ('spreadsheet', 0.012875548), ('sent', 0.012875548), ('via', 0.012875548), ('address', 0.012875548)]",need,0.0343349
669,669,663,"['john', 'lavoratom', 'mike', 'grigsbyd', 'keith', 'holstd', 'frank', 'ermisd', 'steve', 'southd', 'jani', 'tholtd', 'scott', 'nealp', 'hunter', 'shivelyp', 'tom', 'martinp', 'john', 'arnoldp']","[('john', 0.0769231), ('jani', 0.05128205), ('martinp', 0.05128205), ('tom', 0.05128205), ('shivelyp', 0.05128205), ('hunter', 0.05128205), ('nealp', 0.05128205), ('scott', 0.05128205), ('tholtd', 0.05128205), ('southd', 0.05128205)]",john,0.076923
670,670,664,"['from', 'phillip', 'K', 'allen', '08292000', '0220', 'PM', 'To', 'markintelligencepresscom', 'cc', 'subject', 'mark', 'here', 'spreadsheet', 'detail', 'septemb', 'socal', 'trade', 'I', 'distinguish', 'buy', 'v', 'sell', 'phillip']","[('phillip', 0.06382982), ('trade', 0.042553194), ('detail', 0.042553194), ('septemb', 0.042553194), ('socal', 0.042553194), ('I', 0.042553194), ('v', 0.042553194), ('buy', 0.042553194), ('mark', 0.042553194), ('distinguish', 0.042553194)]",phillip,0.0638298
671,671,665,"['how', 'race', 'go', 'what', 'categori', 'I']","[('how', 0.16666667), ('race', 0.16666667), ('go', 0.16666667), ('what', 0.16666667), ('categori', 0.16666667), ('I', 0.16666667)]",how,0.1666666
672,672,666,"['greg', 'got', 'messag', 'good', 'luck', 'bike', 'ride', 'what', 'apart', 'are', 'set', 'studio', 'the', 'kid', 'back', 'school', 'otherwis', 'work', 'go', 'keith']","[('studio', 0.049999997), ('are', 0.049999997), ('go', 0.049999997), ('work', 0.049999997), ('otherwis', 0.049999997), ('school', 0.049999997), ('back', 0.049999997), ('kid', 0.049999997), ('the', 0.049999997), ('greg', 0.049999997)]",studio,0.04999999
673,673,667,"['whi', 'request', 'come']","[('whi', 0.33333334), ('request', 0.33333334), ('come', 0.33333334)]",whi,0.3333333
674,674,668,"['phillip', 'Is', 'valu', 'axi', 'sheet', '2', 'socalpric', 'spread', 'sheet', 'suppos', 'If', 'right', 'valu', 'million', 'come', 'I', 'cant', 'relat', 'sheet', '1', 'spread', 'sheet', 'As', 'I', 'told', 'mike', 'file', 'outoftim', 'tomorrow', 'supplement', 'comment', 'today', 'along', 'cover', 'letter', 'We', 'fulli', 'understand', 'chart', 'construct', 'ran', 'time', 'today', 'it', 'much', 'better', 'file', 'outoftim', 'supplement', 'time', 'comment', 'file', 'whole', 'thing', 'late', 'particuarli', 'sinc', 'appar', 'fast', 'track', 'thank', 'from', 'phillip', 'K', 'allen', '12132000', '0304', 'PM', 'To', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'jeff', 'dasovichnaenronenron', 'joe', 'hartsoecorpenronenron', 'mari', 'hainhouectect', 'pallenenroncom', 'pkaufmaenroncom', 'richard', 'B', 'sandershouectect', 'richard', 'shapironaenronenron', 'stephani', 'millercorpenronenron', 'steven', 'J', 'keannaenronenron', 'susan', 'J', 'maranaenronenron', 'rebecca', 'W', 'cantrellhouectect', 'cc', 'subject', 'attach', 'two', 'file', 'illustr', 'follow', 'As', 'price', 'rose', 'suppli', 'increas', 'demand', 'decreas', 'now', 'price', 'begin', 'fall', 'respons', 'market', 'respons']","[('file', 0.022727355), ('sheet', 0.022727353), ('I', 0.01363638), ('time', 0.01363638), ('phillip', 0.01363638), ('comment', 0.01363638), ('supplement', 0.01363638), ('richard', 0.01363638), ('outoftim', 0.01363638), ('price', 0.01363638)]",file,0.02272735
675,675,669,"['mark', 'here', 'spreadsheet', 'detail', 'septemb', 'socal', 'trade', 'I', 'distinguish', 'buy', 'v', 'sell', 'phillip']","[('I', 0.07692308), ('trade', 0.07692308), ('sell', 0.07692308), ('v', 0.07692308), ('buy', 0.07692308), ('distinguish', 0.07692308), ('mark', 0.07692308), ('spreadsheet', 0.07692308), ('septemb', 0.07692308), ('here', 0.07692308)]",I,0.0769230
676,676,670,"['mark', 'were', 'abl', 'log', 'enron', 'onlin', 'find', 'socal', 'today', 'I', 'follow', 'list', 'physic', 'deal', 'done', 'yesterday', 'today', 'phillip']","[('today', 0.08571431), ('I', 0.057142857), ('yesterday', 0.057142857), ('done', 0.057142857), ('deal', 0.057142857), ('physic', 0.057142857), ('list', 0.057142857), ('follow', 0.057142857), ('mark', 0.057142857), ('onlin', 0.057142857)]",today,0.0857143
677,677,671,"['brenda', 'can', 'send', 'address', 'colleg', 'station', 'phillip']","[('brenda', 0.14285715), ('can', 0.14285715), ('send', 0.14285715), ('address', 0.14285715), ('colleg', 0.14285715), ('station', 0.14285715), ('phillip', 0.14285715)]",brenda,0.1428571
678,678,672,"['sorri', 'report', 'august', '24', '2000']","[('sorri', 0.2), ('report', 0.2), ('august', 0.2), ('24', 0.2), ('2000', 0.2)]",sorri,0.
679,679,673,"['mark', 'the', 'follow', 'guest', 'password', 'allow', 'temporari', 'view', 'access', 'enrononlin', 'pleas', 'note', 'person', 'ID', 'password', 'case', 'sensit', 'guest', 'user', 'ID', 'gna45925', 'guest', 'password', 'yj53ku42', 'log', 'wwwenrononlinecom', 'instal', 'shockwav', 'use', 'instruct', 'I', 'set', 'composit', 'page', 'western', 'basi', 'cash', 'price', 'help', 'filter', 'product', 'the', 'titl', 'composit', 'page', 'mark', 'page', 'If', 'problem', 'log', 'call', '7138537041', 'kathi', 'moor', 'enrononlin', 'helpdesk', '713853help', '4357', 'the', 'shockwav', 'instal', 'found', 'within', 'about', 'enrononlin', 'home', 'page', 'after', 'open', 'about', 'enrononlin', 'use', 'right', 'scroll', 'bar', 'go', 'bottom', 'click', 'download', 'shockwav', 'follow', 'direct', 'after', 'load', 'shockwav', 'shut', 'reopen', 'browser', 'ie', 'microsoft', 'internet', 'explorernetscap', 'I', 'hope', 'find', 'site', 'use', 'sincer', 'phillip', 'allen']","[('page', 0.028735697), ('shockwav', 0.028735695), ('enrononlin', 0.028735695), ('use', 0.022988543), ('the', 0.022988543), ('guest', 0.022988541), ('password', 0.022988541), ('mark', 0.017241387), ('I', 0.017241387), ('log', 0.017241387)]",page,0.02873569
680,680,674,"['mark', 'attach', 'spreadsheet', 'list', 'end', 'day', 'midmarket', 'socal', 'basi', 'socalsan', 'juan', 'spread', 'I', 'list', 'day', 'bidweek', 'reflect', 'financi', 'trade', 'socal', 'index', 'actual', 'ga', 'daili', 'print', 'bidweek', 'the', 'follow', 'observ', 'made', 'juli', '1', 'the', 'basi', 'market', 'anticip', 'socalsan', 'juan', 'spread', '81', 'v', 'actual', '79', '2', 'perceiv', 'index', '495', 'v', 'actual', '491', '3', 'socal', 'ga', 'daili', 'swap', 'trade', 'signific', 'premium', 'aug', '1', 'the', 'basi', 'market', 'anticip', 'socalsan', 'juan', 'spread', '104', 'v', 'actual', '99', '2', 'perceiv', 'index', '454', 'v', 'actual', '449', '3', 'ga', 'daili', 'spread', 'much', 'wider', 'bidweek', 'monthli', 'post', '4', 'socal', 'ga', 'daili', 'swap', 'trade', 'signific', 'premium', 'enron', 'onlin', 'allow', 'monitor', 'valu', 'financi', 'swap', 'index', 'well', 'spread', 'locat', 'pleas', 'call', 'question', 'phillip']","[('actual', 0.034883797), ('spread', 0.034883797), ('socal', 0.029069819), ('ga', 0.029069819), ('daili', 0.029069819), ('v', 0.029069819), ('index', 0.029069819), ('bidweek', 0.023255838), ('swap', 0.023255838), ('trade', 0.023255838)]",actual,0.03488379
681,681,675,"['suzann', 'can', 'give', 'detail', 'email', 'plan', 'prior', 'meet', 'what', 'I', 'need', 'provid', 'besid', 'headcount', 'otherwis', 'afternoon', 'next', 'week', 'would', 'fine', 'phillip']","[('provid', 0.04761905), ('need', 0.04761905), ('fine', 0.04761905), ('would', 0.04761905), ('week', 0.04761905), ('next', 0.04761905), ('afternoon', 0.04761905), ('otherwis', 0.04761905), ('headcount', 0.04761905), ('besid', 0.04761905)]",provid,0.0476190
682,682,676,"['colleen', 'pleas', 'add', 'mike', 'grigsbi', 'distribut', 'On', 'anoth', 'note', 'idea', 'patti', 'hold', 'phillip']","[('anoth', 0.07692308), ('On', 0.07692308), ('hold', 0.07692308), ('patti', 0.07692308), ('idea', 0.07692308), ('note', 0.07692308), ('colleen', 0.07692308), ('add', 0.07692308), ('grigsbi', 0.07692308), ('pleas', 0.07692308)]",anoth,0.0769230
683,683,677,"['brad', 'with', 'regard', 'tori', 'kuykendal', 'I', 'would', 'like', 'promot', 'commerci', 'manag', 'instead', 'convert', 'commerci', 'support', 'manag', 'associ', 'her', 'duti', 'sinc', 'begin', 'year', 'commerci', 'manag', 'I', 'doubt', 'compar', 'favor', 'other', 'categori', 'year', 'end', 'martin', 'cuilla', 'central', 'desk', 'similiar', 'situat', 'tori', 'hunter', 'would', 'like', 'martin', 'handl', 'tori', 'let', 'know', 'issu', 'phillip']","[('commerci', 0.04597705), ('tori', 0.04597705), ('manag', 0.04597705), ('would', 0.034482773), ('year', 0.034482773), ('I', 0.034482773), ('like', 0.034482773), ('martin', 0.034482773), ('central', 0.0229885), ('similiar', 0.0229885)]",commerci,0.0459770
684,684,678,"['bruce', 'can', 'stop', 'set', 'reuter', 'phillip']","[('bruce', 0.16666667), ('can', 0.16666667), ('stop', 0.16666667), ('set', 0.16666667), ('reuter', 0.16666667), ('phillip', 0.16666667)]",bruce,0.1666666
685,685,724,"['attach', 'two', 'file', 'illustr', 'follow', 'As', 'price', 'rose', 'suppli', 'increas', 'demand', 'decreas', 'now', 'price', 'begin', 'fall', 'respons', 'market', 'respons']","[('respons', 0.08333336), ('price', 0.08333336), ('demand', 0.055555552), ('suppli', 0.055555552), ('fall', 0.055555552), ('begin', 0.055555552), ('now', 0.055555552), ('decreas', 0.055555552), ('attach', 0.055555552), ('increas', 0.055555552)]",respons,0.0833333
686,686,725,"['skip', 'stone', 'anim', 'have', 'seen', 'u', 'late', 'come', 'see', 'what', 'new', 'wwwskippingstonecom', 'energi', 'expert', 'consult', 'energi', 'industri']","[('energi', 0.090909116), ('what', 0.060606062), ('come', 0.060606062), ('consult', 0.060606062), ('expert', 0.060606062), ('wwwskippingstonecom', 0.060606062), ('new', 0.060606062), ('skip', 0.060606062), ('u', 0.060606062), ('have', 0.060606062)]",energi,0.09090911
687,687,726,"['1115', 'today', 'still', 'work']","[('1115', 0.25), ('today', 0.25), ('still', 0.25), ('work', 0.25)]",1115,0.2
688,688,745,"['transwestern', 'pipelin', 'Co', 'post', 'new', 'notic', 'sinc', 'last', 'check', '12132000', '20001', 'PM', 'newest', 'notic', 'look', 'like', 'phone', 'list', 'dec', '13', '2000', '212pm', 'dec', '13', '2000', '212pm', 'until', 'notic', '2238', 'twon', 'call', 'list', '1216', '1217', 'pleas', 'click', 'follow', 'go', 'web', 'site', 'detail', 'httpiosetsenroncominfopostingssharedetnoncriticalnoticeaspcompani', '60']","[('notic', 0.050632954), ('2000', 0.037974697), ('13', 0.037974697), ('list', 0.037974697), ('dec', 0.037974697), ('212pm', 0.037974697), ('detail', 0.02531645), ('httpiosetsenroncominfopostingssharedetnoncriticalnoticeaspcompani', 0.02531645), ('twon', 0.02531645), ('until', 0.02531645)]",notic,0.05063295
689,689,746,"['anytim', '3', 'pm']","[('anytim', 0.33333334), ('3', 0.33333334), ('pm', 0.33333334)]",anytim,0.3333333
690,690,679,"['If', 'read', 'email', 'pleas', 'click', 'earningscom', 'NT', 'upgradedowngrad', 'historyavisit', 'color000066', 'ahov', 'colorcc6600', 'earningscom', 'imag', 'decemb', '13', '2000', '446', 'PM', 'ET', 'homeabout', 'usmi', 'accounthelpcontact', 'uslogin', 'imag', 'yelbluepixelgif', '43', 'byte', 'imag', 'calendar', 'portfolio', 'market', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'symbol', 'imageadd', 'NT', 'portfolio', 'imagesymbol', 'lookup', 'imageemail', 'page', 'friendemail', 'thi', 'page', 'To', 'A', 'friend', 'market', 'summari', 'imageview', 'today', 'upgradesdowngradescoverag', 'initi', 'brief', 'analyst', 'histori', 'nortel', 'network', 'corpor', 'NT', 'date', 'brokerag', 'firm', 'action', 'detail', '12132000', 'FS', 'van', 'kasper', 'coverag', 'initi', 'buy', '11212000', 'lazard', 'frere', 'Co', 'coverag', 'initi', 'buy', '11062000', 'unterberg', 'towbin', 'downgrad', 'buy', 'strong', 'buy', '11022000', 'S', 'G', 'cowen', 'downgrad', 'buy', 'strong', 'buy', '10252000', 'gerard', 'klauer', 'mattison', 'upgrad', 'buy', 'outperform', '10252000', 'lehman', 'brother', 'downgrad', 'outperform', 'buy', '10252000', 'chase', 'HQ', 'downgrad', 'buy', 'strong', 'buy', '10042000', 'sand', 'brother', 'coverag', 'initi', 'buy', '10032000', 'ing', 'bare', 'coverag', 'initi', 'strong', 'buy', '09282000', 'sanford', 'bernstein', 'downgrad', 'mkt', 'perform', 'outperform', '09262000', 'josephth', 'Co', 'coverag', 'initi', 'buy', '08082000', 'dlj', 'coverag', 'initi', 'buy', '07282000', 'AG', 'edward', 'upgrad', 'accumul', 'maintain', 'posit', '07272000', 'abn', 'amro', 'upgrad', 'top', 'pick', 'buy', '06152000', 'bear', 'stearn', 'coverag', 'initi', 'attract', '05252000', 'chase', 'HQ', 'upgrad', 'strong', 'buy', 'buy', '04282000', 'first', 'union', 'capit', 'coverag', 'initi', 'strong', 'buy', '04032000', 'dresdner', 'kleinwort', 'benson', 'coverag', 'initi', 'buy', '03212000', 'wasserstein', 'perella', 'coverag', 'initi', 'hold', '03152000', 'chase', 'HQ', 'upgrad', 'buy', 'market', 'perform', 'briefingcom', 'lead', 'internet', 'provid', 'live', 'market', 'analysi', 'US', 'stock', 'US', 'bond', 'world', 'FX', 'market', 'particip', '19992000', 'earningscom', 'inc', 'all', 'right', 'reserv', 'u', 'contact', 'u', 'webmast', 'site', 'map', 'privaci', 'polici', 'term', 'servic', 'click', 'here', 'would', 'like', 'chang', 'email', 'alert', 'set']","[('buy', 0.051471137), ('imag', 0.03431406), ('initi', 0.02941203), ('coverag', 0.026961023), ('strong', 0.017156975), ('upgrad', 0.014705965), ('downgrad', 0.014705965), ('market', 0.014705965), ('outperform', 0.009803947), ('10252000', 0.009803947)]",buy,0.05147113
691,691,680,"['luci', 'the', 'rent', 'roll', 'spreadsheet', 'start', 'look', 'better', 'see', 'add', 'modif', '1', 'use', 'formula', 'column', 'E', 'add', 'valu', 'column', 'C', 'column', 'D', 'It', 'read', 'c6d6', 'then', 'copi', 'formula', 'row', '2', 'column', 'H', 'need', 'formula', 'subtract', 'amount', 'paid', 'amount', 'owe', 'e6g6', '3', 'column', 'F', 'fill', 'sign', 'column', 'width', 'narrow', 'use', 'mous', 'click', 'line', 'besid', 'letter', 'F', 'hold', 'left', 'mous', 'button', 'drag', 'column', 'wider', '4', 'after', 'get', 'rent', 'part', 'fix', 'let', 'bring', 'databas', 'column', 'sheet', 'place', 'right', 'column', 'J', 'beyond', 'phillip']","[('column', 0.07042277), ('formula', 0.028169055), ('F', 0.021126773), ('amount', 0.021126771), ('use', 0.021126771), ('add', 0.021126771), ('rent', 0.021126771), ('mous', 0.021126771), ('left', 0.0140845), ('hold', 0.0140845)]",column,0.0704227
692,692,681,"['luci', 'I', 'got', 'email', 'attach', 'let', 'work', 'togeth', 'today', 'get', 'done', 'phillip']","[('togeth', 0.08333334), ('let', 0.08333334), ('done', 0.08333334), ('get', 0.08333334), ('today', 0.08333334), ('luci', 0.08333334), ('work', 0.08333334), ('got', 0.08333334), ('email', 0.08333334), ('I', 0.08333334)]",togeth,0.0833333
693,693,682,['approv'],"[('approv', 1.0)]",,
694,694,683,"['luci', 'We', 'discu', 'email', 'later', 'how', 'progress', 'creat', 'spreadsheet', 'you', 'probabl', 'need', 'close', 'file', 'attach', 'email', 'It', '200', 'I', 'realli', 'want', 'make', 'progress', 'two', 'file', 'phillip']","[('progress', 0.06122451), ('file', 0.06122451), ('email', 0.06122451), ('It', 0.040816326), ('200', 0.040816326), ('I', 0.040816326), ('want', 0.040816326), ('realli', 0.040816326), ('make', 0.040816326), ('need', 0.040816326)]",progress,0.0612245
695,695,684,"['luci', 'pleas', 'open', 'excel', 'file', 'input', 'rent', 'name', 'due', 'week', 'then', 'email', 'file', 'back']","[('file', 0.11111112), ('due', 0.07407407), ('rent', 0.07407407), ('email', 0.07407407), ('then', 0.07407407), ('week', 0.07407407), ('luci', 0.07407407), ('name', 0.07407407), ('open', 0.07407407), ('excel', 0.07407407)]",file,0.1111111
696,696,685,"['open', 'util', 'spreadsheet', 'tri', 'complet', 'analysi', 'whether', 'better', 'small', 'commerci', 'medium', 'commerci', 'lp1', 'you', 'need', 'get', 'usag', 'meter', 'last', '12', 'month', 'If', 'one', 'year', 'data', 'tell', 'cheaper', 'use', 'rate', 'describ', 'spreadsheet', 'thi', 'great', 'chanc', 'practic', 'excel']","[('commerci', 0.042857163), ('spreadsheet', 0.042857163), ('rate', 0.028571427), ('one', 0.028571427), ('year', 0.028571427), ('data', 0.028571427), ('tell', 0.028571427), ('cheaper', 0.028571427), ('use', 0.028571427), ('month', 0.028571427)]",commerci,0.04285716
697,697,686,"['mac', 'thank', 'research', 'report', 'eog', 'here', 'observ', 'ga', 'sale', '916000day', 'x', '365', 'day', '334340000year', 'estim', 'ga', 'price', '985721000334340000', '295mcf', 'actual', 'ga', 'price', 'around', '100mcf', 'higher', 'rise', 'recalc', 'ep', 'accur', 'ga', 'price', '334340000', 'mct', 'X', '1mcf116897000', 'share', 'outst', '286', 'addit', 'ep', 'X', '12', 'PE', 'multipl', '34', 'share', 'that', 'back', 'envelop', 'valuat', 'base', 'ga', 'price', 'I', 'think', 'crude', 'price', 'undervalu', 'tune', '10share', 'current', 'price', '37', 'nat', 'ga', '34', 'crude', '10', 'total', '81', 'can', 'take', 'look', 'number', 'play', 'devil', 'advoc', 'To', 'look', 'like', 'best', 'stock', 'also', 'send', 'report', 'calpin', 'tosco', 'slb', 'thank', 'phillip']","[('ga', 0.04321001), ('price', 0.04321001), ('share', 0.018518532), ('crude', 0.018518532), ('X', 0.018518532), ('thank', 0.018518532), ('34', 0.018518532), ('look', 0.018518532), ('report', 0.018518532), ('ep', 0.018518532)]",ga,0.0432100
698,698,687,"['phillip', 'We', 'work', 'differ', 'apart', 'today', 'listen', 'differ', 'peopl', 'mari', 'say', 'worri', 'ant', 'seem', 'invad', 'apartmenty', 'got', 'fax', 'wade', 'work', 'bulletin', 'board', 'I', 'need', 'I', 'let', 'tenant', 'know', 'go', 'ongav', '25', 'notic', 'mani', 'peopl', 'stay', 'apt', 'problem', 'resolvedalso', 'I', 'tenant', '29', 'complain', '28', 'use', 'fowl', 'languagei', 'sent', '28', 'leas', 'violat', 'see', 'go', 'call', 'tomorrow', 'thanx', 'luci', 'get', 'your', 'privat', 'free', 'email', 'msn', 'hotmail', 'httpwwwhotmailcom']","[('I', 0.03333338), ('tenant', 0.025000015), ('peopl', 0.025000015), ('work', 0.025000015), ('differ', 0.025000015), ('28', 0.025000015), ('go', 0.025000015), ('sent', 0.016666664), ('languagei', 0.016666664), ('fowl', 0.016666664)]",I,0.0333333
699,699,688,"['phillip', 'the', 'ac', 'I', 'bought', 'today', '17', 'cost', '16671', 'pd', 'ck1429', '81600', 'walmartalso', '81500', 'ralph', 'applianc', 'centerck1428', 'frig', 'stove', 'apt', '20b', 'ivoic', '000119', 'amt30856', 'stove15000', 'frig12500del', 'chrg1500tax1856', 'total30856fax', 'machin', 'for', 'ffice', 'CK', '142710825', 'from', 'steelman', 'offic', 'produc', 'TS', 'thanx', 'luci', 'get', 'your', 'privat', 'free', 'email', 'msn', 'hotmail', 'httpwwwhotmailcom']","[('CK', 0.020833334), ('ffice', 0.020833334), ('steelman', 0.020833334), ('from', 0.020833334), ('142710825', 0.020833334), ('produc', 0.020833334), ('total30856fax', 0.020833334), ('machin', 0.020833334), ('TS', 0.020833334), ('for', 0.020833334)]",CK,0.02083333
700,700,689,"['phillip', 'today', 'one', 'day', 'wade', 'go', 'pay', 'fine', 'I', 'go', 'take', 'take', 'alot', 'time', 'scheduleif', 'get', 'chanc', 'mention', 'need', 'tri', 'fix', 'van', 'tht', 'go', 'get', 'ever', 'need', 'tomorrow', 'gari', 'go', 'herei', 'go', 'iwil', 'email', 'tomorrow', 'luci', 'get', 'your', 'privat', 'free', 'email', 'msn', 'hotmail', 'httpwwwhotmailcom']","[('go', 0.07692318), ('get', 0.05128209), ('email', 0.038461547), ('tomorrow', 0.038461547), ('need', 0.038461547), ('take', 0.038461547), ('luci', 0.025641019), ('ever', 0.025641019), ('gari', 0.025641019), ('herei', 0.025641019)]",go,0.0769231
701,701,690,"['phillip', 'I', 'meet', 'tomorrow', 'morn', 'oregon', 'puc', 'staff', 'discu', 'number', 'price', 'suppli', 'issu', 'can', 'I', 'use', 'inform', 'attach', 'email', 'meet', 'staff', 'paul', 'To', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'jeff', 'dasovichnaenronenron', 'joe', 'hartsoecorpenronenron', 'mari', 'hainhouectect', 'pallenenroncom', 'pkaufmaenroncom', 'richard', 'B', 'sandershouectect', 'richard', 'shapironaenronenron', 'stephani', 'millercorpenronenron', 'steven', 'J', 'keannaenronenron', 'susan', 'J', 'maranaenronenron', 'rebecca', 'W', 'cantrellhouectect', 'cc', 'subject', 'attach', 'two', 'file', 'illustr', 'follow', 'As', 'price', 'rose', 'suppli', 'increas', 'demand', 'decreas', 'now', 'price', 'begin', 'fall', 'respons', 'market', 'respons']","[('price', 0.028985552), ('staff', 0.02173915), ('I', 0.02173915), ('suppli', 0.02173915), ('richard', 0.02173915), ('attach', 0.02173915), ('J', 0.02173915), ('respons', 0.02173915), ('meet', 0.02173915), ('W', 0.01449275)]",price,0.02898555
702,702,691,"['I', 'check', 'exercis', 'option', 'smith', 'barney', 'enron', 'kind', 'exclus', 'pain', 'weber', 'I', 'start', 'exercis', 'I', 'go', 'use', 'proce', 'buy', 'anoth', 'apart', 'complex', 'what', 'think', 'sell', 'jdsu', 'buy', 'sdli', 'also', 'look', 'eog', 'play', 'rise', 'oil', 'ga', 'price', 'thank', 'phillip']","[('I', 0.055555604), ('exercis', 0.041666687), ('buy', 0.041666687), ('look', 0.027777776), ('play', 0.027777776), ('sell', 0.027777776), ('jdsu', 0.027777776), ('sdli', 0.027777776), ('also', 0.027777776), ('what', 0.027777776)]",I,0.05555560
703,703,692,"['I', 'tri', 'new', 'address', 'I', 'dont', 'access', 'also', 'I', 'need', 'enter', 'domain']","[('I', 0.18181822), ('tri', 0.090909086), ('new', 0.090909086), ('address', 0.090909086), ('dont', 0.090909086), ('access', 0.090909086), ('also', 0.090909086), ('need', 0.090909086), ('enter', 0.090909086), ('domain', 0.090909086)]",I,0.1818182
704,704,693,"['thi', 'remind', 'there', 'friday', 'meet', 'august', '18', '2000', 'thi', 'meet', 'replac', 'everi', 'friday', 'meet', 'held', 'everi', 'friday', 'date', 'friday', 'august', '18', '2000', 'time', '230', 'pm', '430', 'pm', 'locat', '30c1', 'topic', 'ena', 'manag', 'committe', 'If', 'question', 'conflict', 'pleas', 'feel', 'free', 'call', '30643', 'bev', '37857', 'thank', 'kay', '30643']","[('friday', 0.062500075), ('meet', 0.05000004), ('thi', 0.037500013), ('2000', 0.037500013), ('pm', 0.037500013), ('august', 0.037500013), ('18', 0.037500013), ('30643', 0.037500013), ('everi', 0.037500013), ('topic', 0.024999995)]",friday,0.06250007
705,705,694,"['cooper', 'thi', 'websit', 'I', 'use', 'httpectpdxsunonectathamnavsetupindexhtm', 'should', 'I', 'use', 'differ', 'address']","[('I', 0.15), ('use', 0.15), ('cooper', 0.09999999), ('thi', 0.09999999), ('websit', 0.09999999), ('httpectpdxsunonectathamnavsetupindexhtm', 0.09999999), ('should', 0.09999999), ('differ', 0.09999999), ('address', 0.09999999)]",I,0.1
706,706,700,"['north', 'america', 'corp', 'from', 'colleen', 'sullivan', '08092000', '1011', 'AM', 'To', 'keith', 'holsthouectect', 'andrew', 'H', 'lewishouectect', 'fletcher', 'J', 'sturmhouectect', 'larri', 'maycorpenronenron', 'kate', 'fraserhouectect', 'zimin', 'luhouectect', 'greg', 'couchhouectect', 'john', 'griffithcorpenronenron', 'sandra', 'F', 'brawnerhouectect', 'john', 'J', 'lavoratocorpenronenron', 'hunter', 'S', 'shivelyhouectect', 'phillip', 'K', 'allenhouectect', 'scott', 'nealhouectect', 'thoma', 'A', 'martinhouectect', 'steve', 'jacksonhouectect', 'cc', 'juli', 'A', 'gomezhouectect', 'stephani', 'millercorpenronenron', 'subject', 'transport', 'model', 'pleas', 'plan', 'attend', 'meet', 'friday', 'august', '11', '1115', '30c1', 'discu', 'transport', 'model', 'now', 'sever', 'trader', 'manag', 'transport', 'posit', 'sever', 'month', 'I', 'would', 'like', 'discu', 'issu', 'way', 'model', 'work', 'I', 'ask', 'zimin', 'Lu', 'research', 'mark', 'brees', 'john', 'griffith', 'structur', 'attend', 'avail', 'answer', 'technic', 'question', 'the', 'point', 'meet', 'get', 'issu', 'open', 'make', 'sure', 'everyon', 'comfort', 'use', 'model', 'posit', 'manag', 'make', 'sure', 'manag', 'book', 'believ', 'model', 'result', 'sinc', 'I', 'heard', 'concern', 'I', 'hope', 'take', 'advantag', 'opportun', 'discu', 'pleas', 'let', 'know', 'unabl', 'attend']","[('model', 0.024691464), ('I', 0.020576205), ('transport', 0.016460948), ('attend', 0.016460948), ('discu', 0.016460948), ('manag', 0.016460948), ('john', 0.016460948), ('J', 0.012345691), ('issu', 0.012345691), ('pleas', 0.012345691)]",model,0.02469146
707,707,701,"['ylife', 'daili', 'bulletin', 'decemb', '13', '2000', 'note', 'If', 'email', 'reader', 'doesnt', 'show', 'url', 'link', 'visit', 'yahoo', 'internet', 'life', 'home', 'page', 'httpwwwyilcom', 'If', 'use', 'aol', 'click', 'hrefhttpcgizdnetcomslink703908593142herea', 'home', 'page', 'daili', 'net', 'buzz', 'give', 'u', 'one', 'minut', 'well', 'give', 'web', 'today', 'best', 'link', 'suprem', 'hand', 'Al', 'gore', 'golden', 'fork', 'aimster', 'napster', 'aol', 'im', 'hacker', 'bilk', 'creditcardscom', 'fandomcom', 'from', 'protect', 'antagon', 'fansit', 'onion', 'reveal', 'best', '2000', 'album', 'forward', 'how', 'mani', 'way', 'say', 'deadend', 'job', 'bartend', 'spew', 'delici', 'bile', 'slate', 'diari', 'nyt', 'ancient', '1993', 'firstev', 'net', 'stori', 'earth', 'space', 'httpcgizdnetcomslink703918593142', 'bare', 'got', 'time', 'breath', 'Is', 'go', 'life', 'motto', 'check', 'brand', 'new', 'mobil', 'profession', 'center', 'youll', 'find', 'outstand', 'PC', 'product', 'match', 'hectic', 'lifestyl', 'httpcgizdnetcomslink625518593142', 'what', 'new', 'ON', 'ylife', 'jon', 'katz', 'internet', 'domain', 'will', 'net', 'chang', 'everyth', 'might', 'overrun', 'new', 'gadget', 'new', 'technolog', 'will', 'life', 'rule', 'almighti', 'dot', 'com', 'will', 'net', 'fail', 'dont', 'believ', 'hype', 'katz', 'simpl', 'guid', 'surviv', 'panic', 'httpcgizdnetcomslink703928593142', 'net', 'radio', 'site', 'OF', 'the', 'day', 'today', 'lost', 'cosmo', 'netradio', 'station', 'sorri', 'site', 'probabl', 'add', 'confus', 'fmciti', 'hous', '1350', 'station', 'north', 'america', 'organ', 'citi', 'sound', 'daunt', 'It', 'here', 'good', 'part', 'everi', 'site', 'list', '100', 'percent', 'commercialfre', 'that', 'right', 'noth', 'good', 'stuff', 'sorri', 'pepsi', 'sorri', 'mcdonald', 'sorri', 'RJ', 'reynold', 'httpcgizdnetcomslink703938593142', 'incred', 'use', 'site', 'OF', 'the', 'day', 'today', 'alway', 'buy', 'swiss', 'watch', 'american', 'motorcycl', 'japanes', 'radio', 'If', 'that', 'kind', 'buy', 'advic', 'folk', 'water', 'cooler', 'give', 'time', 'look', 'elsewher', 'like', 'consumersearch', 'whether', 'want', 'complic', 'car', 'comput', 'simpl', 'kitchen', 'knife', 'youll', 'find', 'link', 'review', 'distil', 'quickli', 'scan', 'best', 'item', 'categori', 'httpcgizdnetcomslink703948593142', 'pretti', 'strang', 'site', 'OF', 'the', 'day', 'today', 'are', 'loser', 'Do', 'lot', 'time', 'hand', 'one', 'would', 'social', 'life', 'depend', 'Do', 'incred', 'power', 'concentr', 'even', 'mundan', 'bore', 'task', 'congratul', 'you', 'might', 'person', 'strength', 'stamen', 'gener', 'dorki', 'win', 'world', 'mouseclick', 'competit', 'httpcgizdnetcomslink703958593142', 'yahoo', 'internet', 'live', 'today', 'event', 'expens', 'darl', 'pop', 'veteran', 'cher', 'TV', 'mom', 'florenc', 'bradi', 'bunch', 'henderson', 'jane', 'malcolm', 'middl', 'kaczmarek', 'wizard', 'durham', 'NC', 'duke', 'basketbal', 'coach', 'mike', 'krzyzewski', 'sad', 'peopl', 'season', 'affect', 'disord', 'expert', 'alex', 'cardoni', 'dori', 'laplant', 'democrat', 'birth', 'marriag', 'humanright', 'activist', 'kerri', 'kennedi', 'cuomo', 'chef', 'lespinass', 'christian', 'delouvri', 'motherdaught', 'mysterywrit', 'team', 'mari', 'carol', 'higgin', 'clark', 'inexplic', 'famou', 'peopl', 'A', 'member', 'real', 'world', 'new', 'orlean', 'cast', 'httpcgizdnetcomslink703968593142', 'freebi', 'bargain', 'and', 'contest', 'today', 'A', 'free', 'mousepad', '15', 'percent', 'custom', 'mug', 'chanc', 'win', 'imac', 'DV', 'httpcgizdnetcomslink703978593142', 'today', 'tip', 'ask', 'the', 'surf', 'guru', 'today', 'A', 'reader', 'write', 'can', 'I', 'updat', 'netscap', 'bookmark', 'time', 'with', 'nearli', '500', 'I', 'dont', 'time', 'check', 'one', 'individu', 'whoa', 'Mr', 'busi', 'bee', 'dont', 'check', 'bookmark', 'individu', 'say', 'guru', 'you', 'check', 'dont', 'even', 'download', 'confus', 'program', 'httpcgizdnetcomslink703988593142', 'forwardjok', 'OF', 'the', 'day', 'today', 'it', 'surprisingli', 'long', 'list', 'I', 'use', 'joke', 'prototyp', 'I', 'use', 'barber', 'I', 'couldnt', 'cut', 'can', 'guess', 'wacki', 'twist', 'math', 'teacher', 'would', 'put', 'statement', 'A', 'garden', 'A', 'musician', 'A', 'person', 'make', 'muffler', 'there', 'one', 'way', 'find', 'httpcgizdnetcomslink703998593142', 'sharewar', 'the', 'daili', 'doubl', 'download', 'practic', 'it', 'breez', 'creat', 'anim', 'gif', 'file', 'web', 'site', 'coffeecup', 'gif', 'anim', 'play', 'blackjack', 'interact', 'doubl', 'screensav', 'playabl', 'blackjack', 'game', 'httpcgizdnetcomslink704008593142', 'your', 'yastrolog', 'your', 'horoscop', 'plu', 'site', 'match', 'sign', 'httpcgizdnetcomslink704018593142', 'the', 'ylife', 'weekli', 'music', 'newslett', 'time', 'essenc', 'time', 'season', 'time', 'aint', 'reason', 'got', 'time', 'slow', 'time', 'everlast', 'time', 'play', 'bside', 'time', 'aint', 'side', 'time', 'ill', 'never', 'know', 'burn', 'day', 'burn', 'night', 'Im', 'one', 'tell', 'what', 'wrong', 'what', 'right', 'ive', 'seen', 'sign', 'music', 'journalist', 'steve', 'knopper', 'david', 'grad', 'went', 'and', 'Im', 'burnin', 'Im', 'burnin', 'Im', 'burnin', 'httpcgizdnetcomslink704028593142', 'happi', 'surf', 'josh', 'robertson', 'associ', 'onlin', 'editor', 'yahoo', 'internet', 'life', 'joshrobertsonziffdaviscom', 'shop', 'save', 'zdnet', 'new', 'decemb', 'best', 'buy', 'httpcgizdnetcomslink693648593142', 'computershoppercom', 'expert', 'editor', 'chosen', 'month', 'top', 'buy', 'mobil', 'comput', 'desktop', 'web', 'servic', 'site', 'game', 'softwar', 'these', 'winner', 'deliv', 'great', 'perform', 'top', 'technolog', 'right', 'price', 'outlet', 'store', 'save', 'httpcgizdnetcomslink693658593142', 'your', 'one', 'click', 'away', 'super', 'save', 'overstock', 'refurbish', 'product', 'new', 'item', 'ad', 'time', 'youll', 'find', 'great', 'deal', 'wide', 'rang', 'product', 'includ', 'digit', 'camera', 'notebook', 'printer', 'desktop', 'what', 'thi', 'IS', 'thi', 'yahoo', 'internet', 'life', 'email', 'bulletin', 'peppi', 'littl', 'note', 'send', 'everi', 'weekday', 'tell', 'fun', 'stuff', 'free', 'tip', 'yahoo', 'internet', 'life', 'web', 'site', 'httpwwwyilcom', 'subscript', 'inform', 'the', 'email', 'address', 'subscript', 'pallenenroncom', 'To', 'ensur', 'prompt', 'servic', 'pleas', 'includ', 'address', 'exactli', 'appear', 'correspond', 'u', 'TO', 'unsubscrib', 'repli', 'email', 'word', 'unsubscrib', 'subject', 'line', 'send', 'blank', 'email', 'offyildzdemailzdlistscom', 'TO', 'resubscrib', 'visit', 'follow', 'web', 'page', 'httpwwwzdnetcomyilcontentmiscnewsletterhtml', 'send', 'blank', 'email', 'onyildzdemailzdlistscom', 'yahoo', 'internet', 'life', 'print', 'subscript', 'question', 'print', 'magazin', 'visit', 'follow', 'web', 'page', 'answer', 'order', 'subscript', 'httpsubscribeyilcom', 'give', 'gift', 'subscript', 'httpgiveyilcom', 'get', 'help', 'subscript', 'httpserviceyilcom']","[('time', 0.01276634), ('today', 0.008510857), ('site', 0.008510857), ('life', 0.0076597617), ('the', 0.0076597617), ('internet', 0.006808665), ('new', 0.006808665), ('subscript', 0.005957569), ('yahoo', 0.005957569), ('one', 0.005957569)]",time,0.0127663
708,708,702,"['colleen', 'I', 'ot', 'offic', 'friday', 'keith', 'holst', 'attend', 'He', 'manag', 'transport', 'west', 'desk', 'phillip']","[('He', 0.07142858), ('holst', 0.07142858), ('desk', 0.07142858), ('west', 0.07142858), ('transport', 0.07142858), ('manag', 0.07142858), ('colleen', 0.07142858), ('attend', 0.07142858), ('ot', 0.07142858), ('friday', 0.07142858)]",He,0.0714285
709,709,703,"['luci', 'now', '44', 'rent', 'settl', 'coupl', 'month', 'need', 'focu', 'expens', 'recordkeep', 'first', 'I', 'want', 'implement', 'follow', 'chang', '1', 'No', 'overtim', 'without', 'written', 'email', 'instruct', '2', 'daili', 'timesheet', 'wade', 'fax', 'daili', '3', 'paycheck', 'issu', 'friday', 'state', 'bank', '4', 'No', 'expenditur', 'offic', 'landscap', 'necessari', 'basic', 'oper', 'move', 'checkbook', 'I', 'attach', 'spreadsheet', 'organ', 'check', 'sinc', 'jan', '1', 'when', 'open', 'file', 'go', 'checkbook', 'tab', 'look', 'yellow', 'highlight', 'item', 'I', 'question', 'item', 'pleas', 'gather', 'receipt', 'discu', 'phillip']","[('I', 0.029197125), ('item', 0.021897828), ('1', 0.021897828), ('daili', 0.021897828), ('checkbook', 0.021897828), ('No', 0.021897828), ('check', 0.014598536), ('sinc', 0.014598536), ('spreadsheet', 0.014598536), ('attach', 0.014598536)]",I,0.02919712
710,710,704,"['pleas', 'phillip', 'john', 'L', 'approv', 'thank', 'jeff', 'forward', 'jeffrey', 'A', 'shankmanhouect', '08082000', '0748', 'AM', 'arsystemectenroncom', '08072000', '070323', 'PM', 'To', 'jeffreyashankmanenroncom', 'cc', 'subject', 'your', 'approv', 'overdu', 'access', 'request', 'paultluccienroncom', 'thi', 'request', 'pend', 'approv', '8', 'day', 'pleas', 'click', 'httpitcappscorpenroncomsrrsapprovedetailaspid000000000000935email', 'jeffreyashankmanenroncom', 'approv', 'request', 'contact', 'irm', '7138535536', 'issu', 'request', 'ID', '000000000000935', 'request', 'creat', 'date', '72700', '21523', 'PM', 'request', 'for', 'paultluccienroncom', 'resourc', 'name', 'eol', 'US', 'natga', 'US', 'ga', 'phi', 'fwd', 'firm', 'nontexa', '1', 'month', 'resourc', 'type', 'applic']","[('request', 0.053846296), ('approv', 0.038461614), ('PM', 0.023076937), ('pleas', 0.023076937), ('jeffreyashankmanenroncom', 0.023076937), ('paultluccienroncom', 0.023076937), ('resourc', 0.023076937), ('US', 0.023076937), ('date', 0.015384609), ('72700', 0.015384609)]",request,0.05384629
711,711,705,"['pleas', 'review', 'act', 'upon', 'request', 'you', 'receiv', 'email', 'request', 'specifi', 'manag', 'pleas', 'click', 'httpitcappscorpenroncomsrrsapprovedetailaspid000000000001282email', 'phillipkallenenroncom', 'approv', 'th', 'request', 'ID', '000000000001282', 'request', 'creat', 'date', '8800', '91559', 'AM', 'request', 'for', 'frankermisenroncom', 'resourc', 'name', 'market', 'data', 'teler', 'basic', 'energi', 'resourc', 'type', 'applic']","[('request', 0.08333345), ('resourc', 0.041666683), ('pleas', 0.041666683), ('data', 0.027777774), ('91559', 0.027777774), ('AM', 0.027777774), ('for', 0.027777774), ('frankermisenroncom', 0.027777774), ('date', 0.027777774), ('name', 0.027777774)]",request,0.0833334
712,712,706,"['what', 'skill', 'whi', 'want', 'trade', 'desk']","[('what', 0.16666667), ('skill', 0.16666667), ('whi', 0.16666667), ('want', 0.16666667), ('trade', 0.16666667), ('desk', 0.16666667)]",what,0.1666666
713,713,707,"['from', 'jay', 'reitmey', '08072000', '1039', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'keith', 'holsthouectect', 'cc', 'subject', 'new', 'socal', 'curv']","[('allenhouectect', 0.05882353), ('K', 0.05882353), ('socal', 0.05882353), ('new', 0.05882353), ('subject', 0.05882353), ('cc', 0.05882353), ('holsthouectect', 0.05882353), ('keith', 0.05882353), ('from', 0.05882353), ('AM', 0.05882353)]",allenhouectect,0.0588235
714,714,708,"['luci', 'I', 'didnt', 'get', 'fax', 'juli', 'bank', 'statement', 'friday', 'can', 'refax', '713', '646', '2391', 'phillip']","[('friday', 0.06666667), ('statement', 0.06666667), ('2391', 0.06666667), ('646', 0.06666667), ('713', 0.06666667), ('refax', 0.06666667), ('can', 0.06666667), ('luci', 0.06666667), ('fax', 0.06666667), ('get', 0.06666667)]",friday,0.0666666
715,715,709,"['attach', 'link', 'site', 'review', 'today', 'meet', 'the', 'site', 'work', 'progress', 'pleas', 'forward', 'comment', 'httpgasfundydevcorpenroncom', 'chri']","[('site', 0.1034483), ('progress', 0.068965524), ('the', 0.068965524), ('httpgasfundydevcorpenroncom', 0.068965524), ('comment', 0.068965524), ('forward', 0.068965524), ('pleas', 0.068965524), ('attach', 0.068965524), ('review', 0.068965524), ('meet', 0.068965524)]",site,0.103448
716,716,710,"['hunter', 'are', 'watch', 'alberto', 'Do', 'yahoo', 'messeng', 'hear', 'Me', 'turn', 'phillip']","[('hunter', 0.090909086), ('are', 0.090909086), ('watch', 0.090909086), ('alberto', 0.090909086), ('Do', 0.090909086), ('yahoo', 0.090909086), ('messeng', 0.090909086), ('hear', 0.090909086), ('Me', 0.090909086), ('turn', 0.090909086)]",hunter,0.09090908
717,717,711,"['build', 'someth', 'look', 'histor', 'price', 'save', 'curv', 'night', 'here', 'exampl', 'pull', 'socal', 'improv', 'could', 'includ', 'drop', 'menu', 'choos', 'curv', 'choic', 'indexgd', 'curv']","[('curv', 0.09523815), ('socal', 0.047619045), ('exampl', 0.047619045), ('choic', 0.047619045), ('choos', 0.047619045), ('menu', 0.047619045), ('drop', 0.047619045), ('includ', 0.047619045), ('could', 0.047619045), ('improv', 0.047619045)]",curv,0.0952381
718,718,712,"['As', 'request', 'decemb', 'autowebcom', 'newslett', 'new', 'vehicl', 'quot', 'start', 'new', 'year', 'car', 'dream', 'get', 'quot', 'new', '2001', 'model', 'A', 'href', 'httpwwwautowebcomnl12html1', 'new', 'car', 'quotea', 'more', 'than', 'A', 'vehiclebuy', 'site', 'autowebcom', 'help', 'everi', 'aspect', 'buy', 'sell', 'own', 'vehicl', 'you', 'may', 'alreadi', 'use', 'extens', 'research', 'tool', 'free', 'servic', 'purchas', 'vehicl', 'but', 'autowebcom', 'also', 'place', 'classifi', 'ad', 'get', 'great', 'advic', 'prep', 'car', 'sale', 'check', 'maintain', 'section', 'great', 'repair', 'mainten', 'inform', 'get', 'free', 'onlin', 'quot', 'insur', 'loan', 'find', 'ever', 'want', 'know', 'financ', 'insur', 'credit', 'warranti', 'car', 'buff', 'read', 'latest', 'automot', 'news', 'see', 'awesom', 'car', 'collect', 'read', 'profession', 'consum', 'review', 'So', 'stop', 'autowebcom', 'automot', 'need', 'and', 'check', 'new', 'easiertonavig', 'homepag', 'A', 'href', 'httpwwwautowebcomnl12html2', 'autowebcom', 'homea', 'our', 'audio', 'center', 'IS', 'live', 'whether', 'your', 'build', 'complet', 'new', 'audio', 'system', 'want', 'add', 'CD', 'changer', 'autowebcom', 'audio', 'center', 'provid', 'topnotch', 'select', 'expertis', 'our', 'partner', 'offer', 'indash', 'receiv', 'amplifi', 'signal', 'processor', 'speaker', 'subwoof', 'box', 'enclosur', 'multimedia', 'option', 'A', 'wealth', 'instal', 'setup', 'tool', 'also', 'avail', 'A', 'wide', 'varieti', 'electr', 'instal', 'accessori', 'avail', 'help', 'assembl', 'perfect', 'audio', 'system', 'A', 'href', 'httpwwwautowebcomnl12html3', 'audio', 'centera', 'view', '2001', 'model', 'with', 'interior', '360o', 'interior', '360o', 'let', 'view', 'vehicl', 'interior', 'angl', 'check', 'one', '126', 'top', 'sell', 'vehicl', 'market', 'use', 'revolutionari', 'product', 'thi', 'patent', 'java', 'technolog', 'requir', 'download', 'instal', 'immers', 'realist', '3dimension', 'imag', 'use', 'mous', 'keyboard', 'rotat', 'imag', 'left', 'right', 'step', 'insid', 'car', 'navig', '360o', '360o', 'zoom', 'A', 'href', 'httpwwwautowebcomnl12html4', 'interior', '360oa', 'new', 'credit', 'center', 'provid', 'access', 'TO', 'free', 'onlin', 'credit', 'report', 'autowebcom', 'happi', 'announc', 'launch', 'new', 'credit', 'center', 'design', 'provid', 'extens', 'inform', 'credit', 'the', 'credit', 'center', 'onestop', 'sourc', 'consum', 'access', 'wealth', 'credit', 'inform', 'with', '100', 'origin', 'articl', 'monthli', 'email', 'newslett', 'ask', 'expert', 'forum', 'credit', 'center', 'help', 'stay', 'uptod', 'trend', 'credit', 'industri', 'new', 'legisl', 'fact', 'tip', 'ident', 'theft', 'youll', 'also', 'abl', 'fill', 'applic', 'receiv', 'free', 'credit', 'report', 'secur', 'internet', 'check', 'today', 'A', 'href', 'httpwwwautowebcomnl12html5', 'new', 'credit', 'centera', 'credit', 'centera', 'advertis', 'sponsor', 'warrantydirectcom', 'blurb', 'ext', 'warranties50', 'autoweb', 'visitor', 'til', '115free', 'roadsid', 'assistance20', 'Yr', 'old', 'public', 'cobuy', 'direct', 'save', 'A', 'href', 'httpwwwautowebcomnl12html6', 'click', 'herea', 'factori', 'rebat', 'are', 'AT', 'A', 'seasonlong', 'high', 'with', 'over', '400', 'make', 'model', 'A', 'href', 'httpwwwautowebcomnl12html7', 'find', 'cara', 'you', 'current', 'subscrib', 'autowebcom', 'new', 'johnparkerautowebcom', 'If', 'wish', 'remov', 'autowebcom', 'new', 'mail', 'list', 'send', 'blank', 'email', 'leavenews932653vlistsautowebcom', 'you', 'current', 'subscrib', 'autowebcom', 'new', 'pallenenroncom', 'If', 'wish', 'remov', 'autowebcom', 'new', 'mail', 'list', 'send', 'blank', 'email', 'leavenews932653vlistsautowebcom']","[('new', 0.024510173), ('credit', 0.021242134), ('autowebcom', 0.019608118), ('A', 0.019608118), ('href', 0.013072044), ('car', 0.011438024), ('center', 0.011438024), ('audio', 0.009804007), ('vehicl', 0.009804007), ('check', 0.00816999)]",new,0.02451017
719,719,713,"['Im', 'send', 'earli', 'expect', 'everyth', 'chang', 'minut', 'the', 'follow', 'section', 'messag', 'contain', 'file', 'attach', 'prepar', 'transmiss', 'use', 'internet', 'mime', 'messag', 'format', 'If', 'use', 'pegasu', 'mail', 'anoth', 'mimecompli', 'system', 'abl', 'save', 'view', 'within', 'mailer', 'If', 'pleas', 'ask', 'system', 'administr', 'assist', 'file', 'inform', 'file', 'spotwed597doc', 'date', '13', 'dec', '2000', '1237', 'size', '25600', 'byte', 'type', 'msword', 'spotwed597doc']","[('file', 0.03960401), ('If', 0.02970299), ('use', 0.02970299), ('spotwed597doc', 0.02970299), ('messag', 0.029702988), ('system', 0.029702988), ('type', 0.019801978), ('mailer', 0.019801978), ('ask', 0.019801978), ('pleas', 0.019801978)]",file,0.0396040
720,720,714,"['john', 'the', 'long', 'term', 'deal', 'west', 'could', 'put', 'prudenc', 'pgt', 'transport', '2023', 'phillip']","[('put', 0.07692308), ('could', 0.07692308), ('2023', 0.07692308), ('transport', 0.07692308), ('pgt', 0.07692308), ('prudenc', 0.07692308), ('john', 0.07692308), ('long', 0.07692308), ('deal', 0.07692308), ('the', 0.07692308)]",put,0.0769230
721,721,715,"['luci', 'I', 'call', 'afternoon', 'discu', 'thing', 'email', 'phillip']","[('luci', 0.125), ('I', 0.125), ('call', 0.125), ('afternoon', 0.125), ('discu', 0.125), ('thing', 0.125), ('email', 0.125), ('phillip', 0.125)]",luci,0.12
722,722,716,"['jeff', 'I', 'want', 'bid', '28', 'sagewood', 'rate', '85', 'le', 'depend', '30', 'year', 'term']","[('85', 0.07692308), ('rate', 0.07692308), ('year', 0.07692308), ('30', 0.07692308), ('depend', 0.07692308), ('le', 0.07692308), ('jeff', 0.07692308), ('want', 0.07692308), ('28', 0.07692308), ('I', 0.07692308)]",85,0.0769230
723,723,717,"['attach', 'system', 'wish', 'list', 'ga', 'basi', 'physic', 'trade']","[('attach', 0.125), ('system', 0.125), ('wish', 0.125), ('list', 0.125), ('ga', 0.125), ('basi', 0.125), ('physic', 0.125), ('trade', 0.125)]",attach,0.12
724,724,718,"['north', 'america', 'corp', 'from', 'kristian', 'J', 'land', '07252000', '0224', 'PM', 'To', 'christoph', 'F', 'calgerpdxectect', 'jake', 'thomashouectect', 'frank', 'W', 'vickershouectect', 'elliot', 'mainzerpdxectect', 'michael', 'mcdonaldsfectect', 'david', 'parquetsfectect', 'laird', 'dyersfectect', 'jim', 'buerklepdxectect', 'jim', 'gilbertpdxectect', 'terri', 'W', 'donovanhouectect', 'jeff', 'G', 'slaughterenrondevelopmentenrondevelop', 'tim', 'beldenhouectect', 'mike', 'swerzbinhouectect', 'matt', 'motleypdxectect', 'robert', 'badeerhouectect', 'sean', 'crandallpdxectect', 'diana', 'scholteshouectect', 'tom', 'alonsopdxectect', 'mark', 'fischerpdxectect', 'tim', 'heizenraderpdxectect', 'cc', 'phillip', 'K', 'allenhouectect', 'subject', 'new', 'gener', 'updat', '72400']","[('W', 0.024000024), ('tim', 0.024000024), ('jim', 0.024000024), ('motleypdxectect', 0.016000003), ('crandallpdxectect', 0.016000003), ('sean', 0.016000003), ('badeerhouectect', 0.016000003), ('robert', 0.016000003), ('diana', 0.016000003), ('slaughterenrondevelopmentenrondevelop', 0.016000003)]",W,0.02400002
725,725,719,"['pleas', 'add', 'mike', 'grigsbi', 'distribut']","[('pleas', 0.2), ('add', 0.2), ('mike', 0.2), ('grigsbi', 0.2), ('distribut', 0.2)]",pleas,0.
726,726,720,"['volum', '17000', 'could', 'give', 'basi', 'period', 'sept', '00', 'may', '31', '2006', 'sept00', 'may', '31', '2008', 'sinc', 'I', 'assum', 'keep', 'stanfield', 'basi', 'rather', 'basi', 'malin', 'rocki', 'would', 'probabl', 'make', 'sens', 'show', 'basi', 'adjust', 'one', 'point', 'also', 'mid', 'offer', 'spread', 'term', 'thank', 'mike']","[('basi', 0.06493514), ('31', 0.038961057), ('may', 0.038961057), ('point', 0.025974022), ('probabl', 0.025974022), ('make', 0.025974022), ('sens', 0.025974022), ('show', 0.025974022), ('adjust', 0.025974022), ('one', 0.025974022)]",basi,0.0649351
727,727,721,"['wade', 'I', 'understood', 'number', 'one', 'prioriti', 'deal', 'vehicl', 'situat', 'you', 'need', 'take', 'care', 'week', 'luci', 'cant', 'hold', 'tenant', 'standard', 'vehicl', 'must', 'run', 'order', 'valid', 'sticker', 'staff', 'doesnt', 'live', 'If', 'decid', 'buy', 'small', 'truck', 'want', 'list', 'employ', 'credit', 'purpos', 'I', 'vouch', 'incom', 'phillip']","[('I', 0.036585387), ('vehicl', 0.036585387), ('small', 0.024390245), ('sticker', 0.024390245), ('staff', 0.024390245), ('doesnt', 0.024390245), ('live', 0.024390245), ('If', 0.024390245), ('decid', 0.024390245), ('buy', 0.024390245)]",I,0.03658538
728,728,722,"['merlin', 'ct', 'address', 'still', 'good', 'I', 'dont', 'know', 'mail', 'would', 'return']","[('merlin', 0.090909086), ('ct', 0.090909086), ('address', 0.090909086), ('still', 0.090909086), ('good', 0.090909086), ('I', 0.090909086), ('dont', 0.090909086), ('know', 0.090909086), ('mail', 0.090909086), ('would', 0.090909086)]",merlin,0.09090908
729,729,723,"['here', '1st', 'draft', 'wish', 'list', 'system']","[('here', 0.16666667), ('1st', 0.16666667), ('draft', 0.16666667), ('wish', 0.16666667), ('list', 0.16666667), ('system', 0.16666667)]",here,0.1666666
730,730,727,"['north', 'america', 'corp', 'from', 'rebecca', 'W', 'cantrel', '07142000', '0231', 'PM', 'To', 'juli', 'A', 'gomezhouectect', 'stephani', 'millercorpenronenron', 'chri', 'meyerhouectect', 'judi', 'townsendhouectect', 'theresa', 'branneyhouectect', 'paul', 'T', 'luccidenectenron', 'jane', 'M', 'tholthouectect', 'steven', 'P', 'southhouectect', 'frank', 'ermishouectect', 'susan', 'W', 'pereirahouectect', 'georg', 'smithhouectect', 'randal', 'L', 'gayhouectect', 'jim', 'homcohouectect', 'colleen', 'sullivanhouectect', 'hunter', 'S', 'shivelyhouectect', 'ray', 'hammanhoueese', 'robert', 'supertyhouectect', 'edward', 'terryhouectect', 'scott', 'nealhouectect', 'tori', 'kuykendallhouectect', 'brenda', 'H', 'fletcherhouectect', 'jeff', 'coateshoueese', 'john', 'hodgecorpenronenron', 'janet', 'edwardscorpenronenron', 'ruth', 'concannonhouectect', 'sylvia', 'A', 'camposhouectect', 'paul', 'tatehoueese', 'phillip', 'K', 'allenhouectect', 'victor', 'lamadridhouectect', 'barbara', 'G', 'dillardhouectect', 'gari', 'L', 'paynehouectect', 'cc', 'subject', 'comment', 'order', '637', 'complianc', 'file', 'fyi', 'attach', 'initi', 'comment', 'ena', 'file', 'monday', 'order', '637', 'complianc', 'file', 'indic', 'pipelin', 'columbia', 'columbia', 'ga', 'for', 'pipelin', 'prioriti', 'list', 'file', 'plain', 'intervent']","[('file', 0.023041556), ('pipelin', 0.013824903), ('637', 0.013824903), ('order', 0.013824903), ('comment', 0.013824903), ('A', 0.013824903), ('paul', 0.013824903), ('columbia', 0.013824903), ('L', 0.013824903), ('W', 0.013824903)]",file,0.02304155
731,731,728,"['north', 'america', 'corp', 'from', 'kenneth', 'shulklapp', '07142000', '0658', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject', 'El', 'paso', 'blanco', 'avg', 'product', 'pleas', 'extend', 'intern', 'ga', 'trader', 'view', 'access', 'new', 'El', 'paso', 'blanco', 'avg', 'physic', 'NG', 'product', 'tori', 'kuykendahl', 'jane', 'tholt', 'administr', 'access', 'manag', 'eol', 'If', 'question', 'pleas', 'call', '37041', 'thank', 'phillip', 'allen']","[('paso', 0.031914912), ('product', 0.031914912), ('phillip', 0.031914912), ('El', 0.031914912), ('pleas', 0.031914912), ('access', 0.031914912), ('avg', 0.031914912), ('blanco', 0.031914912), ('kuykendahl', 0.021276593), ('physic', 0.021276593)]",paso,0.03191491
732,732,729,"['kay', 'I', 'weekend', 'I', 'sure', 'rest', 'famili', 'all', 'well', 'I', 'tri', 'bring', 'pictur', 'I', 'cant', 'bring', 'real', 'thing', 'keith']","[('I', 0.14705889), ('bring', 0.088235304), ('well', 0.058823522), ('thing', 0.058823522), ('real', 0.058823522), ('cant', 0.058823522), ('pictur', 0.058823522), ('kay', 0.058823522), ('tri', 0.058823522), ('weekend', 0.058823522)]",I,0.1470588
733,733,730,"['mike', 'here', 'net', 'open', 'socal', 'border', 'posit', 'elvi', 'cactu', 'let', 'tri', 'set', 'confer', 'call', 'phillip', 'john', 'talk', 'offer', 'backend', 'curv', 'roughli', 'speak', 'look', 'nomin', '3750', 'mmbtud', '14', 'year', 'may', '2010', 'elvi', '3000', 'mmbtud', 'cactu', 'fromjun', '2004', 'april', '2022', 'andi']","[('cactu', 0.04000002), ('mmbtud', 0.04000002), ('elvi', 0.04000002), ('may', 0.026666665), ('look', 0.026666665), ('nomin', 0.026666665), ('3750', 0.026666665), ('14', 0.026666665), ('year', 0.026666665), ('roughli', 0.026666665)]",cactu,0.0400000
734,734,731,"['one', 'associ', 'one', 'analyst', 'forward', 'jana', 'giovanninihouect', '07112000', '0457', 'PM', 'from', 'jana', 'giovannini', '07112000', '0457', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'celest', 'robertshouectect', 'subject', 'assoc', 'west', 'desk', 'hey', 'phillip', 'I', 'receiv', 'note', 'celest', 'I', 'ena', 'staf', 'coordin', 'need', 'fill', 'attach', 'need', 'assess', 'form', 'I', 'send', 'resum', 'also', 'would', 'interest', 'new', 'class', 'analyst', 'start', 'busi', 'unit', 'aug', '3rd', 'assoc', 'start', 'aug', '28th', 'We', 'start', 'place', 'associ', 'would', 'like', 'see', 'interest', 'pleas', 'let', 'know', 'onc', 'I', 'receiv', 'need', 'assess', 'back', 'let', 'know', 'wait', 'month', 'I', 'happi', 'pull', 'coupl', 'resum', 'review', 'If', 'question', 'pleas', 'let', 'know', 'thank', 'forward', 'jana', 'giovanninihouect', '07112000', '0450', 'PM', 'from', 'dolor', 'muzzi', '07112000', '0417', 'PM', 'To', 'jana', 'giovanninihouectect', 'cc', 'subject', 'assoc', 'west', 'desk', 'I', 'believ', 'phillip', 'allen', 'ena', 'dolor', 'forward', 'dolor', 'muzzyhouect', '07112000', '0417', 'PM', 'from', 'phillip', 'K', 'allen', '07112000', '1254', 'PM', 'To', 'celest', 'robertshouectect', 'cc', 'subject', 'assoc', 'west', 'desk', 'celest', 'I', 'need', 'two', 'assocanalyst', 'west', 'ga', 'trade', 'desk', 'can', 'help', 'I', 'also', 'left', 'voic', 'mail', 'phillip', 'x37041']","[('I', 0.037037194), ('07112000', 0.028806685), ('PM', 0.028806685), ('phillip', 0.02469143), ('celest', 0.020576179), ('desk', 0.020576179), ('need', 0.020576179), ('jana', 0.020576179), ('assoc', 0.020576179), ('west', 0.020576179)]",I,0.03703719
735,735,732,"['from', 'robert', 'badeer', '07112000', '0244', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'subject']","[('phillip', 0.08333334), ('PM', 0.08333334), ('cc', 0.08333334), ('allenhouectect', 0.08333334), ('K', 0.08333334), ('from', 0.08333334), ('To', 0.08333334), ('badeer', 0.08333334), ('07112000', 0.08333334), ('robert', 0.08333334)]",phillip,0.0833333
736,736,733,"['north', 'america', 'corp', 'from', 'kimberli', 'hilli', '07112000', '0116', 'PM', 'To', 'jeffrey', 'A', 'shankmanhouectect', 'hunter', 'S', 'shivelyhouectect', 'phillip', 'K', 'allenhouectect', 'kevin', 'M', 'prestohouectect', 'thresa', 'A', 'allenhouectect', 'kristin', 'albrechthouectect', 'brent', 'A', 'pricehouectect', 'steve', 'jacksonhouectect', 'beth', 'perlmanhouectect', 'salli', 'beckhouectect', 'cc', 'barbara', 'lewishouectect', 'airam', 'arteagahouectect', 'cherylen', 'R', 'westbrookhouectect', 'patti', 'thompsonhouectect', 'felicia', 'doanhouectect', 'irena', 'D', 'hoganhouectect', 'ina', 'rangelhouectect', 'subject', 'system', 'meet', '718', 'pleas', 'note', 'john', 'lavorato', 'schedul', 'system', 'meet', 'tuesday', 'juli', '18', '200', '300', 'pm', 'eb3321', 'pleas', 'call', 'x30681', 'question', 'thank', 'kim', 'hilli']","[('A', 0.026845684), ('allenhouectect', 0.020134246), ('meet', 0.020134246), ('system', 0.020134246), ('pleas', 0.020134246), ('hilli', 0.020134246), ('patti', 0.013422816), ('718', 0.013422816), ('rangelhouectect', 0.013422816), ('westbrookhouectect', 0.013422816)]",A,0.02684568
737,737,734,"['celest', 'I', 'need', 'two', 'assocanalyst', 'west', 'ga', 'trade', 'desk', 'can', 'help', 'I', 'also', 'left', 'voic', 'mail', 'phillip', 'x37041']","[('I', 0.08571431), ('desk', 0.057142857), ('phillip', 0.057142857), ('mail', 0.057142857), ('voic', 0.057142857), ('left', 0.057142857), ('also', 0.057142857), ('help', 0.057142857), ('celest', 0.057142857), ('can', 0.057142857)]",I,0.0857143
738,738,735,"['how', 'tuesday', '1115', 'front', 'build']","[('how', 0.2), ('tuesday', 0.2), ('1115', 0.2), ('front', 0.2), ('build', 0.2)]",how,0.
739,739,736,"['pleas', 'add', 'mike', 'grigsbi', 'distribut', 'list']","[('pleas', 0.16666667), ('add', 0.16666667), ('mike', 0.16666667), ('grigsbi', 0.16666667), ('distribut', 0.16666667), ('list', 0.16666667)]",pleas,0.1666666
740,740,737,['test'],"[('test', 1.0)]",,
741,741,738,"['north', 'america', 'corp', 'from', 'john', 'J', 'lavorato', '07102000', '0403', 'PM', 'sent', 'kimberli', 'hilli', 'To', 'jeffrey', 'A', 'shankmanhouectect', 'hunter', 'S', 'shivelyhouectect', 'phillip', 'K', 'allenhouectect', 'steve', 'jacksonhouectect', 'kevin', 'M', 'prestohouectect', 'kristin', 'albrechthouectect', 'thresa', 'A', 'allenhouectect', 'brent', 'A', 'pricehouectect', 'cc', 'subject', 'system', 'meet', '711', 'thi', 'confirm', 'meet', 'tomorrow', 'tuesday', 'juli', '11', '200', 'pm', 'pleas', 'refer', 'meet', 'system', 'meet', 'also', 'note', 'follow', 'meet', 'the', 'meet', 'held', 'eb3321', 'call', 'kim', 'hilli', 'x30681', 'question', 'k']","[('meet', 0.05468765), ('A', 0.031250045), ('hilli', 0.023437519), ('system', 0.023437519), ('allenhouectect', 0.023437517), ('11', 0.015624996), ('juli', 0.015624996), ('tuesday', 0.015624996), ('thi', 0.015624996), ('confirm', 0.015624996)]",meet,0.0546876
742,742,739,"['07102000', '0318', 'PM', 'jason', 'moor', '06262000', '1044', 'AM', 'To', 'scott', 'nealhouectect', 'cc', 'joel', 'henenbergnaenronenron', 'mari', 'G', 'gosnellhouectect', 'subject', 'natur', 'ga', 'custom', 'attach', 'pleas', 'find', 'spreadsheet', 'contain', 'list', 'natur', 'ga', 'custom', 'global', 'counterparti', 'databas', 'these', 'activ', 'counterparti', 'although', 'may', 'busi', 'current', 'If', 'question', 'pleas', 'feel', 'free', 'call', 'x33198', 'jason', 'moor']","[('counterparti', 0.032967046), ('custom', 0.032967046), ('jason', 0.032967046), ('moor', 0.032967046), ('pleas', 0.032967046), ('ga', 0.032967046), ('natur', 0.032967046), ('databas', 0.021978019), ('these', 0.021978019), ('contain', 0.021978019)]",counterparti,0.03296704
743,743,740,"['ina', 'pleas', 'sign', 'cours', 'whenev', 'hunter', 'sign', 'thank']","[('sign', 0.20000002), ('ina', 0.13333334), ('pleas', 0.13333334), ('cours', 0.13333334), ('whenev', 0.13333334), ('hunter', 0.13333334), ('thank', 0.13333334)]",sign,0.2000000
744,744,741,"['Al', 'I', 'good', 'enough', 'shape', 'ride', 'centuri', 'right', 'plu', 'Im', 'nurs', 'injuri', 'I', 'lunch', 'week', 'next', 'let', 'pick', 'day', 'phillip']","[('I', 0.0769231), ('Im', 0.05128205), ('day', 0.05128205), ('pick', 0.05128205), ('let', 0.05128205), ('next', 0.05128205), ('week', 0.05128205), ('lunch', 0.05128205), ('injuri', 0.05128205), ('Al', 0.05128205)]",I,0.076923
745,745,742,"['brenda', 'the', 'word', 'document', 'attach', 'noticecons', 'form', 'sale', 'the', 'excel', 'file', 'amort', 'tabl', 'note', 'you', 'use', 'addit', 'princip', 'reduct', 'record', 'prepay', 'pleas', 'email', 'back', 'confirm', 'receipt', 'phillip']","[('the', 0.056603797), ('prepay', 0.03773585), ('addit', 0.03773585), ('princip', 0.03773585), ('reduct', 0.03773585), ('record', 0.03773585), ('use', 0.03773585), ('receipt', 0.03773585), ('back', 0.03773585), ('note', 0.03773585)]",the,0.05660379
746,746,743,"['jeff', 'I', 'spoken', 'brenda', 'everyth', 'look', 'good', 'matt', 'lutz', 'suppos', 'email', 'languag', 'I', 'receiv', 'I', 'dont', 'follow', 'when', 'estim', 'close', 'date', 'let', 'know', 'els', 'I', 'need', 'phillip']","[('I', 0.09803929), ('close', 0.039215684), ('follow', 0.039215684), ('when', 0.039215684), ('estim', 0.039215684), ('dont', 0.039215684), ('date', 0.039215684), ('need', 0.039215684), ('els', 0.039215684), ('languag', 0.039215684)]",I,0.0980392
747,747,744,"['gari', 'thank', 'info']","[('gari', 0.33333334), ('thank', 0.33333334), ('info', 0.33333334)]",gari,0.3333333
748,748,747,"['tim', 'matt', 'sent', 'email', 'attempt', 'organ', 'cem', 'wscc', 'data', 'tim', 'H', 'express', 'concern', 'reliabl', 'wscc', 'data', 'I', 'dont', 'know', 'scrap', 'wscc', 'keep', 'monitor', 'case', 'improv', 'let', 'know', 'think', 'phillip']","[('wscc', 0.07547175), ('know', 0.056603793), ('data', 0.056603793), ('tim', 0.05660379), ('scrap', 0.037735846), ('keep', 0.037735846), ('dont', 0.037735846), ('think', 0.037735846), ('let', 0.037735846), ('monitor', 0.037735846)]",wscc,0.0754717
749,749,748,"['folk', 'remain', 'offic', 'ena', 'yet', 'enrol', 'mandat', 'train', 'program', 'It', 'ena', 'goal', 'offic', 'program', 'end', 'calendar', 'year', '2000', 'the', 'cours', 'receiv', 'high', 'mark', 'effect', 'pleas', 'take', 'time', 'enrol', 'program', 'speak', 'HR', 'repres', 'need', 'help', 'get', 'sign', 'regard', 'delainey']","[('program', 0.05633808), ('offic', 0.04225354), ('ena', 0.04225354), ('enrol', 0.04225354), ('repres', 0.028169012), ('pleas', 0.028169012), ('take', 0.028169012), ('time', 0.028169012), ('speak', 0.028169012), ('HR', 0.028169012)]",program,0.0563380
750,750,749,"['luci', 'I', 'got', 'email', 'I', 'didnt', 'time', 'finish', 'I', 'read', 'weekend', 'ask', 'dad', 'ac', 'I', 'glad', 'enjoy', 'job', 'thi', 'weekend', 'I', 'mark', 'leas', 'rule', 'If', 'I', 'didnt', 'mention', 'I', '4th', 'paid', 'holiday', 'wade', 'have', 'good', 'weekend', 'I', 'talk', 'next', 'week', 'phillip']","[('I', 0.12500018), ('weekend', 0.055555586), ('didnt', 0.04166667), ('If', 0.027777767), ('mention', 0.027777767), ('4th', 0.027777767), ('paid', 0.027777767), ('holiday', 0.027777767), ('rule', 0.027777767), ('wade', 0.027777767)]",I,0.1250001
751,751,750,"['north', 'america', 'corp', 'from', 'david', 'W', 'delainey', '06302000', '0742', 'AM', 'sent', 'kay', 'chapman', 'To', 'raymond', 'bowenhouectect', 'we', 'colwellhouectect', 'janet', 'R', 'dietrichhouectect', 'jeff', 'donahuehouectect', 'gari', 'hickersonhouectect', 'john', 'J', 'lavoratocorpenronenron', 'georg', 'mcclellanhouectect', 'jere', 'C', 'overdykehouectect', 'brian', 'redmondhouectect', 'jeffrey', 'A', 'shankmanhouectect', 'colleen', 'sullivanhouectect', 'mark', 'E', 'haedickehouectect', 'vinc', 'J', 'kaminskihouectect', 'julia', 'murrayhouectect', 'greg', 'hermanscorpenronenron', 'paul', 'adaircorpenronenron', 'jefferi', 'aderhouectect', 'jame', 'A', 'ajellohouectect', 'jaim', 'alatorrenaenronenron', 'brad', 'alfordecphouectect', 'phillip', 'K', 'allenhouectect', 'john', 'arnoldhouectect', 'tim', 'beldenhouectect', 'michael', 'J', 'beyerhouectect', 'brian', 'bierbachdenectenron', 'donald', 'M', 'ect', 'origin', 'blackhouectect', 'greg', 'blaircorpenronenron', 'brad', 'blesiecorpenronenron', 'michael', 'W', 'bradleyhouectect', 'craig', 'breslauhouectect', 'christoph', 'F', 'calgerpdxectect', 'cari', 'M', 'carrabinecorpenronenron', 'georg', 'carrickhouectect', 'dougla', 'cliffordcorpenronenron', 'bob', 'cranehouectect', 'joseph', 'deffnerhouectect', 'kent', 'densleycorpenronenron', 'timothi', 'J', 'detmeringhouectect', 'W', 'david', 'duranhouectect', 'ranabir', 'duttcorpenronenron', 'craig', 'A', 'foxhouectect', 'juli', 'A', 'gomezhouectect', 'david', 'howecorpenronenron', 'mike', 'jakubikhouectect', 'scott', 'joseycorpenronenron', 'jeff', 'kinnemanhouectect', 'kyle', 'kitagawacalectect', 'fred', 'lagrastahouectect', 'billi', 'lemmonscorpenronenron', 'laura', 'lucecorpenronenron', 'richard', 'lydeckercorpenronenron', 'randal', 'maffetthouectect', 'rodney', 'malcolmhouectect', 'michael', 'mcdonaldsfectect', 'jesu', 'melendrezcorpenronenron', 'mmiller3enroncom', 'rob', 'milnthorpcalectect', 'gil', 'muhlcorpenronenron', 'scott', 'nealhouectect', 'edward', 'ondarzahouectect', 'michel', 'parkscorpenronenron', 'david', 'parquetsfectect', 'kevin', 'M', 'prestohouectect', 'steve', 'pruettcorpenronenron', 'daniel', 'reckhouectect', 'andrea', 'V', 'reedhouectect', 'jim', 'schwiegerhouectect', 'cliff', 'sheddnaenronenron', 'hunter', 'S', 'shivelyhouectect', 'stuart', 'staleylonectect', 'fletcher', 'J', 'sturmhouectect', 'thoma', 'M', 'suffieldcorpenronenron', 'bruce', 'sukalycorpenronenron', 'jake', 'thomashouectect', 'C', 'john', 'thompsoncorpenronenron', 'carl', 'tricolicorpenronenron', 'max', 'yzaguirrenaenronenron', 'salli', 'beckhouectect', 'nick', 'cocavessiscorpenronenron', 'peggi', 'hedstromcalectect', 'sheila', 'knudsencorpenronenron', 'jordan', 'mintzhouectect', 'david', 'oxleyhouectect', 'brent', 'A', 'pricehouectect', 'mike', 'swerzbinhouectect', 'alan', 'aronowitzhouectect', 'edward', 'D', 'baughmanhouectect', 'bryan', 'burnetthouectect', 'jame', 'I', 'ducotehouectect', 'dougla', 'B', 'dunnhouectect', 'stinson', 'gibnerhouectect', 'barbara', 'N', 'grayhouectect', 'robert', 'greerhouectect', 'jeffrey', 'T', 'hodgehouectect', 'andrew', 'kelemenhouectect', 'grant', 'massonhouectect', 'jess', 'neymanhouectect', 'ozzi', 'paganhouectect', 'mike', 'A', 'robertshouectect', 'william', 'romehouectect', 'lanc', 'schulerlegalhouectect', 'vasant', 'shanbhoguehouectect', 'gregori', 'L', 'sharphouectect', 'mark', 'taylorhouectect', 'sheila', 'tweedhouectect', 'greg', 'wolfehouectect', 'mark', 'doblernaenronenron', 'thoma', 'A', 'martinhouectect', 'steven', 'schneiderenrongateway', 'cc', 'cindi', 'skinnerhouectect', 'ted', 'C', 'blandhouectect', 'david', 'W', 'delaineyhouectect', 'marsha', 'schillerhouectect', 'shirley', 'tijerinacorpenronenron', 'christi', 'chapmanhouectect', 'stella', 'L', 'elyhouectect', 'kimberli', 'hillishouectect', 'yolanda', 'fordhouectect', 'donna', 'bakerhouectect', 'katherin', 'benedicthouectect', 'barbara', 'lewishouectect', 'janett', 'elbertsonhouectect', 'shirley', 'crenshawhouectect', 'carolyn', 'georgecorpenronenron', 'kimberli', 'brownhouectect', 'claudett', 'harveyhouectect', 'terrellyn', 'parkerhouectect', 'maria', 'elena', 'mendozanaenronenron', 'ina', 'rangelhouectect', 'debra', 'davidsonpdxectect', 'jessica', 'A', 'wentworthdenectenron', 'catherin', 'dumontpdxectect', 'betti', 'J', 'conewayhouectect', 'nicol', 'mayerhouectect', 'sherri', 'carpenterhouectect', 'susan', 'falloncorpenronenron', 'tina', 'rodehouectect', 'tonai', 'lehrcorpenronenron', 'iri', 'wongcalectect', 'rebeccayoungenroncom', 'maxin', 'E', 'levingstoncorpenronenron', 'lynn', 'pikofskycorpenronenron', 'luann', 'mitchellcorpenronenron', 'ana', 'alcantarahouectect', 'deana', 'fortinecorpenronenron', 'deborah', 'J', 'edisonhouectect', 'lisa', 'zarskyhouectect', 'angela', 'mccullochcalectect', 'dusti', 'warren', 'paezhouectect', 'cristina', 'zavalasfectect', 'felicia', 'doanhouectect', 'deni', 'watsoncorpenronenron', 'angi', 'collinshouectect', 'tammi', 'davisnaenronenron', 'gerri', 'taylorcorpenronenron', 'lori', 'leighhouectect', 'airam', 'arteagahouectect', 'tina', 'tennanthouectect', 'molli', 'gustafsonpdxectect', 'pilar', 'cerezonaenronenron', 'patti', 'thompsonhouectect', 'leticia', 'lealhouectect', 'darlen', 'C', 'forsythhouectect', 'rhonna', 'palmerhouectect', 'irena', 'D', 'hoganhouectect', 'joya', 'davishouectect', 'erica', 'bradenhouectect', 'anabel', 'gutierrezhouectect', 'jenni', 'heltonhouectect', 'christin', 'drummondhouectect', 'kevin', 'G', 'moorehouectect', 'dina', 'snowcorpenronenron', 'lillian', 'carrollhouectect', 'taffi', 'milliganhouectect', 'laura', 'hardercorpenronenron', 'nanci', 'hallhouectect', 'tina', 'rodehouectect', 'crystal', 'blairhouectect', 'angi', 'collinshouectect', 'donna', 'bakerhouectect', 'melissa', 'jonesnaenronenron', 'beth', 'A', 'ryanhouectect', 'shirley', 'crenshawhouectect', 'tamara', 'jae', 'blackhouectect', 'ami', 'cooperhouectect', 'kay', 'chapmanhouectect', 'subject', 'remind', 'updat', 'gi', 'inform', 'thi', 'remind', 'If', 'havent', 'taken', 'time', 'updat', 'gi', 'inform', 'pleas', 'It', 'essenti', 'function', 'perform', 'soon', 'possibl', 'pleas', 'read', 'follow', 'memo', 'sent', 'day', 'ago', 'question', 'regard', 'request', 'pleas', 'feel', 'free', 'call', 'ted', 'bland', '35275', 'with', 'enron', 'rapid', 'growth', 'need', 'maintain', 'abil', 'move', 'employe', 'oper', 'compani', 'new', 'ventur', 'To', 'essenti', 'one', 'process', 'enabl', 'u', 'collect', 'updat', 'retain', 'employe', 'data', 'In', 'spirit', 'one', 'enron', 'build', 'success', 'yearend', 'global', 'vpmd', 'perform', 'review', 'process', 'enron', 'vpmd', 'prc', 'request', 'enron', 'vice', 'presid', 'manag', 'director', 'updat', 'profil', 'current', 'respons', 'employ', 'histori', 'skill', 'educ', 'need', 'complet', 'via', 'HR', 'global', 'inform', 'system', 'hrgi', 'access', 'via', 'hrweb', 'home', 'page', 'intranet', 'just', 'go', 'hrwebenroncom', 'look', 'hrgi', 'link', 'Or', 'type', 'eglobalenroncom', 'command', 'line', 'browser', 'the', 'target', 'date', 'updat', 'profil', '7', 'juli', 'If', 'would', 'like', 'hard', 'copi', 'templat', 'could', 'fill', 'return', 'input', 'If', 'need', 'assist', 'hrgi', 'applic', 'pleas', 'contact', 'kathi', 'schultea', 'x33841', 'your', 'time', 'respons', 'request', 'greatli', 'appreci', 'thank', 'dave']","[('A', 0.009407589), ('J', 0.0075260503), ('david', 0.0065852823), ('updat', 0.005644513), ('pleas', 0.0047037452), ('C', 0.0047037452), ('enron', 0.0047037452), ('W', 0.0047037452), ('M', 0.0047037452), ('greg', 0.0037629793)]",A,0.00940758
752,752,751,"['chart', 'today', 'meet', 'attach']","[('chart', 0.25), ('today', 0.25), ('meet', 0.25), ('attach', 0.25)]",chart,0.2
753,753,752,"['mark', 'We', 'current', 'backtest', 'storag', 'model', 'the', 'enclos', 'version', 'contain', 'delta', 'decis', 'variabl', 'you', 'mention', 'resourc', 'run', 'model', 'pleas', 'thi', 'help', 'u', 'gain', 'experi', 'market', 'v', 'model', 'I', 'go', 'distribut', 'articl', 'caminu', 'softwar', 'vendor', 'the', 'articl', 'illustr', 'option', 'associ', 'storag', 'oper', 'well', 'the', 'enron', 'research', 'storag', 'model', 'lot', 'like', 'although', 'implement', 'may', 'differ', 'let', 'know', 'question', 'zimin']","[('model', 0.047169883), ('the', 0.037735894), ('storag', 0.037735894), ('articl', 0.0283019), ('option', 0.01886792), ('oper', 0.01886792), ('associ', 0.01886792), ('enron', 0.01886792), ('illustr', 0.01886792), ('softwar', 0.01886792)]",model,0.04716988
754,754,753,"['voic', 'heal', 'go', 'use', 'real', 'time', 'messeng']","[('voic', 0.14285715), ('heal', 0.14285715), ('go', 0.14285715), ('use', 0.14285715), ('real', 0.14285715), ('time', 0.14285715), ('messeng', 0.14285715)]",voic,0.1428571
755,755,754,[],,,
756,756,755,"['dear', 'phillip', 'frogger', 'leav', 'shockwavecom', 'soon', 'save', 'shockmachin', 'everi', 'frog', 'day', 'game', 'frogger', 'great', 'run', 'arcad', 'classic', 'leav', 'shockwavecom', 'pond', 'soon', 'the', 'good', 'news', 'download', 'shockmachin', 'forev', 'dont', 'know', 'shockmachin', 'you', 'download', 'shockmachin', 'free', 'save', 'download', 'favorit', 'play', 'offlin', 'fullscreen', 'whenev', 'want', 'download', 'frogger', 'noon', 'pst', 'june', '30th', 'still', 'site', 'shockwavecom', 'team', 'unsubscrib', 'instruct', 'sure', 'want', 'unsubscrib', 'stop', 'receiv', 'email', 'u', 'all', 'right', 'click', 'httpshockwave1m0netmushksaspepallen40enroncom', '27279']","[('shockmachin', 0.042735115), ('download', 0.042735115), ('frogger', 0.034188077), ('shockwavecom', 0.034188077), ('soon', 0.025641039), ('want', 0.025641039), ('unsubscrib', 0.025641039), ('leav', 0.025641039), ('save', 0.025641039), ('phillip', 0.017094012)]",shockmachin,0.04273511
757,757,756,"['ken', 'lay', 'jeff', 'skill', 'interview', 'cnnfn', 'discu', 'success', 'jeff', 'ceo', 'enron', 'We', 'put', 'interview', 'iptv', 'view', 'pleasur', 'simpli', 'point', 'web', 'browser', 'httpiptvenroncom', 'click', 'link', 'special', 'event', 'choos', 'enron', 'success', 'plan', 'the', 'interview', 'avail', 'everi', '15', 'minut', 'friday', 'dec', '15']","[('interview', 0.0555556), ('success', 0.041666683), ('jeff', 0.041666683), ('enron', 0.041666683), ('15', 0.041666683), ('special', 0.027777774), ('event', 0.027777774), ('plan', 0.027777774), ('link', 0.027777774), ('everi', 0.027777774)]",interview,0.055555
758,758,757,"['north', 'america', 'corp', 'from', 'michael', 'walter', '06212000', '0417', 'PM', 'To', 'phillip', 'K', 'allenhouectect', 'paul', 'T', 'luccidenectenron', 'cc', 'tara', 'sweitzerhouectect', 'subject', 'ftdenver', 'book', 'eol', 'phil', 'paul', 'pleas', 'forward', 'note', 'torrey', 'moorer', 'tara', 'sweitzer', 'eol', 'depart', 'It', 'must', 'sent', 'per', 'request', 'ask', 'financi', 'deal', 'eol', 'bridg', 'ftdenver', 'book', 'instead', 'physic', 'ena', 'imdenv', 'book', 'thank', 'advanc', 'mick', 'walter', '34783', 'eb3299d']","[('eol', 0.037735898), ('book', 0.037735898), ('ftdenver', 0.028301902), ('tara', 0.028301902), ('walter', 0.028301902), ('paul', 0.028301902), ('per', 0.01886792), ('sent', 0.01886792), ('ask', 0.01886792), ('It', 0.01886792)]",eol,0.03773589
759,759,758,"['scott', 'I', 'email', 'question', 'friend', 'work', 'new', 'compani', 'I', 'think', 'I', 'know', 'answer', 'question', 'I', 'want', 'get', 'exact', 'detail', 'basic', 'offer', 'energi', 'onlin', 'fix', 'price', 'price', 'undercut', 'current', 'provid', 'then', 'sale', 'larg', 'enough', 'go', 'wholesal', 'market', 'hedg', 'lock', 'profit', 'the', 'risk', 'built', 'enough', 'margin', 'give', 'room', 'manag', 'price', 'risk', 'thi', 'best', 'guess', 'I', 'get', 'back', 'phillip']","[('I', 0.058823638), ('price', 0.03921573), ('get', 0.029411778), ('enough', 0.029411778), ('risk', 0.029411778), ('question', 0.029411778), ('profit', 0.019607838), ('hedg', 0.019607838), ('the', 0.019607838), ('go', 0.019607838)]",I,0.05882363
760,760,759,"['luci', 'I', 'want', 'speak', 'wade', 'He', 'call', 'work', 'home', 'Or', 'email', 'number', 'I', 'call', 'I', 'would', 'like', 'gari', 'direct', 'wade', 'renov', 'task', 'give', 'work', 'order', 'normal', 'mainten', 'I', 'call', 'tomorrow', 'discu', 'item', 'offic', 'Do', 'need', 'mari', 'come', 'friday', 'I', 'think', 'I', 'guess', 'answer', 'I', 'might', 'stop', 'friday', 'phillip']","[('I', 0.09411781), ('call', 0.047058858), ('work', 0.035294127), ('friday', 0.035294127), ('wade', 0.035294127), ('Do', 0.023529405), ('offic', 0.023529405), ('need', 0.023529405), ('discu', 0.023529405), ('think', 0.023529405)]",I,0.0941178
761,761,760,['httpectpdxsunoneectenroncomtheizenwsccnav'],"[('httpectpdxsunoneectenroncomtheizenwsccnav', 1.0)]",,
762,762,761,"['present', 'It', 'shame', 'caiso', 'doesnt', 'provid', 'actual', 'gener', 'unit', 'the', 'wscc', 'data', 'dicey', 'dont', 'juli', '1999', 'cemm', 'come', 'delay', 'ultim', 'best', 'sourc', 'for', 'purpos', 'caiso', 'may', 'suffic', 'I', 'think', 'probabl', 'know', 'alreadi', 'siginific', 'differ', 'schedul', 'actual', 'gener', 'you', 'pull', 'schedul', 'If', 'someon', 'doesnt', 'schedul', 'gener', 'gener', 'either', 'instruct', 'uninstruct', 'miss', 'you', 'may', 'also', 'miss', 'gener', 'northern', 'california', 'muni', 'smud', 'schedul', 'net', 'load', 'caiso', 'that', '1500', 'MW', 'load', '1200', 'MW', 'gener', 'may', 'simpli', 'schedul', '300', 'MW', 'load', 'sc', 'transfer', 'import', '300', 'MW', 'have', 'said', 'probabl', 'close', 'enough', 'better', 'altern', 'gener', 'side', 'On', 'load', 'side', 'I', 'think', 'I', 'would', 'simpli', 'use', 'caiso', 'actual', 'load', 'while', 'dont', 'split', 'np15', 'sp15', 'I', 'think', 'use', 'actual', 'number', 'better', 'schedul', 'number', 'the', 'util', 'play', 'lot', 'game', 'load', 'side', 'usual', 'underschedul', 'depend', 'price', 'I', 'think', 'present', 'look', 'good', 'It', 'would', 'use', 'share', 'other', 'finish', 'Id', 'like', 'see', 'much', 'ga', 'demand', 'go', 'addit', 'GW', 'gasgener', 'electr', 'especi', 'compar', 'ga', 'consumpt', 'I', 'surpris', 'small', 'ueg', 'consumpt', 'compar', 'us', 'If', 'largest', 'margin', 'consum', 'obvious', 'differ', 'stori', 'let', 'talk']","[('gener', 0.02867398), ('schedul', 0.025089724), ('load', 0.025089724), ('I', 0.025089724), ('caiso', 0.017921206), ('MW', 0.017921206), ('actual', 0.017921206), ('think', 0.017921206), ('may', 0.014336946), ('side', 0.014336946)]",gener,0.0286739
763,763,762,"['check', 'NP', 'gen', 'load', 'amw']","[('check', 0.2), ('NP', 0.2), ('gen', 0.2), ('load', 0.2), ('amw', 0.2)]",check,0.
764,764,763,"['oncomga', 'all', 'ga', 'report', 'west', 'desk', 'call', 'brian', 'hoskin', 'password']","[('oncomga', 0.1), ('all', 0.1), ('ga', 0.1), ('report', 0.1), ('west', 0.1), ('desk', 0.1), ('call', 0.1), ('brian', 0.1), ('hoskin', 0.1), ('password', 0.1)]",oncomga,0.
765,765,764,"['oncomga', 'all', 'ga', 'report', 'west', 'desk', 'call', 'brian', 'hoskin', 'password']","[('oncomga', 0.1), ('all', 0.1), ('ga', 0.1), ('report', 0.1), ('west', 0.1), ('desk', 0.1), ('call', 0.1), ('brian', 0.1), ('hoskin', 0.1), ('password', 0.1)]",oncomga,0.
766,766,765,"['httpecthouwebcl1ntectenroncomga', 'all', 'ga', 'report', 'west', 'desk', 'call', 'brian', 'hoskin', 'password']","[('httpecthouwebcl1ntectenroncomga', 0.1), ('all', 0.1), ('ga', 0.1), ('report', 0.1), ('west', 0.1), ('desk', 0.1), ('call', 0.1), ('brian', 0.1), ('hoskin', 0.1), ('password', 0.1)]",httpecthouwebcl1ntectenroncomga,0.
767,767,766,"['felix', 'network', 'login', 'pallen', 'pw', 'ke7davi', 'note', 'pw', 'synergi', 'My', 'locat', '3210b', 'phillip']","[('pw', 0.12000002), ('synergi', 0.080000006), ('ke7davi', 0.080000006), ('3210b', 0.080000006), ('locat', 0.080000006), ('My', 0.080000006), ('felix', 0.080000006), ('login', 0.080000006), ('pallen', 0.080000006), ('note', 0.080000006)]",pw,0.1200000
768,768,767,"['transwestern', 'pipelin', 'Co', 'post', 'new', 'notic', 'sinc', 'last', 'check', '12132000', '13001', 'PM', 'newest', 'notic', 'look', 'like', 'capac', 'constraint', 'dec', '13', '2000', '148pm', 'dec', '14', '2000', '900am', 'dec', '15', '2000', '859am', '2237', 'alloc', 'socal', 'needl', 'pleas', 'click', 'follow', 'go', 'web', 'site', 'detail', 'httpiosetsenroncominfopostingssharedetnoncriticalnoticeaspcompani', '60']","[('2000', 0.04938277), ('dec', 0.04938277), ('notic', 0.03703706), ('needl', 0.024691358), ('900am', 0.024691358), ('15', 0.024691358), ('859am', 0.024691358), ('2237', 0.024691358), ('alloc', 0.024691358), ('socal', 0.024691358)]",2000,0.0493827
769,769,768,"['luci', 'click', 'attach', 'see', 'format', 'record', 'expens', 'you', 'keep', 'log', 'paper', 'comput', 'the', 'comput', 'would', 'better', 'send', 'updat', 'what', 'think', 'open', 'noon', 'saturday', 'thi', 'might', 'conveni', 'collect', 'rent', 'show', 'open', 'apart', 'We', 'adjust', 'offic', 'hour', 'anoth', 'day', 'phillip']","[('open', 0.04054056), ('comput', 0.04054056), ('rent', 0.027027028), ('saturday', 0.027027028), ('thi', 0.027027028), ('might', 0.027027028), ('conveni', 0.027027028), ('collect', 0.027027028), ('apart', 0.027027028), ('show', 0.027027028)]",open,0.0405405
770,770,769,"['jeff', 'I', 'respond', 'offer', 'monday', 'there', '35', 'million', 'expans', 'ad', '250', 'job', 'burnet', 'I', 'tempt', 'hold', '3000acr', 'owner', 'financ', 'would', 'still', 'work', 'Do', 'opinion', 'phillip']","[('I', 0.061224505), ('financ', 0.040816326), ('hold', 0.040816326), ('3000acr', 0.040816326), ('owner', 0.040816326), ('tempt', 0.040816326), ('would', 0.040816326), ('opinion', 0.040816326), ('Do', 0.040816326), ('job', 0.040816326)]",I,0.06122450
771,771,770,"['Al', 'I', 'glad', 'hear', 'I', 'hope', 'put', 'past', 'behind', 'u', 'sound', 'like', 'busi', 'congratul', 'new', 'babi', 'judg', 'email', 'well', 'that', 'great', 'We', 'anoth', 'girl', 'decemb', 'evelyn', 'grace', 'three', 'u', 'what', 'target', 'the', 'two', 'well', 'soccer', 'tball', 'bike', 'ride', 'keep', 'busi', 'they', 'could', 'use', 'cole', 'coordin', 'My', 'fit', 'program', 'intens', 'right', 'I', 'mainten', 'you', 'surpris', 'hear', 'hunter', 'fanat', 'cyclist', 'We', 'ride', 'work', 'twice', 'week', 'last', 'month', 'He', 'never', 'miss', 'rain', 'shine', 'sometim', 'even', 'hit', 'trail', 'memori', 'park', 'saturday', 'mountain', 'bike', 'hard', '50', 'mile', 'trip', 'road', 'I', 'would', 'like', 'dust', 'road', 'bike', 'go', 'ride', 'saturday', 'I', 'would', 'like', 'hear', 'new', 'job', 'mayb', 'could', 'grab', 'lunch', 'sometim', 'phillip']","[('I', 0.031915), ('like', 0.02127664), ('bike', 0.02127664), ('hear', 0.02127664), ('ride', 0.02127664), ('new', 0.015957462), ('saturday', 0.015957462), ('would', 0.015957462), ('busi', 0.015957462), ('sometim', 0.015957462)]",I,0.03191
772,772,771,"['one', 'thing', 'intramonth', 'transport', 'pl', 'look', 'strang', 'rememb', 'I', 'know', 'northwest', 'may', 'issu', 'ill', 'point', 'let', 'decid', 'let', 'know', 'OK', 'ill', 'know', 'ignor', 'futur', 'also', 'want', 'get', 'kim', 'sitara', 'peopl', 'chang', 'map', 'let', 'know', 'ill', 'take', 'care', 'On', 'pge', 'NW', 'appear', 'pgen', 'kingsgat', 'map', 'malin', 'cityg', 'curv', 'instead', 'kingsgat', 'curv', 'result', 'total', 'transport', 'loss', '235019', 'If', 'map', 'chang', 'realloc', 'plnot', 'chang', 'overal', 'pl', 'mayb', 'reason', 'map', 'mayb', 'affect', 'someth', 'els', 'somewher', 'I', 'see', 'anyway', 'deal', 'path', 'pl', 'impact', '139195', 'from', 'kingsgat', 'malin', '182030', '139196', 'from', 'kingsgat', 'pgentuscarora', '4024', '139197', 'from', 'kingsgat', 'pgen', 'malin', '8271', '231321', 'from', 'kingsgat', 'malin', '38705', '153771', 'from', 'kingsgat', 'stanfield', '1988', 'suggest', 'fix', 'chang', 'pgen', 'kingsgat', 'map', 'gdpmalin', 'cityg', 'gdpkingsgat', 'clay', 'basin', 'storagethi', 'realli', 'fyi', 'anyth', 'elsei', 'see', 'five', 'differ', 'ticket', 'sitara', 'clay', 'basin', 'activityon', 'appear', 'withdraw', 'four', 'inject', 'clay', 'basin', 'valu', 'questar', 'curv', 'substanti', 'nwpl', 'point', 'what', 'mean', 'time', 'inject', 'ga', 'ticket', 'show', 'transport', 'loss', 'time', 'withdraw', 'show', 'big', 'gain', 'transport', 'Im', 'sure', 'best', 'way', 'handl', 'sinc', 'dont', 'realli', 'systemat', 'sitara', 'way', 'handl', 'storag', 'deal', 'In', 'ideal', 'world', 'seem', 'would', 'map', 'way', 'today', 'inject', 'time', 'transport', 'cost', 'would', 'pa', 'storag', 'cost', 'anyway', 'here', 'detail', 'ticket', 'info', 'plu', 'I', 'notic', 'three', 'day', 'appear', 'withdraw', 'inject', 'clay', 'basin', 'there', 'may', 'oper', 'reason', 'occur', 'Im', 'awar', 'dollar', 'impact', 'small', 'I', 'thought', 'Id', 'bring', 'attent', 'case', 'there', 'someth', 'want', 'the', 'column', 'show', 'volum', 'ticket', 'pL', 'associ', 'deal', '251327', '159540', '265229', '106300', '201756', 'PL', '29503', '15960', '3199', '2769', '273', 'rec', 'quesclay', 'basin0184', 'nwplopal', '543', 'nwplopal', 'suma', 'nwpl', 'Gr', 'rvr', 'del', 'nwpl', 'green', 'riverclay', 'quesclay', 'basin0852', 'quesclay', 'basin0852', 'quesclay', 'basin', 'quesclay', 'basin', '1', '329', '8738', '2', '1500', '3', '2974', '11362', '4', '6741', '12349', '1439', '5', '19052', '3183', '9', '333', '13', '30863', '2680', '14', '30451', '15', '35226', '16', '6979', '235', '17', '17464', '18', '9294', '20', '10796', '771', '21', '17930', '22', '10667', '23', '14415', '9076', '25', '23934', '8695', '26', '3284', '27', '1976', '28', '1751', '29', '1591', '30', '20242']","[('kingsgat', 0.016917486), ('basin', 0.013158021), ('map', 0.013158021), ('quesclay', 0.011278291), ('from', 0.011278291), ('transport', 0.01127829), ('chang', 0.009398561), ('ticket', 0.009398561), ('inject', 0.009398561), ('malin', 0.009398561)]",kingsgat,0.01691748
773,773,772,"['mari', 'If', 'add', 'balanc', 'togeth', 'total', '1140', 'I', 'spread', '6', '12', 'month', '6', 'month', 'payout', 'would', '190month', '12', 'month', 'payout', 'would', '95month', 'your', 'choic', 'I', 'would', 'like', 'could', 'work', '5hr', 'friday', 'anoth', 'month', 'doe', '10hr', 'sound', 'fair', 'We', 'appli', 'loan', 'phillip']","[('month', 0.06849322), ('would', 0.054794557), ('12', 0.041095905), ('6', 0.041095905), ('payout', 0.0410959), ('I', 0.0410959), ('10hr', 0.027397253), ('friday', 0.027397253), ('anoth', 0.027397253), ('doe', 0.027397253)]",month,0.0684932
774,774,773,"['address', 'httpectpdxsunoneectenroncomctathamnavsetupindexhtm', 'id', 'pallen', 'password', 'westgasx']","[('address', 0.16666667), ('httpectpdxsunoneectenroncomctathamnavsetupindexhtm', 0.16666667), ('id', 0.16666667), ('pallen', 0.16666667), ('password', 0.16666667), ('westgasx', 0.16666667)]",address,0.1666666
775,775,774,"['luci', 'I', 'go', 'seguin', 'saturday', 'monday', 'We', 'talk', 'unit', 'wade', 'I', 'call', 'bank', 'today', 'resolv', 'author', 'account', 'let', 'keep', 'offic', 'open', 'noon', 'memori', 'day', 'philllip']","[('I', 0.061224505), ('keep', 0.040816326), ('author', 0.040816326), ('account', 0.040816326), ('let', 0.040816326), ('resolv', 0.040816326), ('offic', 0.040816326), ('day', 0.040816326), ('memori', 0.040816326), ('bank', 0.040816326)]",I,0.06122450
776,776,775,"['luci', 'did', 'get', 'set', 'check', 'account', 'tri', 'email', 'everi', 'day', 'note', 'happen', 'day', 'just', 'info', 'new', 'vacanc', 'tenant', 'apart', 'wade', 'work', 'day', 'phillip']","[('day', 0.09090913), ('just', 0.045454543), ('note', 0.045454543), ('work', 0.045454543), ('wade', 0.045454543), ('apart', 0.045454543), ('tenant', 0.045454543), ('vacanc', 0.045454543), ('new', 0.045454543), ('info', 0.045454543)]",day,0.0909091
777,777,776,"['thi', 'note', 'author', 'make', 'follow', 'chang', '1', 'set', 'new', 'book', 'frank', 'ermisnw', 'basi', '2', 'rout', 'product', 'NW', 'basi', 'nwpl', 'rkymtn', 'malin', 'pge', 'cityg', '3', 'rout', 'epng', 'permian', 'todd', 'richardson', 'book', 'ftnew', 'texa', 'call', 'question', 'x37041', 'thank', 'phillip', 'allen']","[('basi', 0.04109591), ('book', 0.041095905), ('rout', 0.041095905), ('ftnew', 0.027397256), ('3', 0.027397256), ('epng', 0.027397256), ('permian', 0.027397256), ('todd', 0.027397256), ('richardson', 0.027397256), ('pge', 0.027397256)]",basi,0.0410959
778,778,777,"['imag', 'natur', 'ga', 'transpor', 'contract', 'inform', 'pipelin', 'notic', 'deliv', 'your', 'desktop', 'httpwwwcapacitycentercom', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'regist', 'now', 'sign', 'Up', 'for', 'A', 'free', 'trial', 'through', 'the', 'end', 'Of', 'may', 'bid', 'week', 'capac', 'shopper', 'learn', 'capac', 'releas', 'post', 'bid', 'pick', 'transport', 'good', 'price', 'explor', 'releas', 'thereit', 'affect', 'ga', 'price', 'daili', 'activ', 'report', 'check', 'deal', 'done', 'what', 'competitor', 'pick', 'deal', 'match', 'thi', 'offer', 'better', 'market', 'intellig', 'system', 'notic', 'have', 'system', 'notic', 'deliv', 'desk', 'dont', 'last', 'one', 'learn', 'ofo', 'busi', 'someth', 'els', 'imag', 'capac', 'shopper', 'and', 'daili', 'activ', 'report', 'have', 'improv', 'format', 'you', 'choos', 'pipelin', 'want', 'well', 'keep', 'post', 'via', 'email', 'detail', 'check', 'exampl', 'daili', 'activ', 'report', 'come', 'soon', 'A', 'statist', 'snapshot', 'capac', 'releas', 'dont', 'miss', 'memberonli', 'opportun', 'see', 'quick', 'snapshot', 'activ', '48', 'interst', 'ga', 'pipelin', 'thi', 'messag', 'sent', 'select', 'group', 'industri', 'profession', 'wish', 'receiv', 'futur', 'notic', 'pleas', 'repli', 'email', 'remov', 'subject', 'line', 'copyright', '2000', 'capacitycentercom', 'inc', 'all', 'right', 'reserv']","[('imag', 0.050000317), ('capac', 0.019230833), ('activ', 0.019230833), ('notic', 0.019230833), ('daili', 0.015384648), ('pipelin', 0.015384648), ('ga', 0.015384647), ('report', 0.015384647), ('releas', 0.015384647), ('shopper', 0.011538468)]",imag,0.05000031
779,779,778,"['ani', 'merit', 'mention', 'initi', 'suppli', 'respons', 'term', 'pipelin', 'infrastructur', 'open', 'seasonsexpans', 'effort', 'behalf', 'kern', 'river', 'transwestern', 'pgt', 'yet', 'announc', 'from', 'jeff', 'dasovich', '12132000', '1204', 'PM', 'sent', 'jeff', 'dasovich', 'To', 'sarah', 'novoselcorpenronenron', 'cc', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'joe', 'hartsoecorpenronenron', 'mari', 'hainhouectect', 'pallenenroncom', 'pkaufmaenroncom', 'richard', 'B', 'sandershouectect', 'richard', 'shapironaenronenron', 'stephani', 'millercorpenronenron', 'steven', 'J', 'keannaenronenron', 'susan', 'J', 'maranaenronenron', 'subject', 'Re', 'enron', 'respons', 'san', 'diego', 'request', 'ga', 'price', 'cap', 'recogn', 'time', 'constraint', 'face', 'ive', 'tri', '1', 'clear', 'inaccuraci', '2', 'massag', 'sharper', 'languag', 'without', 'take', 'chainsaw', 'otherwis', 'good', 'job']","[('respons', 0.017964093), ('jeff', 0.017964093), ('J', 0.017964093), ('dasovich', 0.017964093), ('richard', 0.017964093), ('enron', 0.011976046), ('diego', 0.011976046), ('Re', 0.011976046), ('maranaenronenron', 0.011976046), ('san', 0.011976046)]",respons,0.01796409
780,780,779,"['jeff', 'I', 'would', 'consid', 'owner', 'financ', 'depend', 'establish', 'developerindividualgener', 'credit', 'risk', 'what', 'go', 'land', 'ratetermdownpay', '25', 'let', 'know', 'phillip']","[('risk', 0.052631583), ('credit', 0.052631583), ('know', 0.052631583), ('let', 0.052631583), ('25', 0.052631583), ('ratetermdownpay', 0.052631583), ('land', 0.052631583), ('go', 0.052631583), ('what', 0.052631583), ('jeff', 0.052631583)]",risk,0.05263158
781,781,780,"['05182000', '0823', 'PM', 'bruce', 'sukalyenron', '05182000', '0820', 'AM', 'To', 'john', 'arnoldhouectect', 'mike', 'maggicorpenronenron', 'jeffrey', 'A', 'shankmanhouectect', 'cc', 'subject', 'larg', 'deal', 'alert', 'To', 'make', 'long', 'stori', 'short', 'william', 'long', '4000mw', 'toll', 'sp15', 'socal', '20', 'year', 'I', 'know', 'I', 'deal', 'tuesday', 'afternoon', 'william', 'sold', '1000', 'MW', 'merril', 'lynch', 'remain', 'life', '18', 'year', 'merril', 'short', 'fix', 'price', 'ga', 'So', 'cal', 'border', '250000mmbtu', 'day', 'long', 'sp15', 'power', '1000', 'MW', 'day', 'heat', 'rate', '10500', 'socal', 'border', 'plu', '050', 'Im', 'sure', 'mrl', 'broker', 'deal', 'wareh', 'for', 'worth']","[('long', 0.027586253), ('deal', 0.027586253), ('socal', 0.02068967), ('year', 0.02068967), ('short', 0.02068967), ('william', 0.02068967), ('sp15', 0.02068967), ('day', 0.02068967), ('merril', 0.02068967), ('MW', 0.02068967)]",long,0.02758625
782,782,781,"['dawn', 'I', 'receiv', 'email', 'pl', 'pleas', 'continu', 'send', 'daili', 'thank', 'phillip']","[('dawn', 0.090909086), ('I', 0.090909086), ('receiv', 0.090909086), ('email', 0.090909086), ('pl', 0.090909086), ('pleas', 0.090909086), ('continu', 0.090909086), ('send', 0.090909086), ('daili', 0.090909086), ('thank', 0.090909086)]",dawn,0.09090908
783,783,782,"['No', 'one', 'home', '51100', 'meet', 'dsl', 'instal', 'need', 'reschedul', 'follow', 'week', 'also', 'PC', 'home', 'window', '95', 'Is', 'problem', 'call', 'question', 'x37041', 'thank', 'phillip', 'allen']","[('home', 0.06382982), ('call', 0.042553194), ('x37041', 0.042553194), ('Is', 0.042553194), ('problem', 0.042553194), ('window', 0.042553194), ('question', 0.042553194), ('thank', 0.042553194), ('also', 0.042553194), ('phillip', 0.042553194)]",home,0.0638298
784,784,783,"['mike', 'mcdonald', 'I', 'met', 'SW', 'ga', 'morn', 'they', 'polit', 'regard', 'asset', 'manag', 'procur', 'function', 'outsourc', 'will', 'listen', 'propos', 'howev', 'interest', 'weather', 'hedg', 'protect', 'throughput', 'relat', 'earn', 'We', 'pursu', 'confidenti', 'agreement', 'facilit', 'share', 'inform', 'enabl', 'u', 'develop', 'propos', 'our', 'pitch', 'base', 'upon', 'enhanc', 'sharehold', 'valu', 'outsourc', 'nonprofit', 'costli', 'function', 'procur', 'reduc', 'volatil', 'earn', 'manag', 'throughput', 'via', 'weather', 'product', 'As', 'question', 'We', 'yet', 'identifi', 'pursu', 'candid', 'howev', 'mike', 'mcdonald', 'I', 'develop', 'coverag', 'strategi', 'ensur', 'meet', 'potenti', 'entiti', 'investig', 'opportun', 'We', 'met', '8', 'entiti', 'week', '7', 'municip', 'swg', 'implement', 'strategi', 'california', 'are', 'entiti', 'think', 'would', 'interest', 'asset', 'manag', 'deal', 'approach', 'otherwis', 'intend', 'systemat', 'identifi', 'work', 'candid', 'laird']","[('We', 0.021857966), ('manag', 0.021857966), ('entiti', 0.021857966), ('interest', 0.016393457), ('candid', 0.016393457), ('propos', 0.016393457), ('howev', 0.016393457), ('develop', 0.016393457), ('weather', 0.016393457), ('pursu', 0.016393457)]",We,0.02185796
785,785,815,"['We', 'room', 'eb3014', '3', '4', 'pm', 'wednesday', 'WK']","[('We', 0.125), ('room', 0.125), ('eb3014', 0.125), ('3', 0.125), ('4', 0.125), ('pm', 0.125), ('wednesday', 0.125), ('WK', 0.125)]",We,0.12
786,786,816,"['window', 'unit', 'check', 'gari', 'kind', 'want', 'instal']","[('window', 0.14285715), ('unit', 0.14285715), ('check', 0.14285715), ('gari', 0.14285715), ('kind', 0.14285715), ('want', 0.14285715), ('instal', 0.14285715)]",window,0.1428571
787,787,784,"['04122000', '1045', 'AM', 'laird', 'dyer', '04122000', '0817', 'AM', 'To', 'jane', 'M', 'tholthouectect', 'cc', 'subject', 'SW', 'ga', 'jani', 'thank', 'fax', 'SW', 'ga', 'We', 'meet', 'larri', 'black', 'bob', 'armstrong', 'Ed', 'zub', 'april', '27th', 'discu', 'asset', 'manag', 'In', 'prepar', 'meet', 'would', 'like', 'gain', 'understand', 'natur', 'busi', 'relationship', 'SW', 'could', 'gener', 'term', 'describ', 'sale', 'activ', 'SW', 'what', 'typic', 'quantiti', 'term', 'sale', 'are', 'servic', 'provid', 'how', 'much', 'pipelin', 'capac', 'buy', 'sell', 'who', 'main', 'contact', 'SW', 'ga', 'We', 'propos', 'provid', 'full', 'requir', 'suppli', 'SW', 'involv', 'control', 'asset', 'for', 'attract', 'SW', 'probabl', 'take', 'regulatori', 'risk', 'ga', 'purchas', 'disallow', 'commiss', 'thi', 'difficult', 'clear', 'mandat', 'commiss', 'accept', 'portfolio', 'fix', 'index', 'collar', 'look', 'like', 'offer', 'guarante', 'discount', '1st', 'month', 'index', 'may', 'attract', 'unless', 'accept', 'regulatori', 'risk', 'that', 'risk', 'may', 'accept', 'desk', 'I', 'investig', 'pga', 'see', 'opportun', 'As', 'asset', 'manag', 'prefer', 'structur', 'are', 'element', 'would', 'like', 'see', 'ani', 'idea', 'would', 'greatli', 'appreci', 'thank', 'laird']","[('SW', 0.032000165), ('ga', 0.020000067), ('asset', 0.016000036), ('accept', 0.016000036), ('like', 0.016000036), ('would', 0.016000036), ('risk', 0.016000036), ('commiss', 0.012000009), ('are', 0.012000009), ('manag', 0.012000009)]",SW,0.03200016
788,788,785,"['kay', 'neal', 'thank', 'rememb', 'birthday', 'you', 'beat', 'parent', 'one', 'day', 'the', 'famili', 'fine', 'grace', 'realli', 'smile', 'she', 'happi', 'babi', 'long', 'held', 'It', 'sound', 'like', 'hous', 'come', 'along', 'fast', 'I', 'think', 'folk', 'readi', 'start', 'build', 'We', 'probabl', 'visit', 'late', 'june', 'juli', 'may', 'busi', 'We', 'take', 'kid', 'disney', 'birthday', 'good', 'luck', 'hous', 'keith']","[('We', 0.03030305), ('birthday', 0.03030305), ('hous', 0.03030305), ('start', 0.02020202), ('think', 0.02020202), ('build', 0.02020202), ('visit', 0.02020202), ('readi', 0.02020202), ('I', 0.02020202), ('folk', 0.02020202)]",We,0.0303030
789,789,786,"['today', 'chart', 'attach']","[('today', 0.33333334), ('chart', 0.33333334), ('attach', 0.33333334)]",today,0.3333333
790,790,787,"['today', 'chart', 'attach']","[('today', 0.33333334), ('chart', 0.33333334), ('attach', 0.33333334)]",today,0.3333333
791,791,788,['2000196931'],"[('2000196931', 1.0)]",,
792,792,789,"['pleas', 'review', 'attach', 'draft', 'enron', 'comment', 'respons', 'san', 'diego', 'request', 'natur', 'ga', 'price', 'cap', 'the', 'comment', 'reflect', 'becki', 'cantrel', 'comment', 'reflect', 'red', 'line', 'pleas', 'respond', 'soon', 'possibl', 'comment', 'pleas', 'pa', 'anyon', 'els', 'need', 'see', 'thank', 'sarah']","[('comment', 0.07575767), ('pleas', 0.060606107), ('reflect', 0.045454565), ('possibl', 0.03030303), ('red', 0.03030303), ('line', 0.03030303), ('respond', 0.03030303), ('soon', 0.03030303), ('anyon', 0.03030303), ('thank', 0.03030303)]",comment,0.0757576
793,793,790,"['mari', 'I', 'spoke', 'gari', 'foundat', 'work', '2', '3', 'He', 'agre', 'would', 'better', 'clean', '3', 'whatev', 'wade', '2', 'then', 'focu', '19', 'I', 'work', 'book', 'weekend', 'I', 'need', 'time', 'finish', 'I', 'call', 'day', 'phillip']","[('I', 0.08620697), ('3', 0.051724147), ('2', 0.051724147), ('work', 0.051724147), ('book', 0.034482755), ('weekend', 0.034482755), ('need', 0.034482755), ('focu', 0.034482755), ('time', 0.034482755), ('day', 0.034482755)]",I,0.0862069
794,794,791,"['here', 'dsl', 'form']","[('here', 0.33333334), ('dsl', 0.33333334), ('form', 0.33333334)]",here,0.3333333
795,795,792,"['thank', 'help', 'My', 'assist', 'ina', 'rangel']","[('thank', 0.16666667), ('help', 0.16666667), ('My', 0.16666667), ('assist', 0.16666667), ('ina', 0.16666667), ('rangel', 0.16666667)]",thank,0.1666666
796,796,793,"['holiday', 'thank', 'juli']","[('holiday', 0.33333334), ('thank', 0.33333334), ('juli', 0.33333334)]",holiday,0.3333333
797,797,794,"['holiday', 'thank', 'juli']","[('holiday', 0.33333334), ('thank', 0.33333334), ('juli', 0.33333334)]",holiday,0.3333333
798,798,795,"['beth', 'here', 'address', 'dsl', 'line', 'hunter', 'shive', '10545', 'gawain', 'houston', 'TX', '77024', '713', '4614130', 'phillip', 'allen', '8855', 'merlin', 'Ct', 'houston', 'TX', '77055', '713', '4638626', 'mike', 'grigsbi', '6201', 'meadow', 'lake', 'houston', 'TX', '77057', '713', '7801022', 'thank', 'phillip']","[('713', 0.061538503), ('TX', 0.061538503), ('houston', 0.061538503), ('phillip', 0.04615386), ('grigsbi', 0.030769225), ('77055', 0.030769225), ('4638626', 0.030769225), ('merlin', 0.030769225), ('mike', 0.030769225), ('7801022', 0.030769225)]",713,0.06153850
799,799,796,"['are', 'go', 'inspect', 'tomorrow']","[('are', 0.25), ('go', 0.25), ('inspect', 0.25), ('tomorrow', 0.25)]",are,0.2
800,800,797,"['mac', 'We', '9th', 'I', 'bring', 'paperwork', 'phillip']","[('mac', 0.14285715), ('We', 0.14285715), ('9th', 0.14285715), ('I', 0.14285715), ('bring', 0.14285715), ('paperwork', 0.14285715), ('phillip', 0.14285715)]",mac,0.1428571
801,801,798,"['mac', 'I', 'check', 'execut', 'option', 'smith', 'barney', 'bad', 'news', 'enron', 'agreement', 'pain', 'webber', 'exclus', 'employe', 'dont', 'choic', 'exercis', 'I', 'still', 'would', 'like', 'get', 'premier', 'servic', 'account', 'I', 'transfer', 'money', 'hope', 'reach', 'phillip']","[('I', 0.064516194), ('premier', 0.032258067), ('exercis', 0.032258067), ('still', 0.032258067), ('would', 0.032258067), ('like', 0.032258067), ('get', 0.032258067), ('choic', 0.032258067), ('money', 0.032258067), ('hope', 0.032258067)]",I,0.06451619
802,802,799,"['jeff', 'could', 'set', 'inspect', 'friday', '200', 'list', 'burnet', 'mail', 'phillip']","[('jeff', 0.1), ('could', 0.1), ('set', 0.1), ('inspect', 0.1), ('friday', 0.1), ('200', 0.1), ('list', 0.1), ('burnet', 0.1), ('mail', 0.1), ('phillip', 0.1)]",jeff,0.
803,803,800,"['new', 'associ', 'orient', 'As', 'new', 'particip', 'within', 'associ', 'program', 'I', 'would', 'like', 'invit', 'new', 'associ', 'orient', 'begin', 'monday', 'februari', '12', 'end', 'wednesday', 'februari', '28', 'As', 'result', 'two', 'half', 'week', 'orient', 'come', 'away', 'better', 'understand', 'enron', 'busi', 'well', 'enhanc', 'analyt', 'technic', 'skill', 'within', 'orient', 'particip', 'cours', 'intro', 'ga', 'power', 'model', 'deriv', 'I', 'deriv', 'II', 'valu', 'risk', 'pleas', 'confirm', 'avail', 'particip', 'two', 'half', 'week', 'orient', 'via', 'email', 'traci', 'arthur', 'friday', 'decemb', '22', '2000', 'thank', 'traci', 'arthur']","[('orient', 0.046875097), ('associ', 0.031250037), ('particip', 0.031250037), ('new', 0.031250037), ('arthur', 0.02343751), ('two', 0.02343751), ('within', 0.02343751), ('deriv', 0.02343751), ('februari', 0.02343751), ('traci', 0.023437507)]",orient,0.04687509
804,804,801,"['tara', 'pleas', 'grant', 'access', 'manag', 'financi', 'product', 'follow', 'jani', 'tholt', 'frank', 'ermi', 'steve', 'south', 'tori', 'kuykendal', 'matt', 'lenhart', 'randi', 'gay', 'We', 'make', 'market', 'one', 'day', 'ga', 'daili', 'swap', 'thank', 'phillip', 'allen']","[('one', 0.03225807), ('day', 0.03225807), ('randi', 0.03225807), ('gay', 0.03225807), ('We', 0.03225807), ('make', 0.03225807), ('market', 0.03225807), ('matt', 0.03225807), ('swap', 0.03225807), ('thank', 0.03225807)]",one,0.0322580
805,805,802,"['mari', 'Go', 'ahead', 'work', 'gari', 'get', 'new', 'fridg', '8', 'I', 'go', 'tri', 'come', 'saturday', 'talk', 'later', 'phillip']","[('I', 0.05882353), ('8', 0.05882353), ('later', 0.05882353), ('talk', 0.05882353), ('saturday', 0.05882353), ('come', 0.05882353), ('tri', 0.05882353), ('go', 0.05882353), ('mari', 0.05882353), ('get', 0.05882353)]",I,0.0588235
806,806,803,"['slide', 'week', 'strategi', 'session', 'attach']","[('slide', 0.2), ('week', 0.2), ('strategi', 0.2), ('session', 0.2), ('attach', 0.2)]",slide,0.
807,807,804,"['mark', 'thank', 'offer', 'I', 'ride', 'year', 'good', 'luck', 'phillip']","[('mark', 0.11111111), ('thank', 0.11111111), ('offer', 0.11111111), ('I', 0.11111111), ('ride', 0.11111111), ('year', 0.11111111), ('good', 0.11111111), ('luck', 0.11111111), ('phillip', 0.11111111)]",mark,0.1111111
808,808,805,"['attend', 'meet', 'thursday', 'march', '23', '1115', 'room', '3127', 'thi', 'meet', 'brief', 'I', 'would', 'like', 'take', 'time', 'introduc', 'bhavna', 'pandya', 'get', 'input', 'variou', 'project', 'assist', 'u', 'thank']","[('meet', 0.05882355), ('get', 0.039215684), ('introduc', 0.039215684), ('bhavna', 0.039215684), ('pandya', 0.039215684), ('variou', 0.039215684), ('input', 0.039215684), ('u', 0.039215684), ('assist', 0.039215684), ('like', 0.039215684)]",meet,0.0588235
809,809,806,"['stephan', 'can', 'creat', 'email', 'list', 'distribut', 'report', 'everyday', 'west', 'desk', 'Or', 'put', 'common', 'drive', 'We', 'report', 'list', 'includ', 'phillip', 'allen', 'mike', 'grigsbi', 'keith', 'holst', 'frank', 'ermi', 'steve', 'south', 'jani', 'tholt', 'tori', 'kuykendal', 'matt', 'lenhart', 'randi', 'gay', 'thank', 'phillip']","[('phillip', 0.041095905), ('list', 0.041095905), ('report', 0.041095905), ('jani', 0.027397256), ('kuykendal', 0.027397256), ('frank', 0.027397256), ('ermi', 0.027397256), ('steve', 0.027397256), ('south', 0.027397256), ('keith', 0.027397256)]",phillip,0.04109590
810,810,807,"['httpectpdxsunonectathamnavsetupindexhtm', 'id', 'pallen', 'pw', 'westgasx', 'highli', 'sensit', 'distribut']","[('httpectpdxsunonectathamnavsetupindexhtm', 0.125), ('id', 0.125), ('pallen', 0.125), ('pw', 0.125), ('westgasx', 0.125), ('highli', 0.125), ('sensit', 0.125), ('distribut', 0.125)]",httpectpdxsunonectathamnavsetupindexhtm,0.12
811,811,808,"['on', '403', '9746756']","[('on', 0.33333334), ('403', 0.33333334), ('9746756', 0.33333334)]",on,0.3333333
812,812,809,"['mari', 'I', 'offic', 'friday', 'I', 'call', 'wade', 'later', 'today', 'philip']","[('I', 0.15789478), ('mari', 0.10526316), ('offic', 0.10526316), ('friday', 0.10526316), ('call', 0.10526316), ('wade', 0.10526316), ('later', 0.10526316), ('today', 0.10526316), ('philip', 0.10526316)]",I,0.1578947
813,813,810,"['on', '403', '9746756']","[('on', 0.33333334), ('403', 0.33333334), ('9746756', 0.33333334)]",on,0.3333333
814,814,811,"['everyon', 'I', 'forgot', 'mention', 'due', 'today', 'comment', 'back', 'soon', 'possibl', 'appreci', 'sarah', 'sarah', 'novosel', '12132000', '1117', 'AM', 'To', 'jame', 'D', 'steffesnaenron', 'joe', 'hartsoecorpenron', 'susan', 'J', 'maranaenron', 'jeff', 'dasovichnaenron', 'richard', 'shapironaenron', 'steven', 'J', 'keannaenron', 'richard', 'B', 'sandershouect', 'stephani', 'millercorpenron', 'christi', 'L', 'nicolayhouect', 'mari', 'hainhouect', 'pkaufmaenroncom', 'pallenenroncom', 'cc', 'subject', 'enron', 'respons', 'san', 'diego', 'request', 'ga', 'price', 'cap', 'pleas', 'review', 'attach', 'draft', 'enron', 'comment', 'respons', 'san', 'diego', 'request', 'natur', 'ga', 'price', 'cap', 'the', 'comment', 'reflect', 'becki', 'cantrel', 'comment', 'reflect', 'red', 'line', 'pleas', 'respond', 'soon', 'possibl', 'comment', 'pleas', 'pa', 'anyon', 'els', 'need', 'see', 'thank', 'sarah']","[('comment', 0.037267182), ('sarah', 0.024844758), ('pleas', 0.024844758), ('diego', 0.018633552), ('richard', 0.018633552), ('reflect', 0.018633552), ('request', 0.018633552), ('price', 0.018633552), ('ga', 0.018633552), ('J', 0.018633552)]",comment,0.03726718
815,815,812,"['socal', 'posit', 'thi', 'short', 'good', 'enough']","[('socal', 0.16666667), ('posit', 0.16666667), ('thi', 0.16666667), ('short', 0.16666667), ('good', 0.16666667), ('enough', 0.16666667)]",socal,0.1666666
816,816,813,"['david', 'I', 'receiv', 'updat', 'either', 'I', 'forgot', 'password', 'one', 'can', 'check', 'phillip', 'allen', 'enron', '7138537041']","[('I', 0.1034483), ('can', 0.068965524), ('password', 0.068965524), ('enron', 0.068965524), ('allen', 0.068965524), ('phillip', 0.068965524), ('check', 0.068965524), ('david', 0.068965524), ('receiv', 0.068965524), ('either', 0.068965524)]",I,0.103448
817,817,814,"['Hi', 'all', 'We', 'look', 'wheat', 'farmer', 'near', 'austin', 'purchas', 'approxim', '300', 'bale', 'pleas', 'email', 'referenc', 'address', 'call', '512', '2630177', 'busi', 'hour', 'central', 'standard', 'time', 'help', 'thank', 'ben', 'obregon', 'aia']","[('central', 0.034482755), ('time', 0.034482755), ('512', 0.034482755), ('2630177', 0.034482755), ('busi', 0.034482755), ('hour', 0.034482755), ('address', 0.034482755), ('standard', 0.034482755), ('obregon', 0.034482755), ('thank', 0.034482755)]",central,0.03448275
818,818,819,"['will', 'here', 'list', 'top', 'item', 'need', 'work', 'improv', 'posit', 'pl', 'report', 'west', 'desk', 'My', 'underli', 'goal', 'creat', 'posit', 'manag', 'pl', 'report', 'repres', 'risk', 'held', 'desk', 'estim', 'pl', 'great', 'accuraci', 'let', 'tri', 'schedul', 'meet', 'wednesday', 'go', 'item', 'phillip']","[('pl', 0.05882359), ('posit', 0.044117674), ('item', 0.044117674), ('desk', 0.044117674), ('report', 0.044117674), ('estim', 0.029411767), ('great', 0.029411767), ('accuraci', 0.029411767), ('let', 0.029411767), ('risk', 0.029411767)]",pl,0.0588235
819,819,820,"['Go', 'ahead', 'level', 'floor', '2']","[('Go', 0.2), ('ahead', 0.2), ('level', 0.2), ('floor', 0.2), ('2', 0.2)]",Go,0.
820,820,821,"['dear', 'phillip', 'thi', 'email', 'autom', 'notif', 'avail', 'current', 'natur', 'ga', 'intellig', 'newslett', 'pleas', 'use', 'usernam', 'pallen', 'password', 'access', 'ngi', 'daili', 'ga', 'price', 'index', 'httpintelligencepresscomsubscribersindexhtml', 'If', 'forgotten', 'password', 'pleas', 'visit', 'httpintelligencepresscompasswordhtml', 'send', 'If', 'would', 'like', 'stop', 'receiv', 'email', 'notif', 'public', 'avail', 'pleas', 'repli', 'messag', 'remov', 'email', 'subject', 'line', 'thank', 'subscript', 'for', 'inform', 'intellig', 'press', 'product', 'servic', 'visit', 'web', 'site', 'httpintelligencepresscom', 'call', 'tollfre', '800', '4275747', 'all', 'right', 'reserv', 'c', '2000', 'intellig', 'press', 'inc']","[('pleas', 0.031007797), ('email', 0.031007797), ('intellig', 0.031007797), ('ga', 0.02325583), ('If', 0.02325583), ('password', 0.02325583), ('visit', 0.02325583), ('press', 0.02325583), ('notif', 0.02325583), ('avail', 0.02325583)]",pleas,0.03100779
821,821,822,"['pleas', 'review', 'attach', 'draft', 'enron', 'comment', 'respons', 'san', 'diego', 'request', 'natur', 'ga', 'price', 'cap', 'the', 'comment', 'reflect', 'becki', 'cantrel', 'comment', 'reflect', 'red', 'line', 'pleas', 'respond', 'soon', 'possibl', 'comment', 'pleas', 'pa', 'anyon', 'els', 'need', 'see', 'thank', 'sarah']","[('comment', 0.07575767), ('pleas', 0.060606107), ('reflect', 0.045454565), ('possibl', 0.03030303), ('red', 0.03030303), ('line', 0.03030303), ('respond', 0.03030303), ('soon', 0.03030303), ('anyon', 0.03030303), ('thank', 0.03030303)]",comment,0.0757576
822,822,823,"['steve', 'pleas', 'remov', 'bob', 'shire', 'liz', 'rivera', 'rc', '768', 'thank', 'phillip', 'allen']","[('rc', 0.08333334), ('liz', 0.08333334), ('phillip', 0.08333334), ('thank', 0.08333334), ('768', 0.08333334), ('steve', 0.08333334), ('rivera', 0.08333334), ('remov', 0.08333334), ('bob', 0.08333334), ('pleas', 0.08333334)]",rc,0.0833333
823,823,824,"['Go', 'ahead', 'order', 'ac', '27', 'can', 'email', 'fax', 'summari', 'rent', 'collect', 'august', 'decemb', 'I', 'need', 'finish', 'tax', 'return', 'I', 'expens', 'data', 'rent', 'collect', 'fax', 'number', '7136463239', 'thank', 'phillip']","[('fax', 0.05769233), ('I', 0.05769233), ('collect', 0.05769233), ('rent', 0.05769233), ('tax', 0.038461536), ('return', 0.038461536), ('expens', 0.038461536), ('thank', 0.038461536), ('number', 0.038461536), ('august', 0.038461536)]",fax,0.0576923
824,824,825,"['anymor', 'detail', 'Is', 'offer', '675', 'what', 'els', 'clean', '11cap', 'good', 'locat', 'room', 'expand']","[('clean', 0.07692308), ('els', 0.07692308), ('room', 0.07692308), ('locat', 0.07692308), ('good', 0.07692308), ('11cap', 0.07692308), ('anymor', 0.07692308), ('Is', 0.07692308), ('675', 0.07692308), ('detail', 0.07692308)]",clean,0.0769230
825,825,826,"['100', 'yard', 'seem', 'like', 'enough', '125', 'hour', 'how', 'long', 'take', 'I', 'think', '100', 'enough', 'use', 'page', 'setup', 'file', 'menu', 'chang', 'portrait', 'landscap', 'want', 'chang', 'print', 'vertic', 'print', 'horizont', 'also', 'tri', 'select', 'fit', 'one', 'page', 'want', 'print', 'one', 'page', 'use', 'print', 'preview', 'see', 'print', 'look', 'like', 'print', 'the', 'truck', 'might', 'need', 'new', 'sparkplug', 'around', '120000125000', 'mile', 'A', 'valv', 'adjust', 'might', 'good', 'It', 'idl', 'high', 'last', '25000', 'mile', 'never', 'broken', 'glad', 'hear', 'good', 'deposit', 'week', 'great', 'job', 'februari', 'phillip']","[('print', 0.051095027), ('page', 0.02919712), ('might', 0.021897824), ('chang', 0.021897824), ('100', 0.021897824), ('good', 0.021897824), ('use', 0.021897824), ('want', 0.021897824), ('one', 0.021897824), ('like', 0.021897824)]",print,0.05109502
826,826,827,"['the', 'file', 'updat', 'renam', 'ga', 'basi', 'mar', '00']","[('the', 0.125), ('file', 0.125), ('updat', 0.125), ('renam', 0.125), ('ga', 0.125), ('basi', 0.125), ('mar', 0.125), ('00', 0.125)]",the,0.12
827,827,828,"['slide', 'yesterday', 'meet', 'attach']","[('slide', 0.25), ('yesterday', 0.25), ('meet', 0.25), ('attach', 0.25)]",slide,0.2
828,828,829,"['It', 'ok', 'let', 'deposit', 'rollov', '13', 'interrupt', 'rent']","[('It', 0.125), ('ok', 0.125), ('let', 0.125), ('deposit', 0.125), ('rollov', 0.125), ('13', 0.125), ('interrupt', 0.125), ('rent', 0.125)]",It,0.12
829,829,830,"['dear', 'phillip', '7th', 'portal', 'super', 'hero', 'actionadventur', 'featur', 'global', 'band', 'teenag', 'game', 'tester', 'get', 'pull', 'parallel', 'univers', '7th', 'portal', 'creat', 'warp', 'internet', 'the', 'fate', 'earth', 'univers', 'hand', 'fight', 'mongorr', 'merci', 'evil', 'forc', 'univers', 'the', 'legendari', 'stan', 'lee', 'creator', 'spiderman', 'incred', 'hulk', 'bring', 'u', 'let', 'game', 'begin', 'episod', '1', '7th', 'portal', 'new', 'seri', 'exclus', 'shockwavecom', 'shockwavecom', 'team', 'advertis', 'dont', 'miss', 'rollingstonecom', 'watch', 'daili', 'music', 'new', 'download', 'mp3', 'read', 'album', 'review', 'get', 'scoop', '1000', 'artist', 'includ', 'exclus', 'photo', 'bio', 'song', 'clip', 'link', 'win', 'great', 'prize', 'more', 'httpads07focalinkcomsmartbannerpage1657337n', 'advertis', 'unsubscrib', 'instruct', 'sure', 'want', 'unsubscrib', 'stop', 'receiv', 'email', 'u', 'all', 'right', 'click', 'httpshockwave1m0netmushksaspepallen40enroncom', '17094']","[('univers', 0.021621669), ('7th', 0.021621669), ('portal', 0.021621669), ('game', 0.016216233), ('u', 0.016216233), ('advertis', 0.016216233), ('the', 0.016216233), ('unsubscrib', 0.016216233), ('get', 0.016216233), ('new', 0.016216233)]",univers,0.02162166
830,830,831,"['imelda', 'pleas', 'switch', 'sitara', 'access', 'central', 'west', 'email', 'password', 'thank', 'phillip']","[('imelda', 0.090909086), ('pleas', 0.090909086), ('switch', 0.090909086), ('sitara', 0.090909086), ('access', 0.090909086), ('central', 0.090909086), ('west', 0.090909086), ('email', 0.090909086), ('password', 0.090909086), ('thank', 0.090909086)]",imelda,0.09090908
831,831,832,"['tri', 'the', 'attach', 'attach']","[('attach', 0.42857143), ('tri', 0.2857143), ('the', 0.2857143)]",attach,0.4285714
832,832,833,"['onsopdxectect', 'greg', 'wolfehouectect', 'holli', 'krebshouectect', 'john', 'M', 'forneyhouectect', 'cooper', 'richeypdxectect', 'cc', 'subject', 'post', 'game', 'wrap', 'Up', 'stat', 'extraordinari', 'measur', 'forward', 'tim', 'heizenraderpdxect', '12132000', '0719', 'AM', 'don', 'badley', 'donbadleynwpporg', '12122000', '042311', 'PM', 'To', 'djamesavistacorpcom', 'egroceavistacorpcom', 'douglascavebchydrobcca', 'kellylailbchydrobcca', 'martinhuangbchydrobcca', 'bberrybpagov', 'cnkarafotiasbpagov', 'damaharbpagov', 'dbernhardsenbpagov', 'dlgoldbpagov', 'gpcampbellbpagov', 'pamesabpagov', 'pfarnoldbpagov', 'pnscbpagov', 'rlmackaybpagov', 'srkernsbpagov', 'tmsnodgrassbpagov', 'gtillitsoncaisocom', 'dearingchelanpudorg', 'kenjchelanpudorg', 'mikesinowitzciseattlewau', 'ralphunderwoodciseattlewau', 'kmorisetcitacomawau', 'msizercitacomawau', 'cwagersdcpudorg', 'hlubeandcpudorg', 'philticedeseretgtcom', 'hkrebsectenroncom', 'timheizenraderenroncom', 'davewepctedwagov', 'gwagnerepcorgroupcom', 'webbdepenergycom', 'deanahlstenewebeugeneoru', 'glangegcpudorg', 'rnotebogcpudorg', 'jsj1400idahopowercom', 'tparkidahopowercom', 'lpattermtpowercom', 'mcashellmtpowercom', 'dwatsonnwppcorg', 'johnappersonpacificorpcom', 'normstanleypacificorpcom', 'tarcyleepacificorpcom', 'jonfiskerpgncom', 'marlenehuntsingerpgncom', 'mikeryanpgncom', 'tkentpnusbrgov', 'danruiupowerpoolabca', 'donadairpowerpoolabca', 'vipinprasadpowerpoolabca', 'rspearpplmtcom', 'dschunkpucstateidu', 'bgainepugetcom', 'damagnpugetcom', 'mhuntepugetcom', 'bmarcysppccom', 'jcampbellsppccom', 'pcartwrightstatemtu', 'johnfsavagestateoru', 'boblowtransaltacom', 'denisehilltransaltacom', 'cathrynlhlebechukusacearmymil', 'degolfwkpowercom', 'cc', 'carol', 'lynch', 'carollynchnwpporg', 'chare', 'messerli', 'chareemesserlinwpporg', 'deborah', 'martinez', 'deborahmartineznwpporg', 'rich', 'nassief', 'richnassiefnwpporg', 'ashbakerwscccom', 'denniswscccom', 'subject', 'revis', 'load', 'and', 'resourc', 'estim', 'most', 'control', 'area', 'report', 'amount', 'load', 'relief', 'gener', 'increas', 'experienc', 'peak', 'period', '17001800', 'pst', 'decemb', '12', 'the', 'data', 'I', 'receiv', 'thu', 'far', 'summar', 'follow', 'paragraph', 'the', 'approxim', 'amount', 'load', 'relief', 'achiev', 'due', 'conserv', 'curtail', 'peak', 'period', 'decemb', '12', '835', 'mwh', 'the', 'approxim', 'amount', 'gener', 'increas', 'due', 'extraordinari', 'oper', 'purchas', 'peak', 'period', 'decemb', '12', '786', 'mwh', 'A', 'note', 'caution', 'figur', 'imprecis', 'deriv', 'lot', 'guesswork', 'howev', 'within', 'ballpark', 'realiti', 'don', 'badley']","[('peak', 0.011594248), ('the', 0.011594248), ('load', 0.011594248), ('period', 0.011594248), ('12', 0.011594248), ('decemb', 0.011594248), ('amount', 0.011594248), ('badley', 0.008695668), ('mwh', 0.008695668), ('extraordinari', 0.008695668)]",peak,0.01159424
833,833,834,"['mari', 'I', 'transfer', '10000', 'check', 'account', 'monday', '22800', 'I', 'call', 'monday', 'tuesday', 'see', 'new', 'phillip']","[('I', 0.10714288), ('monday', 0.10714288), ('new', 0.071428575), ('see', 0.071428575), ('tuesday', 0.071428575), ('call', 0.071428575), ('mari', 0.071428575), ('22800', 0.071428575), ('transfer', 0.071428575), ('10000', 0.071428575)]",I,0.1071428
834,834,835,"['jeff', 'let', 'close', 'march', '1', 'phillip']","[('jeff', 0.16666667), ('let', 0.16666667), ('close', 0.16666667), ('march', 0.16666667), ('1', 0.16666667), ('phillip', 0.16666667)]",jeff,0.1666666
835,835,847,"['what', 'cool', 'newsgroup', 'avail', 'u', 'altern', 'thinker', 'ram', 'earth', 'cob', 'etc', 'We', 'list', 'favorit', 'httpwwwgreenbuildercomgeneraldiscussionhtml', 'open', 'suggest', 'BC', 'bill', 'christensen', 'billcgreenbuildercom', 'green', 'home', 'for', 'saleleas', 'httpwwwgreenbuildercomrealest', 'green', 'build', 'pro', 'directori', 'httpwwwgreenbuildercomdirectori', 'sustain', 'bldg', 'calendar', 'httpwwwgreenbuildercomcalendar', 'sustain', 'bldg', 'bookstor', 'httpwwwgreenbuildercombookstor']","[('sustain', 0.04000002), ('green', 0.04000002), ('bldg', 0.04000002), ('cob', 0.026666667), ('for', 0.026666667), ('directori', 0.026666667), ('christensen', 0.026666667), ('billcgreenbuildercom', 0.026666667), ('thinker', 0.026666667), ('httpwwwgreenbuildercomrealest', 0.026666665)]",sustain,0.0400000
836,836,836,"['did', 'order', 'jen', 'forward', 'jennif', 'fraserhouect', '02192000', '20', '0356', 'PM', 'jeff', 'steel', 'jsteelepiracom', '02142000', '015100', 'PM', 'To', 'pira', 'energi', 'retain', 'client', 'jsteelepiracom', 'cc', '20', 'subject', 'pira', 'californiasouthwest', 'ga', 'pipelin', 'studi', 'pira', 'focu', 'californiasouthwest', 'region', 'studi', 'natur', 'Ga', 's20', 'pipelin', 'infrastructur', 'pira', 'energi', 'group', 'announc', 'continu', 'new', 'multicli', 'studi', '20', 'the', 'price', 'reliabl', 'the', 'valu', 'strategi', 'ga', 'transport', 'the', 'price', 'reliabl', 'deliv', '6', 'part', 'part', 'representin', 'g20', 'discret', 'north', 'american', 'region', 'offer', 'insight', 'chang', 'and20', 'develop', 'north', 'american', 'natur', 'ga', 'pipelin', 'infrastructur', 'Th', 'e20', 'updat', 'prospectu', 'attach', 'pdf', 'word', 'file', 'outlin', 'pira', 's20', 'approach', 'methodolog', 'studi', 'deliver', 'andreleas', 'date', 'thi', 'note', 'inform', 'pira', 'commenc', 'studi', 'third', '20', 'region', 'california', 'southwest', 'As', 'region', 'studi', 'begin', '20', 'fundament', 'view', 'ga', 'flow', 'US', 'canada', 'pipelin', '20', 'region', 'cover', 'CA', 'NV', 'AZ', 'NM', 'discuss', 'greater', 'detail', '20', 'within', 'north', 'american', 'context', 'then', 'turn', 'valu', '20', 'transport', 'follow', 'three', 'major', 'price', 'point', 'assessm', 'nt20', 'primari', 'market', 'firm', 'secondari', 'market', 'basi', 'asset', 'market', '1', 'southern', 'california', 'border', 'topock', '2', 'san', 'juan', 'basin', '3', 'permian', 'basin', 'waha', 'the', 'californiasw', 'region01', 'workshop', '01', 'key', 'element', 'servic', '01', 'will20', 'take', 'place', 'march', '20', '2000at', '830', 'AM', 'arizona', 'biltmor', 'hotel', '20', 'phoenixfor', 'join', 'u', 'adiscount', 'block', 'room', 'bei', 'ng20', 'held', 'februari', '25', 'the', 'attach', 'prospectu', 'explain', 'variou', 'option', 'subscribingplea', 'se20', 'note', 'two', 'key', 'issu', 'regard', 'subscrib', 'optionson', 'a20', '10', 'save', 'pira', 'retain', 'client', 'order', 'februari', '25', '2000', '20', 'andtwo', 'discount', 'purchasingmor', 'one', 'region', 'If', 'question', 'pleas', 'hesit', 'contact', 'sincer', 'jeff', 'steel', 'manag', 'busi', 'develop', 'pira', 'energi', 'group', '212', '6866808', 'jsteelepiracom', '20', 'prospectuspdf', 'prospectusdoc']","[('20', 0.030303355), ('pira', 0.020979216), ('studi', 0.016317144), ('region', 0.016317144), ('the', 0.013986107), ('ga', 0.0116550755), ('pipelin', 0.0116550755), ('price', 0.009324043), ('american', 0.009324042), ('market', 0.009324042)]",20,0.03030335
837,837,837,"['tara', 'I', 'receiv', 'email', 'set', 'paul', 'lucci', 'niccol', 'cortez', 'execut', 'id', 'the', 'right', 'set', 'fine', 'thank', 'help', 'phillip']","[('set', 0.08571431), ('id', 0.057142857), ('cortez', 0.057142857), ('help', 0.057142857), ('thank', 0.057142857), ('fine', 0.057142857), ('right', 0.057142857), ('the', 0.057142857), ('tara', 0.057142857), ('execut', 0.057142857)]",set,0.0857143
838,838,838,"['mari', 'are', 'sure', 'attach', 'right', 'there', 'file', 'attach', 'messag', 'pleas', 'tri', 'phillip']","[('attach', 0.13043483), ('mari', 0.08695652), ('are', 0.08695652), ('sure', 0.08695652), ('right', 0.08695652), ('there', 0.08695652), ('file', 0.08695652), ('messag', 0.08695652), ('pleas', 0.08695652), ('tri', 0.08695652)]",attach,0.1304348
839,839,839,"['arri', 'calxaaolcom', 'lime', 'exsplurt', 'extraordinair', 'wrote', 'snip', 'I', 'highli', 'recommend', 'david', 'moor', 'book', 'the', 'roman', 'pantheon', 'thorough', 'research', 'us', 'develop', 'roman', 'cementlim', 'claypozzolon', 'ash', 'make', 'us', 'lime', 'build', 'I', 'find', 'almost', 'imposs', 'put', 'whi', 'I', 'surpris', 'I', 'suspect', 'someon', 'build', 'town', 'call', 'lime', 'make', 'everyth', 'town', 'lime', 'provid', 'food', 'connect', 'lime', 'buri', 'limey', 'lime', 'theyr', 'dead', 'arri', 'would', 'move', 'town', 'flash', 'think', 'arriv', 'paradis', 'earth', 'accord', 'vaaaast', 'network', 'spi', 'sneak', 'sleuth', 'next', 'issu', 'the', 'last', 'straw', 'focu', 'lime', 'one', 'surpris', 'featur', 'musingswisdomexperi', 'master', 'lime', 'arri', 'those', 'spiessneakssleuth', 'tell', 'format', 'next', 'issu', 'departur', 'norm', 'may', 'beeg', 'surpris', 'Me', 'My', 'curios', 'piqu', 'itchin', 'see', 'limey', 'issu', 'the', 'last', 'straw', 'afflict', 'yet', 'subscrib', 'may', 'late', 'thelaststrawstrawhomescom', 'wwwstrawhomescom', 'itchi']","[('lime', 0.044776317), ('I', 0.024875693), ('the', 0.019900536), ('issu', 0.019900536), ('surpris', 0.019900536), ('town', 0.019900536), ('arri', 0.019900536), ('roman', 0.014925384), ('straw', 0.014925384), ('may', 0.014925384)]",lime,0.04477631
840,840,840,"['folk', 'I', 'found', 'interest', 'site', 'histori', 'us', 'lime', 'develop', 'pozzolon', 'materi', 'lime', 'clay', 'roman', 'cement', 'I', 'think', 'interest', 'group', 'I', 'highli', 'recommend', 'david', 'moor', 'book', 'the', 'roman', 'pantheon', '2500', 'thorough', 'research', 'us', 'develop', 'roman', 'cementlim', 'claypozzolon', 'ash', 'make', 'us', 'lime', 'build', 'the', 'book', 'cover', 'ancient', 'kiln', 'tie', 'modern', 'us', 'cement', 'concret', 'I', 'find', 'almost', 'imposs', 'put', 'write', 'flow', 'easili', 'interest', 'entertain', 'enlighten', 'david', 'moor', 'spent', '10', 'year', 'learn', 'roman', 'abl', 'construct', 'larg', 'build', 'structur', 'etc', 'simpli', 'lime', 'volcan', 'ash', 'structur', 'last', '2000', 'year', 'A', 'great', 'testimoni', 'roman', 'builder', 'good', 'background', 'inform', 'sustain', 'builder', 'folk', 'thank', 'Mr', 'moor', 'I', 'highli', 'recommend', 'site', 'especi', 'book', 'A', 'hrefhttpwwwromanconcretecomroman', 'concret', 'research', 'david', 'moorea', 'regard', 'harri', 'franci']","[('I', 0.032085657), ('roman', 0.032085657), ('us', 0.026738035), ('lime', 0.026738035), ('moor', 0.021390408), ('interest', 0.021390408), ('david', 0.021390408), ('book', 0.021390408), ('recommend', 0.01604279), ('year', 0.01604279)]",I,0.03208565
841,841,841,"['mari', 'I', 'got', 'email', 'Go', 'ahead', 'get', 'carpet', 'shampooer', 'make', 'sure', 'come', 'back', 'clean', 'use', 'wade', 'tenant', 'As', 'far', 'W2', 'I', 'look', 'rule', 'withhold', 'social', 'secur', 'I', 'call', 'later', 'today', 'discu', 'phillip']","[('I', 0.064516194), ('withhold', 0.032258067), ('As', 0.032258067), ('far', 0.032258067), ('W2', 0.032258067), ('look', 0.032258067), ('rule', 0.032258067), ('tenant', 0.032258067), ('later', 0.032258067), ('today', 0.032258067)]",I,0.06451619
842,842,842,"['phillip', 'I', 'applaud', 'use', 'cycl', 'daili', 'transport', 'save', 'ga', 'pollut', 'help', 'keep', 'strong', 'healthi', 'enron', 'provid', 'bike', 'rack', 'front', 'build', 'request', 'phillip', 'I', 'wish', 'could', 'accommod', 'request', 'howev', 'the', 'bodi', 'shop', 'capac', 'assum', 'respons', 'store', 'cycl', 'daili', 'basi', 'If', 'bring', 'good', 'lock', 'abl', 'secur', 'bike', 'design', 'outsid', 'rack', 'keep', 'pedal', 'lee']","[('rack', 0.03191491), ('request', 0.03191491), ('phillip', 0.03191491), ('I', 0.03191491), ('cycl', 0.03191491), ('daili', 0.03191491), ('keep', 0.03191491), ('bike', 0.03191491), ('basi', 0.021276591), ('assum', 0.021276591)]",rack,0.0319149
843,843,843,"['mari', 'It', 'OK', 'buy', 'carpet', 'shampooer', 'about', 'w2', 'would']","[('mari', 0.11111111), ('It', 0.11111111), ('OK', 0.11111111), ('buy', 0.11111111), ('carpet', 0.11111111), ('shampooer', 0.11111111), ('about', 0.11111111), ('w2', 0.11111111), ('would', 0.11111111)]",mari,0.1111111
844,844,844,"['In', 'energi', 'insight', 'wednesday', 'decemb', '13', '2000', 'In', 'energi', 'insight', 'today', 'blue', 'banner', 'subscrib', 'demandsid', 'manag', 'make', 'resurg', 'reliabl', 'issu', 'increas', 'demand', 'find', 'httpwwweinsightcom', 'In', 'energi', 'insight', '2000', 'red', 'banner', 'premiumpay', 'access', 'In', 'energi', 'insight', 'energi', 'servic', 'electr', 'deregul', 'spark', 'inform', 'technolog', 'revolut', 'In', 'energi', 'insight', 'fuel', 'ocean', 'wave', 'research', 'endless', 'sourc', 'electr', 'gener', 'also', 'read', 'latest', 'news', 'headlin', 'util', 'telecom', 'diversif', 'httpwwweinsightcom', 'market', 'brief', 'tuesday', 'decemb', '12', 'stock', 'close', 'chang', 'chang', 'djia', '1076827', '425', '04', 'DJ', '15', 'util', '38857', '22', '06', 'nasdaq', '293177', '833', '28', 'SP', '500', '137118', '90', '07', 'market', 'vol', 'close', 'chang', 'chang', 'amex', '000', '71436', '278330', '280', 'nasdaq', '000', '1920993', '5298830', '216', 'nyse', '000', '1079963', '1345670', '111', 'commod', 'close', 'chang', 'chang', 'crude', 'oil', 'nov', '2969', '019', '064', 'heat', 'oil', 'nov', '0961', '002', '221', 'nat', 'ga', 'henri', '8145', '127', '1347', 'palo', 'verd', 'nov', '200', '000', '000', 'cob', 'nov', '97', '000', '000', 'pjm', 'nov', '64', '000', '000', 'dollar', 'US', 'close', 'chang', 'chang', 'australia', '1847', '000', '016', 'canada', '1527', '000', '026', 'germani', 'dmark', '2226', '000', '018', 'euro', '08796', '000', '030', 'japan', 'en', '11150', '080', '072', 'mexico', 'NP', '947', '002', '021', 'UK', 'pound', '06906', '000', '058', 'foreign', 'indic', 'close', 'chang', 'chang', 'arg', 'merval', '42101', '391', '094', 'austr', 'all', 'ord', '324850', '370', '011', 'braz', 'bovespa', '1490602', '28193', '18562742', 'can', 'tse', '300', '934297', '23895', '24937591', 'germani', 'dax', '673359', '4893', '07214133', 'HK', 'hangseng', '153296', '7894', '05123133', 'japan', 'nikkei', '225', '1511464', '9894', '066', 'mexico', 'ipc', '582812', '000', '000', 'UK', 'ftse', '100', '639040', '201', '03', 'sourc', 'yahoo']","[('000', 0.04009481), ('chang', 0.025943657), ('energi', 0.016509566), ('In', 0.014151041), ('nov', 0.014151041), ('close', 0.014151041), ('insight', 0.014151041), ('decemb', 0.0070754807), ('electr', 0.0070754807), ('httpwwweinsightcom', 0.0070754807)]",000,0.0400948
845,845,845,"['slide', 'today', 'meet', 'attach']","[('slide', 0.25), ('today', 0.25), ('meet', 0.25), ('attach', 0.25)]",slide,0.2
846,846,846,"['ill', 'get', 'back', 'I', 'know', 'sent', 'financi', 'clinton', 'energyil', 'check', 'see', 'enough', 'In', 'meantim', 'possibl', 'show', 'indic', 'quot', 'I', 'ask', 'pleas', 'advis', 'georg', 'georg', 'rahal', 'manag', 'ga', 'trade', 'acn', 'power', 'inc', '7926', 'jone', 'branch', 'drive', 'suit', '630', 'mclean', 'VA', '221023303', 'phone', '7038934330', 'ext', '1023', 'fax', '7038934390', 'cell', '4432557699', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'monday', 'februari', '07', '2000', '554', 'PM', 'To', 'georgerahalacnpowercom', 'subject', 'Re', 'W', 'basi', 'quot', 'georg', 'can', 'pleas', 'call', 'credit', 'desk', '7138531803', 'they', 'receiv', 'financi', 'acn', 'power', 'thank', 'phillip', 'allen']","[('georg', 0.025806502), ('sent', 0.01935486), ('quot', 0.01935486), ('acn', 0.019354858), ('pleas', 0.019354858), ('I', 0.019354858), ('power', 0.019354858), ('financi', 0.019354858), ('monday', 0.012903225), ('2000', 0.012903225)]",georg,0.02580650
847,847,848,"['ill', 'get', 'back', 'I', 'know', 'sent', 'financi', 'clinton', 'energyil', 'check', 'see', 'enough', 'In', 'meantim', 'possibl', 'show', 'indic', 'quot', 'I', 'ask', 'pleas', 'advis', 'georg', 'georg', 'rahal', 'manag', 'ga', 'trade', 'acn', 'power', 'inc', '7926', 'jone', 'branch', 'drive', 'suit', '630', 'mclean', 'VA', '221023303', 'phone', '7038934330', 'ext', '1023', 'fax', '7038934390', 'cell', '4432557699', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'monday', 'februari', '07', '2000', '554', 'PM', 'To', 'georgerahalacnpowercom', 'subject', 'Re', 'W', 'basi', 'quot', 'georg', 'can', 'pleas', 'call', 'credit', 'desk', '7138531803', 'they', 'receiv', 'financi', 'acn', 'power', 'thank', 'phillip', 'allen']","[('georg', 0.025806502), ('quot', 0.01935486), ('acn', 0.019354858), ('sent', 0.019354858), ('pleas', 0.019354858), ('I', 0.019354858), ('power', 0.019354858), ('financi', 0.019354858), ('mailtophillipkallenenroncom', 0.012903225), ('2000', 0.012903225)]",georg,0.02580650
848,848,849,"['pleas', 'get', 'randi', 'resolv']","[('pleas', 0.25), ('get', 0.25), ('randi', 0.25), ('resolv', 0.25)]",pleas,0.2
849,849,850,"['georg', 'can', 'pleas', 'call', 'credit', 'desk', '7138531803', 'they', 'receiv', 'financi', 'acn', 'power', 'thank', 'phillip', 'allen']","[('receiv', 0.06666667), ('they', 0.06666667), ('phillip', 0.06666667), ('thank', 0.06666667), ('power', 0.06666667), ('acn', 0.06666667), ('financi', 0.06666667), ('georg', 0.06666667), ('credit', 0.06666667), ('call', 0.06666667)]",receiv,0.0666666
850,850,851,"['kim', 'doublecheck', 'juli', 'G', 'I', 'think', 'ok', 'pay', 'jan', 'demand', 'charg']","[('kim', 0.090909086), ('doublecheck', 0.090909086), ('juli', 0.090909086), ('G', 0.090909086), ('I', 0.090909086), ('think', 0.090909086), ('ok', 0.090909086), ('pay', 0.090909086), ('jan', 0.090909086), ('demand', 0.090909086)]",kim,0.09090908
851,851,852,"['I', 'think', 'steven', 'wolf', 'person', 'talk', 'move', 'kim', 'oling', 'differ', 'RC', 'code']","[('kim', 0.08333334), ('talk', 0.08333334), ('RC', 0.08333334), ('differ', 0.08333334), ('oling', 0.08333334), ('I', 0.08333334), ('move', 0.08333334), ('steven', 0.08333334), ('wolf', 0.08333334), ('think', 0.08333334)]",kim,0.0833333
852,852,853,"['still', 'issu']","[('still', 0.5), ('issu', 0.5)]",still,0.
853,853,854,"['I', 'revis', 'suppvendor', 'sheet', 'transfer', 'total', 'summari', 'sheet', 'pleas', 'review', 'let', 'know', 'mind', 'also', 'get', 'W2', 'form', 'tax', 'get', 'your', 'privat', 'free', 'email', 'httpwwwhotmailcom', 'jan00expensexl']","[('get', 0.06250001), ('sheet', 0.06250001), ('your', 0.04166666), ('form', 0.04166666), ('tax', 0.04166666), ('free', 0.04166666), ('privat', 0.04166666), ('email', 0.04166666), ('mind', 0.04166666), ('httpwwwhotmailcom', 0.04166666)]",get,0.0625000
854,854,855,"['12132000', '072207', 'AM', 'To', 'cc', 'subject', 'pete', 'energi', 'tech', 'F', 'Cl', 'support', '2900', 'resist', '3020', 'FG', 'Cl', 'spread', 'support', '25', 'pivot', '50', 'resist', '75', 'F', 'Ho', 'support', '9450', 'resist', '10000', 'FG', 'Ho', 'spread', 'support', '340', 'resiost', '470', 'F', 'Hu', 'support', '7500', 'resist', '7750', 'FG', 'Hu', 'spread', 'support', '90', 'resist', '25', 'F', 'Ng', 'support', '690', 'pivot', '795', 'resist', '900', 'FG', 'Ng', 'spread', 'support', '11', 'resist', '30', 'for', 'see', 'wwwenrgcom']","[('support', 0.0833335), ('resist', 0.0740742), ('FG', 0.046296343), ('F', 0.046296343), ('spread', 0.046296343), ('Cl', 0.02777778), ('pivot', 0.02777778), ('25', 0.02777778), ('Hu', 0.02777778), ('Ho', 0.02777778)]",support,0.083333
855,855,856,"['jim', 'updat', 'curv', 'sent', 'later', '11', 'monday', '27', 'I', 'want', 'keith', 'involv', 'process', 'He', 'today', 'sorri', 'slow', 'turnaround', 'phillip']","[('keith', 0.052631583), ('want', 0.052631583), ('turnaround', 0.052631583), ('slow', 0.052631583), ('sorri', 0.052631583), ('today', 0.052631583), ('He', 0.052631583), ('process', 0.052631583), ('involv', 0.052631583), ('jim', 0.052631583)]",keith,0.05263158
856,856,857,"['tara', 'thi', 'note', 'document', 'approv', 'grant', 'execut', 'id', 'west', 'cash', 'trader', 'thank', 'help', 'phillip']","[('west', 0.07142858), ('execut', 0.07142858), ('help', 0.07142858), ('thank', 0.07142858), ('trader', 0.07142858), ('cash', 0.07142858), ('tara', 0.07142858), ('id', 0.07142858), ('note', 0.07142858), ('approv', 0.07142858)]",west,0.0714285
857,857,858,"['file', 'I', 'show']","[('file', 0.33333334), ('I', 0.33333334), ('show', 0.33333334)]",file,0.3333333
858,858,859,"['vishal', 'resign', 'today']","[('vishal', 0.33333334), ('resign', 0.33333334), ('today', 0.33333334)]",vishal,0.3333333
859,859,860,"['juli', 'the', 'number', 'januari', 'actual', 'flow', 'X', 'ga', 'daili', 'spread', '463000', 'actual', 'flow', 'X', 'index', 'spread', '543000', 'jan', 'valu', 'origin', 'bid', '1750000', 'estim', 'cost', 'unwind', 'hedg', '1000000', 'base', 'number', 'I', 'suggest', 'offer', 'pay', 'least', '500000', '1500000', 'I', 'want', 'input', 'negoti', 'El', 'paso', 'Do', 'push', 'actual', 'valu', 'season', 'shape', 'unwind', 'cost', 'phillip']","[('actual', 0.043478306), ('X', 0.03260871), ('flow', 0.03260871), ('spread', 0.03260871), ('I', 0.03260871), ('unwind', 0.03260871), ('number', 0.03260871), ('cost', 0.03260871), ('valu', 0.03260871), ('1500000', 0.021739125)]",actual,0.04347830
860,860,861,"['01242000', '0821', 'AM', 'mlenhart', 'mlenhartmailev1net', '01232000', '063413', 'PM', 'pleas', 'respond', 'mlenhartmailev1net', 'To', 'matthew', 'lenharthouectect', 'mmitchmmsncom', 'cc', 'subject', 'dopewar', 'dopewarsex']","[('mlenhartmailev1net', 0.081081085), ('To', 0.054054048), ('pleas', 0.054054048), ('dopewar', 0.054054048), ('subject', 0.054054048), ('cc', 0.054054048), ('mmitchmmsncom', 0.054054048), ('lenharthouectect', 0.054054048), ('matthew', 0.054054048), ('01242000', 0.054054048)]",mlenhartmailev1net,0.08108108
861,861,862,"['Re', 'your', 'livingcom', 'inquiri', 'thank', 'inquiri', 'pleas', 'creat', 'account', 'assist', 'effect', 'futur', 'Go', 'httpwwwlivingcomutilloginjhtml', 'I', 'select', 'piec', 'might', 'work', 'To', 'view', 'simpli', 'click', 'follow', 'url', 'I', 'hope', 'help', 'area', 'rug', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcispenj600282x3', '29', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcccon300703928', '2x329', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcmerilandneedl', '284x629', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcpand5921092289', '5x13529', 'sofa', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcsfup3923a', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle583slp', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle359slp', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcjjhy200104', 'chair', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle566inc', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle711rcl', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcclle686', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcswoo46137', 'occasion', 'tabl', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcmagp31921', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcpula623102', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlccasr01cen906', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlccasr02cen001', 'dine', 'set', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcvilacomp001', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlcsitcfh402chhr', 'httpwwwlivingcomshoppingitemitemjhtmlproductidlccoch24854', 'best', 'regard', 'erika', 'designadvicelivingcom', 'PS', 'check', 'januari', 'clearanc', 'httplivingcomsalesjanuaryclearancejhtml', 'valentin', 'day', 'gift', 'httplivingcomshoppinglistlistjhtmltype2011salevalentin', 'origin', 'messag', 'from', 'pallenenroncom', 'mailtopallenenroncom', 'sent', 'monday', 'januari', '17', '2000', '520', 'PM', 'To', 'designadvicelivingcom', 'subject', 'choos', 'style', 'I', 'plan', 'build', 'hous', 'texa', 'hillcountri', 'the', 'exterior', 'farmhous', 'style', 'porch', 'front', 'back', 'I', 'consid', 'follow', 'featur', 'stain', 'score', 'concret', 'floor', 'open', 'livingdiningkitchen', 'concept', 'lot', 'window', 'home', 'offic', '4', 'bedroom', 'upstair', 'I', 'want', 'relax', 'comfort', 'style', 'exactli', 'countri', 'can', 'help', 'addit', 'person', 'info', 'ID', '3052970', 'email', 'pallenenroncom', 'firstnam', 'phillip', 'lastnam', 'allen']","[('I', 0.022472026), ('style', 0.01498132), ('januari', 0.011235973), ('To', 0.011235973), ('follow', 0.011235973), ('designadvicelivingcom', 0.011235973), ('inquiri', 0.011235973), ('pallenenroncom', 0.011235973), ('help', 0.011235973), ('PS', 0.007490634)]",I,0.02247202
862,862,863,"['will', 'I', 'didnt', 'get', 'review', 'I', 'give', 'feedback', 'tomorrow', 'morn', 'phillip']","[('I', 0.14285715), ('will', 0.09523809), ('didnt', 0.09523809), ('get', 0.09523809), ('review', 0.09523809), ('give', 0.09523809), ('feedback', 0.09523809), ('tomorrow', 0.09523809), ('morn', 0.09523809), ('phillip', 0.09523809)]",I,0.1428571
863,863,864,"['tara', 'pleas', 'make', 'follow', 'chang', 'ftwest', 'chang', 'master', 'person', 'phillip', 'allen', 'keith', 'holst', 'imwestchang', 'master', 'person', 'bob', 'shire', 'phillip', 'allen', 'mock', 'exist', 'profil', 'pleas', 'make', 'chang', '11700', 'noon', 'thank', 'phillip']","[('phillip', 0.07843141), ('chang', 0.07843141), ('master', 0.058823537), ('make', 0.058823537), ('pleas', 0.058823537), ('allen', 0.058823537), ('person', 0.058823537), ('profil', 0.039215673), ('mock', 0.039215673), ('11700', 0.039215673)]",phillip,0.0784314
864,864,865,"['susan', 'I', 'receiv', 'enrol', 'confirm', 'class', 'I', 'sign', 'Is', 'mistak', 'phillip', 'allen']","[('I', 0.13043483), ('susan', 0.08695652), ('receiv', 0.08695652), ('enrol', 0.08695652), ('confirm', 0.08695652), ('class', 0.08695652), ('sign', 0.08695652), ('Is', 0.08695652), ('mistak', 0.08695652), ('phillip', 0.08695652)]",I,0.1304348
865,865,866,"['transwestern', 'pipelin', 'Co', 'post', 'new', 'notic', 'sinc', 'last', 'check', '12122000', '64801', 'PM', 'newest', 'notic', 'look', 'like', 'capac', 'constraint', 'dec', '12', '2000', '924pm', 'dec', '13', '2000', '900am', 'dec', '14', '2000', '859am', '2236', 'alloc', 'san', 'juan', 'later', 'pleas', 'click', 'follow', 'go', 'web', 'site', 'detail', 'httpiosetsenroncominfopostingssharedetnoncriticalnoticeaspcompani', '60']","[('dec', 0.04819282), ('2000', 0.04819282), ('notic', 0.036144596), ('juan', 0.024096385), ('click', 0.024096385), ('14', 0.024096385), ('859am', 0.024096385), ('2236', 0.024096385), ('alloc', 0.024096385), ('san', 0.024096385)]",dec,0.0481928
866,866,867,"['jeffbrenda', 'pleas', 'author', 'follow', 'product', 'approv', 'custom', 'expect', 'see', '114', 'pge', 'citygatedaili', 'physic', 'bom', 'physic', 'monthli', 'index', 'physic', 'malindaili', 'physic', 'bom', 'physic', 'monthli', 'index', 'physic', 'keystonemonthli', 'index', 'physic', 'socal', 'borderdaili', 'physic', 'bom', 'physic', 'monthli', 'index', 'physic', 'pge', 'topockdaili', 'physic', 'bom', 'physic', 'monthli', 'index', 'physic', 'pleas', 'approv', 'forward', 'dale', 'neuner', 'thank', 'phillip']","[('physic', 0.18181843), ('index', 0.077922136), ('bom', 0.064935096), ('monthli', 0.064935096), ('pge', 0.03896103), ('pleas', 0.03896103), ('approv', 0.03896103), ('socal', 0.025974004), ('thank', 0.025974004), ('keystonemonthli', 0.025974004)]",physic,0.1818184
867,867,868,"['call', 'I', 'cant', 'get']","[('call', 0.25), ('I', 0.25), ('cant', 0.25), ('get', 0.25)]",call,0.2
868,868,869,"['forecast', 'socal', 'demandrecstorag', 'look', 'like', 'need', 'ga', 'ehrenbergth', 'swing', 'receipt', 'point', '98', '99']","[('ehrenbergth', 0.07692308), ('ga', 0.07692308), ('98', 0.07692308), ('point', 0.07692308), ('receipt', 0.07692308), ('swing', 0.07692308), ('forecast', 0.07692308), ('demandrecstorag', 0.07692308), ('like', 0.07692308), ('socal', 0.07692308)]",ehrenbergth,0.0769230
869,869,870,"['jeffbrenda', 'pleas', 'author', 'forward', 'tara', 'sweitzer', 'pleas', 'set', 'follow', 'abil', 'setup', 'manag', 'product', 'stack', 'manag', 'steve', 'south', 'tori', 'kuykendal', 'jani', 'tholt', 'frank', 'ermi', 'matt', 'lenhart', 'note', 'the', 'type', 'product', 'trader', 'manag', 'le', '1', 'month', 'physic', 'west', 'also', 'pleas', 'grant', 'access', 'password', 'enabl', 'trader', 'execut', 'book', 'book', 'trade', 'eol', 'If', 'possibl', 'restrict', 'execut', 'author', 'product', 'first', '3', 'month', 'thank', 'phillip', 'allen']","[('pleas', 0.0366973), ('product', 0.0366973), ('manag', 0.0366973), ('author', 0.027522953), ('trader', 0.027522951), ('book', 0.027522951), ('execut', 0.027522951), ('month', 0.027522951), ('physic', 0.01834862), ('enabl', 0.01834862)]",pleas,0.036697
870,870,871,"['mari', 'receiv', 'email', '17', 'messag', 'pleas', 'tri', 'phillip']","[('mari', 0.125), ('receiv', 0.125), ('email', 0.125), ('17', 0.125), ('messag', 0.125), ('pleas', 0.125), ('tri', 0.125), ('phillip', 0.125)]",mari,0.12
871,871,872,"['Hi', 'We', 'recent', 'face', 'question', 'concern', 'cement', 'floor', 'finish', 'here', 'found', 'oringin', 'plan', 'stamp', 'pigment', 'color', 'ad', 'cement', 'plant', 'stain', 'accent', 'highlight', 'simul', 'sautillo', 'tile', 'our', 'project', 'rather', 'larg', '2900', 'sq', 'ft', 'SB', 'hous', '1800', 'sq', 'ft', 'porch', 'surround', 'lot', 'cement', 'approx', '160', 'sq', 'yd', 'after', 'look', 'cost', 'chang', 'mind', 'rather', 'quickli', 'labor', 'stamp', 'crew', '250000', 'davi', 'color', 'stain', '4lb', 'per', 'yd', 'x', '100', 'yd', 'x', '18', 'lb', '720000', 'these', 'beyond', 'cost', 'concret', 'actual', 'result', 'took', 'truck', 'trailer', 'mexico', 'handpick', 'sautillo', 'tile', 'insid', 'hous', 'chang', 'color', 'cement', 'porch', '1lb', 'per', 'yd', 'mix', 'color', 'ad', 'overrun', 'tile', 'left', 'stringer', 'porch', 'accent', 'acid', 'etch', 'stain', 'tile', 'transport', '300000', 'labor', 'mastic', 'beer', 'tile', 'set', '140000', 'acid', 'stain', 'porch', '35000', 'davi', 'pigment', '15', 'x', '40', 'yd', '60000', 'I', 'get', 'info', 'stain', 'like', 'I', 'order', 'compani', 'web', 'cant', 'rememb', 'hand', 'I', 'order', 'sampl', 'kit', '3500', '7', 'color', 'mix', 'match', 'result', 'want', 'It', 'easi', 'work', 'much', 'like', 'paint', 'water', 'color', 'larg', 'scale', 'hope', 'help', 'matt', 'kizziah']","[('color', 0.025735417), ('stain', 0.02205892), ('yd', 0.02205892), ('tile', 0.02205892), ('porch', 0.018382415), ('cement', 0.018382415), ('I', 0.014705915), ('sq', 0.014705915), ('x', 0.014705915), ('per', 0.011029419)]",color,0.02573541
872,872,873,"['paa27941', 'sender', 'ownerstrawbalecrestorg', 'preced', 'bulk', 'the', '1999', 'hemp', 'year', 'review', 'the', 'millennium', 'readi', 'issu', '7', 'hemp', 'commerc', 'farm', 'report', 'hcfr', 'onlin', 'start', 'new', 'year', 'hemp', 'good', 'read', 'special', 'issu', 'hcfr', '7', 'found', 'onlin', 'hemphasiscom', 'globalhempcom', 'hemp', 'cyberfarmcom', 'httpwwwhemphasiscom', 'httpwwwglobalhempcommediamagazineshcfr1999decembertocshtml', 'httpwwwhempcyberfarmcompstindexhtml', 'thi', 'issu', 'also', 'post', 'soon', 'possibl', 'httpwwwhemptradecomhcfr', 'httpwwwhemppagescomhwmaghtml', 'IN', 'thi', 'issu', 'part', 'one', 'editori', 'To', 'editor', 'the', 'year', 'review', 'the', 'top', 'stori', 'genet', 'modifi', 'hemp', 'part', 'two', 'harvest', 'notebook', 'part', 'iii', '1', 'poor', 'organ', 'farm', 'practic', 'produc', 'poor', 'yield', '2', 'hemp', 'report', 'updat', 'northern', 'ontario', 'performancebas', 'industri', 'hemp', 'fibr', 'will', 'drive', 'industri', 'procur', '21st', 'centuri', 'part', 'II', 'part', 'three', 'benchmark', 'studi', 'hemp', 'use', 'commun', 'strategi', 'By', 'number', 'the', 'hcfr', 'list', 'histor', 'hemp', 'highlight', 'associ', 'new', 'northern', 'hemp', 'gather', 'hazelton', 'BC', 'upcom', 'industri', 'event', 'guelph', 'organ', 'show', 'paperweek', '2000', 'hemp', '2000', 'santa', 'cruz', 'industri', 'hemp', 'expo']","[('hemp', 0.056522056), ('part', 0.026087048), ('the', 0.026087048), ('issu', 0.021739192), ('industri', 0.021739192), ('hcfr', 0.017391337), ('year', 0.017391337), ('onlin', 0.013043483), ('thi', 0.013043483), ('farm', 0.013043483)]",hemp,0.05652205
873,873,874,"['4dde116dbca1d3118b130080c840baad02cd53ppimsservicesmcmasterca', 'from', 'wesko', 'georg', 'gweskoppimsservicesmcmasterca', 'To', 'strawbalecrestorg', 'subject', 'radiant', 'heat', 'date', 'tue', '4', 'jan', '2000', '112829', '0500', 'mimevers', '10', 'xmailer', 'internet', 'mail', 'servic', '55265021', 'contenttyp', 'multipartaltern', 'nextpart00101bf56d0c002317', 'contenttyp', 'textplain', 'charsetiso88591', 'sender', 'ownerstrawbalecrestorg', 'preced', 'bulk', 'there', 'number', 'excel', 'site', 'radiant', 'heat', 'includ', 'magazin', 'fine', 'homebuild', 'junejuli', '1992', 'issu', 'radiant', 'panel', 'associ', 'ashra', 'chapter', '6', 'radiantecradi', 'heat', 'system', 'radiantec', 'follow', 'web', 'site', 'httpwwwtwapanelscah', 'indexhtml', 'the', 'good', 'start', 'site', 'number', 'good', 'link', 'let', 'know', 'make', 'search']","[('radiant', 0.029197127), ('site', 0.029197127), ('heat', 0.029197127), ('contenttyp', 0.02189783), ('good', 0.02189783), ('number', 0.02189783), ('1992', 0.014598537), ('associ', 0.014598537), ('panel', 0.014598537), ('issu', 0.014598537)]",radiant,0.02919712
874,874,875,"['receiv', 'file', 'It', 'work', 'good', 'job']","[('receiv', 0.16666667), ('file', 0.16666667), ('It', 0.16666667), ('work', 0.16666667), ('good', 0.16666667), ('job', 0.16666667)]",receiv,0.1666666
875,875,876,"['pleas', 'give', 'call', '5038052117', 'I', 'need', 'discu', 'someth']","[('pleas', 0.125), ('give', 0.125), ('call', 0.125), ('5038052117', 0.125), ('I', 0.125), ('need', 0.125), ('discu', 0.125), ('someth', 0.125)]",pleas,0.12
876,876,877,"['In', 'messag', 'date', '1400', '31850', 'PM', 'eastern', 'standard', 'time', 'mccormickelkusmanfredicom', 'write', 'there', '3', 'basic', 'method', 'concret', 'color', '1', 'dri', 'addit', 'concret', 'mix', 'prior', 'pour', '2', 'chemic', 'stain', 'appli', 'newold', 'concret', 'surfac', 'beautiful3', 'dryshak', 'fresh', 'concret', 'plu', 'one', 'I', 'post', 'use', 'exterior', 'stain', 'I', 'use', 'expens', 'chemic', 'stuff', 'I', 'bought', 'compani', 'calif', 'I', 'saw', 'fine', 'homebuild', 'not', 'work', 'I', 'use', 'variat', 'malcolm', 'well', 'recommend', 'underground', 'hous', 'book', 'linda']","[('I', 0.04878059), ('concret', 0.04065048), ('use', 0.03252037), ('stain', 0.024390256), ('chemic', 0.024390256), ('expens', 0.016260156), ('post', 0.016260156), ('bought', 0.016260156), ('stuff', 0.016260156), ('plu', 0.016260156)]",I,0.0487805
877,877,878,"['what', 'mari', 'write', 'stage', 'miss', 'I', 'sent', '2', 'email', 'mayb', 'mari', 'stalk', 'gari']","[('mari', 0.12000002), ('2', 0.080000006), ('I', 0.080000006), ('stalk', 0.080000006), ('mayb', 0.080000006), ('email', 0.080000006), ('what', 0.080000006), ('write', 0.080000006), ('stage', 0.080000006), ('sent', 0.080000006)]",mari,0.1200000
878,878,879,"['first', 'one', 'free', 'So', 'next', 'thousand', 'you', 'know', 'true', 'video', 'game', 'addict', 'sure', 'could', 'trap', 'free', 'game', 'centiped', 'kick', 'price', 'your', 'hook', 'but', 'that', 'shockwavecom', 'oper', 'shockmachin', 'greatest', 'thing', 'sinc', 'needl', 'exchang', 'free', 'classic', 'arcad', 'game', 'who', 'need', 'quarter', 'get', 'arcad', 'classic', 'shockwavecom', 'stick', 'em', 'shockmachin', 'play', 'offlin', 'anytim', 'want', 'httpshockwave1m0netmsasph430297053x351629', 'lick', 'frog', 'your', 'get', 'date', 'friday', 'night', 'but', 'dont', 'care', 'youv', 'got', 'date', 'frogger', 'thi', 'frog', 'wont', 'turn', 'handsom', 'princess', 'sure', 'bring', 'back', 'great', 'memori', 'hop', 'arcad', 'time', 'save', 'quarter', 'laundri', 'which', 'might', 'increas', 'potenti', 'date', 'saturday', 'httpshockwave1m0netmsasph430297053x351630', 'busi', 'meet', 'missil', 'command', 'you', 'decid', 'take', 'offlin', 'No', 'horribl', 'meet', 'bo', 'missil', 'command', 'shockmachin', 'beauti', 'featur', 'play', 'without', 'hook', 'internet', 'grab', 'game', 'shockwavecom', 'save', 'hard', 'drive', 'play', 'offlin', 'the', 'missil', 'fall', 'are', 'readi', 'save', 'world', 'httpshockwave1m0netmsasph430297053x351631', 'I', 'want', 'take', 'you', 'higher', 'wan', 'na', 'get', 'high', 'here', 'chanc', 'home', 'shockmachin', 'let', 'play', 'favorit', 'arcad', 'game', 'straight', 'comput', 'it', 'chanc', 'crack', 'old', 'high', 'score', 'get', 'higher', 'centiped', 'get', 'bug', 'httpshockwave1m0netmsasph430297053x351632', 'soul', 'sale', 'the', '80', 'may', 'left', 'mani', 'good', 'memori', 'least', 'still', 'atari', 'machin', 'what', 'you', 'sold', 'set', 'golf', 'club', 'get', 'soul', 'back', 'man', 'super', 'breakout', 'aliv', 'well', 'wait', 'shockmachin', 'now', 'find', 'record', 'player', 'loverboy', 'album', 'httpshockwave1m0netmsasph430297053x351633', 'play', 'arcad', 'classic', 'shockmachin', 'easiest', 'way', 'rememb', 'day', 'didnt', 'work', 'If', 'havent', 'alreadi', 'get', 'free', 'machin', 'httpshockwave1m0netmsasph430297053x351640', 'shockwavecom', 'team', 'httpshockwave1m0netmsasph430297053x351634', 'remov', 'from', 'mail', 'list', 'instruct', 'We', 'chang', 'unsubscrib', 'instruct', 'reliabl', 'method', 'apolog', 'previou', 'unsubscrib', 'attempt', 'take', 'effect', 'while', 'wish', 'continu', 'tell', 'new', 'shockwavecom', 'stuff', 'want', 'unsubscrib', 'pleas', 'click', 'follow', 'link', 'httpshockwave1m0netmushksaspepallen40enroncom', '9001', 'att1htm']","[('get', 0.018735526), ('shockmachin', 0.016393574), ('game', 0.014051622), ('arcad', 0.014051622), ('shockwavecom', 0.014051622), ('play', 0.014051622), ('you', 0.011709669), ('free', 0.011709669), ('unsubscrib', 0.009367718), ('classic', 0.009367718)]",get,0.01873552
879,879,880,"['naomi', 'the', 'two', 'analyst', 'I', 'contact', 'matt', 'lenhart', 'vishal', 'apt', 'matt', 'repres', 'jeff', 'shankman', 'vishal', 'join', 'group', 'octob', 'He', 'power', 'trade', 'group', 'first', '9', 'month', 'I', 'spoke', 'jim', 'fallon', 'agre', 'excel', 'categori', 'I', 'dont', 'want', 'vishal', 'go', 'unrepres', 'sinc', 'chang', 'group', 'mid', 'year', 'call', 'questionsx37041', 'phillip', 'allen', 'west', 'ga', 'trade']","[('group', 0.04347831), ('vishal', 0.04347831), ('I', 0.043478303), ('trade', 0.032608714), ('matt', 0.032608714), ('go', 0.021739127), ('want', 0.021739127), ('dont', 0.021739127), ('categori', 0.021739127), ('mid', 0.021739127)]",group,0.0434783
880,880,881,"['imag', 'yahoo', 'sent', 'email', 'yahoo', 'account', 'inform', '20', 'indic', 'wish', 'receiv', 'special', 'offer', 'If', 'want', 'to20', 'receiv', 'mail', 'yahoo', 'deliv', 'unsubscrib', 'clickin', 'g20', 'you', 'subscrib', 'pallenectenroncom', 'masthead09', 'yahoo20', '09', '09', 'may', '2001', 'greet', 'here', 'look', 'thing', 'happen', 'yahoo', 'may', 'new', 'featur', 'servic', 'imag', 'find', 'last', 'minut', 'mother', 'day', 'gift', 'dont', 'panic', 'havent', 'found', 'th', 'e20', 'perfect', 'gift', 'mom', 'visit', 'last', 'minut', 'mother', 'day', 'gift', 'center', 'on20', 'yahoo', 'shop', 'youll', 'find', 'outstand', 'merchant', 'guarante', 'deliveri', 'in20', 'time', 'mom', 'special', 'day', 'imag', 'got', 'stuff', 'sell', 'it', 'great', 'time', 'tri', 'auction', 'everi', 'time', 'you20', 'success', 'sell', 'item', 'yahoo', 'auction', 'june', '4', 'youll', '20', 'enter', 'yahoo', 'auction', '2', 'million', 'sweepstak', 'chanc', 'wi', 'n20', 'one', 'twenti', '100000', 'prize', 'packag', 'busi', '20', 'each', 'prize', 'packag', 'includ', '0f07a', 'link', 'yahoo', 'front', 'page', 'busi', 'auction', '0f07a', 'yahoo', 'digit', 'camera', 'mous', 'keyboard20', '0f0785000', 'onlin', 'advertis', 'across', 'yahoo', '0f07a', 'free', 'yahoo', 'store', 'six', 'month', '0f07a', 'oneyear', 'registr', 'busi', 'domain', 'name', 'just', 'list', 'sell', 'chanc', 'win', 'pleas', 'see', 'offici', 'rule', 'f', 'or20', 'full', 'sweepstak', 'detail', 'seller', 'tip', 'page', 'auction20', 'selling20', 'spotlight', 'realtim', 'quot', 'image20', 'make', 'better', 'invest', 'decis', 'today', 'volatil', 'market', 'subscrib', '20', 'yahoo', 'realtim', 'packag', '995month', 'youll', 'receiv', 'realtim', '20', 'quot', 'break', 'news', 'live', 'market', 'coverag', 'use', 'markettrack', '20', 'monitor', 'portfolio', 'power', 'tool', 'stream', 'continu', 'market20', 'updat', 'live', 'desktop', 'you', 'easili', 'access', 'realtim', 'featur', 's20', 'yahoo', 'financ', 'My', 'yahoo', 'via', 'mobil', 'phone', 'pager', 'pda', '20', 'let', 'talk', 'about', 'imag', 'safe', 'surf', 'whole', 'famili', 'yahooligan', 'yahoo', 'web', 'guid', 'fo', 'r20', 'kid', 'directori', 'kidappropri', 'site', 'screen', 'staff', 'of20', 'experienc', 'educ', '20', 'kid', 'fun', 'daili', 'joke', 'news', 'stori', 'onlin', 'game', 'ask20', 'earl', 'check', 'parent', 'guid', 'tip', 'famili', 'use20', 'yahooligan', 'internet', '20', 'yahooligan', 'messeng', 'safe', 'way', 'kid', 'chat', 'onlin', 'real', 'time', '20', 'friend', 'On', 'yahooligan', 'messeng', 'peopl', 'child', 's20', 'friend', 'list', 'send', 'messag', 'thi', 'mean', 'dont', 'worri', '20', 'might', 'tri', 'contact', 'child20', '0909', '0909', '0909short', 'take', '0909', '0909', '09090f07', '0909mother', 'day', 'greet', 'send', 'mom', 'onlin', 'card', 'may', '13', 'Do', 'nt20', 'forget', '09090f07', '0909golf', 'handicap', 'tracker', 'track', 'golf', 'game', 'summer', 'it', 'free', 'from20', 'yahoo', 'sport', '09090f07', '0909buzz', 'index', 'My', 'yahoo', 'newest', 'modul', 'My', 'yahoo', 'present', 'aily20', 'look', 'what', 'hot', 'televis', 'movi', 'music', 'sport', 'follow', 'mover', '20', 'leader', 'person', 'yahoo', 'page', '0909', '0909', '0909', '0909', '0909tip', 'trick', '0909', '0909', '0909', '0909stay', 'alert', 'yahoo', 'alert', 'provid', 'inform', 'that', 'essenti', 'you20', 'deliv', 'right', 'email', 'yahoo', 'messeng', 'mobil', 'devic', 'set', '20', 'alert', 'news', 'stock', 'quot', 'auction', 'updat', 'sport', 'score', '0909', '0909stay', 'inform', 'view', 'mostfrequ', 'email', 'photo', 'stori', 'f', 'rom', 'the20', 'last', 'six', 'hour', 'yahoo', 'new', 'look', 'someth', 'offbeat', 'dont', 'mi', 'ss20', 'full', 'coverag', 'fyi', '0909', '0909stay', 'cool', 'weather', 'forecast', 'area', 'My', 'yahoo', 'email', 'on20', 'mobil', 'devic', '0909', '0909', '0909further', 'read', '0909', '0909', '09090f07', '0909help', 'central', '09090f07', '0909more', 'yahoo', '09090f07', '0909what', 'new', 'web', '09090f07', '0909privaci', 'center', '0909imag', 'copyright', '2001', 'yahoo', 'inc', 'yahoo', 'tri', 'send', 'relev', 'offer', 'base', 'yahoo20', 'account', 'inform', 'interest', 'use', 'yahoo', 'yahoo', 'us', 'web', '20', 'beacon', 'htmlbase', 'email', 'includ', 'yahoo', 'deliv', 'messagesto', 'lear', 'n20', 'yahoo', 'use', 'person', 'inform', 'pleas', 'read', 'privacy20', 'polici', 'If', 'previous', 'unsubscrib', 'yahoo', 'deliv', '20', 'receiv', 'mail', 'pleas', 'note', 'take', 'approxim', 'five', 'busin', 's20', 'day', 'process', 'request', 'for', 'assist', 'unsubscrib', 'yo', 'u20', 'may', 'contact', 'yahoo', 'deliv', 'repres', 'email', 'click']","[('yahoo', 0.04044208), ('0909', 0.02205927), ('20', 0.019608228), ('09090f07', 0.00980406), ('email', 0.008578541), ('inform', 0.00735302), ('auction', 0.00735302), ('day', 0.00735302), ('deliv', 0.00735302), ('yahooligan', 0.0061275014)]",yahoo,0.0404420
881,881,882,"['dear', 'energi', 'insight', 'subscribersif', 'readthi', 'version', '20', 'energi', 'insight', 'daili', 'emailpleas', 'click', 'link20', 'httppublicresdatacomessentialsuserprefaspmodule3denand', 'chang', 'your20', 'person', 'preferencesto', 'reflect', 'plain', 'text', 'email', 'rather', 'html', 'emailtha', 'nk20', 'patienceif', 'question', 'feel', 'free', 'contact', 'u', '20', '18004242908', '17205485700', 'outsid', 'US', 'email', 'us20', 'custservftenergycom', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', 'imag', '09', '09', '09imag', '09imag', '09imag', '09imag', '09imag', '09imag', '09imag', '09imag', '09imag', '09imag', '09imag', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09updat', 'may', '15', '2001', '09', '09', '09', '09', '09imag', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09', '09', '09imag', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09texa', 'put', 'reliabl', 'rule', 'pace', '09the', 'texa', 'public', 'util', 'commiss', 'puc', 'recent', 'approv', 'new', 'reliabi', 'lity20', 'rule', 'state', 'main', 'power', 'grid', 'the', 'goal', 'scrutin', 'rules20', 'govern', 'deregul', 'market', 'see', 'well', 'work', '20', 'find', 'best', 'rout', 'electr', 'reliabl', 'council', 'texa', '20', 'ercot', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09', '09capit', 'market', 'love', 'energyrel', 'firm', '09energi', 'compani', 'domin', 'stock', 'offer', 'ipo', '09', '09gener', 'garner', 'attent', 'money', '09', '09good', 'time', 'bound', 'end', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09mollusk', 'creat', 'mayhem', 'power', 'plant', '09cost', 'high', 'fight', 'zebra', 'mussel', '09', '09author', 'warn', 'damag', 'invad', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09imag', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09imag', '09', '09', '09', '09', '09', '09', '09ga', 'use', 'power', 'gener', 'level', '2000', '09coal', 'still', 'fuel', 'choic', '09', '09valu', 'balancedfuel', 'portfolio', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09imag', '09', '09', '09imag', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', '09florida', 'power', 'outlin', 'benefit', 'lat', 'year01', 'merger', '09go', 'full', 'stori', '09', '09nstar', 'file', 'ferc', 'consum', 'protect', 'order', '09go', 'full', 'stori', '09', '09cpuc', 'set', 'approv', 'plan', 'repay', 'state', 'power', 'buy', '09go', 'full', 'stori', '09', '09london', 'electricity01', 'bid', 'seeboard', 'reject', 'report', 'say', '09go', 'full', 'stori', '09', '09tennesse', 'ga', 'announc', 'open', 'season', 'connexion', 'project', '09go', 'full', 'stori', '09', '09avista', 'name', 'ceo', 'eli', 'chairman', '09go', 'full', 'story20', '09', '09kerrmcge', 'announc', '125b', 'deal', '09go', 'full', 'stori', '09', '09utilitycom', 'refund', '70000', 'Pa', 'custom', '09go', 'full', 'stori', '09', '09conoco', 'build', '75m', 'gastoliquid', 'demonstr', 'plant', '09go', 'full', 'stori', '09', '09dpl', 'add', '160', 'MW', 'ohio', '2002', '09go', 'full', 'stori', '09', '09', '09to', 'view', 'today', 'execut', 'new', 'headlines20', '09click', 'here20', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09imag', '09imag', '09imag', '09', '09', '09', '09', '09', '09', '09', '09', '09imag', '09imag', '09', '09', 'copyright', '2001', 'FT', 'energi', 'all', 'right', 'reserv', 'FT', 'financia', 'l20', 'time', 'trademark', 'the', 'financi', 'time', 'ltd', '20', '09', '09', '09', '09market', 'brief', '09', '09monday', 'may', '14', '09', '09stock', '09close', '09chang', '09', 'chang', '09djia', '091087733', '0956020', '09052', '09dj', '15', 'util', '0939104', '094420', '09114', '09nasdaq', '09208192', '092551', '09121', '09sp', '500', '09124892', '093320', '09026', '09', '09', '09', '09', '09market', 'vol', '09close', '09chang', '09', 'chang', '09amex', '000', '0981841', '0995830', '091048', '09nasdaq', '000', '091339184', '09921820', '09644', '09nyse', '000', '09853420', '09446640', '09497', '09', '09', '09', '09', '09commod', '09close', '09chang', '09', 'chang', '09crude', 'oil', 'jun', '092881', '0902620', '09091', '09heat', 'oil', 'jun', '0907525', '090008', '09105', '09nat', 'ga', 'henri', '094435', '09015720', '09367', '09palo', 'verd', 'jun', '0936500', '0900020', '09000', '09cob', 'jun', '0932000', '09500', '09154', '09pjm', 'jun', '096200', '0900020', '09000', '09', '09', '09', '09', '09dollar', 'US', '09close', '09chang', '09', 'chang', '09australia', '20', '091927', '09001320', '09068', '09canada', '20', '091552', '09000120', '09006', '09germani', 'dmark20', '092237', '09000520', '09022', '09euro20', '0908739', '090001', '09016', '09japan', 'en20', '0912330', '09070020', '09057', '09mexico', 'NP', '09916', '090040', '09043', '09uk', 'pound', '20', '0907044', '0900004', '09006', '09', '09', '09', '09', '09foreign', 'indic', '09close', '09chang', '09', 'chang', '09arg', 'merval', '0941560', '09383', '09091', '09austr', 'all', 'ord', '09331920', '09710', '09021', '09braz', 'bovespa', '091423694', '0925626', '09177', '09can', 'tse', '30020', '098010', '091367', '09017', '09germani', 'dax', '09606468', '097634', '09124', '09hk', 'hangseng', '091325917', '0937744', '09277', '09japan', 'nikkei', '22520', '091387302', '0917090', '09122', '09mexico', 'ipc20', '09604203', '096833', '09112', '09uk', 'ftse', '100', '09569050', '0920630', '09350', '09', '09', '09', '09', '09', '09', '09sourc', 'yahoo', 'tradingdaycom', '09', '09', '0909', '0909', '0909', '0909', '0909', '0909', '0909', '0909imag', '0909imag', '0909imag', '0909imag', '0909imag', '0909', '0909imag', '0909', '0909', '0909', '0909', '0909', '0909', '0909imag', '0909', '0909imag', '0909', '0909imag', '0909', '0909advertis', 'energi', 'insight20', '0909', '0909imag', '0909', '0909', '0909', '09090920', 'market', 'briefsxl']","[('09', 0.31603158), ('09imag', 0.07047675), ('0909', 0.016320838), ('imag', 0.011127811), ('0909imag', 0.008160364), ('full', 0.008160364), ('09go', 0.008160364), ('stori', 0.0074185026), ('20', 0.0066766427), ('chang', 0.0051929215)]",09,0.3160315
882,882,916,"['ned', 'regard', 'waha', 'storag', 'west', 'desk', 'strong', 'need', 'storag', 'alway', 'will', 'show', 'bid', 'base', 'current', 'summerwint', 'spread', 'cycl', 'valu', 'the', 'follow', 'assumpt', 'made', 'establish', 'bid', '5', 'daili', 'inject', 'capac', '10', 'daili', 'withdraw', 'capac', '1', 'fuel', 'inject', '001mmbtu', 'variabl', 'inject', 'withdraw', 'fee', 'also', 'undiscount', 'june', '01', 'januari', '02', 'spread', '060', 'exist', 'time', 'bid', 'bid', '1', 'year', 'storag', 'contract', 'begin', 'june', '01', 'base', 'assumpt', '005', 'mmbtumonth', '060year', 'demand', 'charg', 'I', 'sure', 'exactli', 'need', 'pleas', 'call', 'email', 'comment', 'phillip', 'allen']","[('bid', 0.036496423), ('storag', 0.029197121), ('inject', 0.029197121), ('1', 0.021897826), ('daili', 0.021897826), ('spread', 0.021897826), ('withdraw', 0.021897826), ('assumpt', 0.021897826), ('01', 0.021897826), ('capac', 0.021897826)]",bid,0.03649642
883,883,883,"['allen', 'phillip', 'K', 'you', 'select', 'particip', 'mid', 'year', '2001', 'perform', 'manag', 'process', 'your', 'feedback', 'play', 'import', 'role', 'process', 'particip', 'critic', 'success', 'enron', 'perform', 'manag', 'goal', 'To', 'complet', 'request', 'feedback', 'access', 'pep', 'httppepenroncom', 'select', 'complet', 'feedback', 'main', 'menu', 'you', 'may', 'begin', 'provid', 'feedback', 'immedi', 'request', 'feedback', 'form', 'complet', 'friday', 'may', '25', '2001', 'If', 'question', 'regard', 'pep', 'respons', 'process', 'pleas', 'contact', 'pep', 'help', 'desk', 'houston', '17138534777', 'option', '4', 'email', 'perfmgmtenroncom', 'london', '442077834040', 'option', '4', 'email', 'pepenquiriesenroncom', 'thank', 'particip', 'import', 'process', 'the', 'follow', 'cumul', 'list', 'employe', 'feedback', 'request', 'statu', 'open', 'onc', 'submit', 'declin', 'employe', 'request', 'feedback', 'name', 'longer', 'appear', 'list', 'note', 'you', 'will', 'receiv', 'thi', 'messag', 'each', 'time', 'you', 'are', 'select', 'AS', 'A', 'review', 'employe', 'name', 'giron', 'darron', 'shim', 'yeun', 'sung']","[('feedback', 0.03980116), ('process', 0.024875691), ('request', 0.024875691), ('you', 0.024875691), ('pep', 0.019900536), ('employe', 0.019900536), ('complet', 0.019900536), ('particip', 0.019900536), ('select', 0.019900536), ('import', 0.014925384)]",feedback,0.0398011
884,884,884,"['If', 'read', 'email', 'pleas', 'click', 'earningscom', 'pmc', 'upgradedowngrad', 'histori', 'earningscom', 'imag', 'imageview', 'today', 'upgradesdowngradescoverag', 'initi', 'brief', 'pmc', 'sierra', 'inc', 'pmc', 'date', 'brokerag', 'firm', 'action', 'detail', '05142001', 'freidman', 'bill', 'coverag', 'initi', 'accumul', '04232001', 'merril', 'lynch', 'downgrad', 'Nt', 'neutral', 'Nt', 'accum', '04202001', 'robertson', 'stephen', 'upgrad', 'buy', 'Lt', 'attract', '04202001', 'JP', 'morgan', 'upgrad', 'Lt', 'buy', 'mkt', 'perform', '04202001', 'frost', 'secur', 'upgrad', 'strong', 'buy', 'buy', '04202001', 'goldman', 'sach', 'upgrad', 'trade', 'buy', 'mkt', 'outperform', '04192001', 'salomon', 'smith', 'barney', 'upgrad', 'buy', 'outperform', '04122001', 'JP', 'morgan', 'downgrad', 'mkt', 'perform', 'Lt', 'buy', '03222001', 'robertson', 'stephen', 'downgrad', 'Lt', 'attract', 'buy', '03202001', 'frost', 'secur', 'coverag', 'initi', 'buy', '03142001', 'needham', 'compani', 'coverag', 'initi', 'hold', '03122001', 'salomon', 'smith', 'barney', 'downgrad', 'outperform', 'buy', '03062001', 'banc', 'america', 'downgrad', 'buy', 'strong', 'buy', '02202001', 'csfb', 'downgrad', 'hold', 'buy', '01292001', 'soundview', 'upgrad', 'strong', 'buy', 'buy', '01262001', 'warburg', 'dillon', 'reed', 'downgrad', 'hold', 'strong', 'buy', '01262001', 'S', 'G', 'cowen', 'downgrad', 'neutral', 'buy', '01262001', 'JP', 'morgan', 'downgrad', 'Lt', 'buy', 'buy', '01262001', 'robertson', 'stephen', 'downgrad', 'buy', 'strong', 'buy', '01262001', 'adam', 'hark', 'downgrad', 'mkt', 'perform', 'buy', '01262001', 'banc', 'america', 'downgrad', 'buy', 'strong', 'buy', '01262001', 'bear', 'stearn', 'downgrad', 'attract', 'buy', '01262001', 'csfb', 'downgrad', 'buy', 'strong', 'buy', '01262001', 'goldman', 'sach', 'downgrad', 'mkt', 'outperform', 'recomm', 'list', '11302000', 'lehman', 'brother', 'downgrad', 'neutral', 'outperform', '11302000', 'kaufman', 'bro', 'LP', 'downgrad', 'hold', 'buy', '11162000', 'merril', 'lynch', 'downgrad', 'Nt', 'accum', 'Nt', 'buy', '11022000', 'soundview', 'downgrad', 'buy', 'strong', 'buy', '10252000', 'lehman', 'brother', 'downgrad', 'outperform', 'buy', '10202000', 'JP', 'morgan', 'coverag', 'initi', 'buy', '10172000', 'pain', 'webber', 'upgrad', 'buy', 'attract', '10052000', 'william', 'blair', 'coverag', 'initi', 'Lt', 'buy', '06062000', 'S', 'G', 'cowen', 'upgrad', 'buy', 'neutral', 'briefingcom', 'lead', 'internet', 'provid', 'live', 'market', 'analysi', 'US', 'stock', 'US', 'bond', 'world', 'FX', 'market', 'particip', '19992001', 'earningscom', 'inc', 'all', 'right', 'reserv', 'u', 'contact', 'u', 'webmast', 'site', 'map', 'privaci', 'polici', 'term', 'servic']","[('buy', 0.09068712), ('downgrad', 0.051471025), ('01262001', 0.024509955), ('upgrad', 0.022058947), ('strong', 0.022058947), ('Lt', 0.017156938), ('initi', 0.017156938), ('outperform', 0.017156938), ('mkt', 0.014705933), ('coverag', 0.014705933)]",buy,0.0906871
885,885,885,"['dear', 'nytimescom', 'member', 'your', 'registr', 'nytimescom', 'includ', 'permiss', 'send', 'occasion', 'email', 'special', 'offer', 'advertis', 'To', 'unsubscrib', 'futur', 'mail', 'visit', 'httpwwwnytimescomunsubscrib', 'thi', 'special', 'offer', 'nextcard', 'visa', 'congratul', 'youv', 'preselect', 'nextcardr', 'visar', 'offer', 'rate', 'low', '299', 'intro', '999', 'ongo', 'apr', 'nextcard', 'visa', 'best', 'credit', 'card', 'youll', 'find', 'period', 'were', 'credit', 'card', 'compani', 'tailor', 'offer', 'specif', 'apr', 'low', '299', 'intro', '999', 'ongo', 'then', 'transfer', 'balanc', 'one', 'click', 'start', 'save', 'money', 'right', 'now', 'get', 'nextcard', 'visa', '30', 'second', 'get', 'credit', 'card', 'never', 'easi', '1', 'fill', 'brief', 'applic', '2', 'receiv', 'approv', 'decis', 'within', '30', 'second', '3', 'pay', 'annual', 'fee', 'rate', 'low', '299', 'intro', '999', 'ongo', 'apr', 'click', 'appli', 'httpwwwnytimescomadsemailnextcardbeforenonaolahtml', 'whi', 'wast', 'time', 'credit', 'compani', 'nextcard', 'offer', '100', 'safe', 'onlin', 'shop', '1click', 'bill', 'payment', '24hour', 'onlin', 'account', 'manag', 'dont', 'wait', 'appli', 'get', 'approv', 'decis', '30', 'second', 'le', 'the', 'choic', 'clear', 'current', 'cardhold', 'individu', 'appli', 'within', 'past', '60', 'day', 'elig', 'take', 'advantag', 'offer', 'nextcard', 'take', 'privaci', 'serious', 'In', 'order', 'protect', 'person', 'privaci', 'share', 'person', 'inform', 'outsid', 'parti', 'thi', 'may', 'result', 'receiv', 'offer', 'even', 'current', 'nextcard', 'holder', 'recent', 'applic', 'although', 'may', 'inconveni', 'result', 'belief', 'privaci', 'utmost', 'import', 'you', 'may', 'view', 'addit', 'detail', 'privaci', 'polici', 'follow', 'url', 'httpwwwnextcardcomprivacyshtml', 'about', 'thi', 'email', 'your', 'registr', 'nytimescom', 'includ', 'permiss', 'send', 'occasion', 'email', 'special', 'offer', 'advertis', 'As', 'member', 'bbbonlin', 'privaci', 'program', 'trust', 'privaci', 'program', 'commit', 'protect', 'privaci', 'unsubscrib', 'futur', 'mail', 'visit', 'httpwwwnytimescomunsubscrib', 'suggest', 'feedback', 'welcom', 'commentsnytimescom', 'pleas', 'repli', 'directli', 'email']","[('offer', 0.024324505), ('privaci', 0.021621773), ('nextcard', 0.01891904), ('credit', 0.0135135725), ('email', 0.0135135725), ('intro', 0.010810842), ('thi', 0.010810841), ('ongo', 0.010810841), ('999', 0.010810841), ('appli', 0.010810841)]",offer,0.02432450
886,886,886,"['here', 'today', 'copi', 'bloomberg', 'power', 'line', 'adob', 'acrobat', 'reader', 'requir', 'view', 'attach', 'pdf', 'file', 'you', 'download', 'free', 'version', 'acrobat', 'reader', 'httpwwwadobecomproductsacrobatreadstephtml', 'If', 'troubl', 'download', 'attach', 'file', 'also', 'locat', 'httpwwwbloombergcomenergydailypdf', 'dont', 'forget', 'check', 'bloomberg', 'powermatch', 'west', 'coast', 'index', 'accur', 'index', 'anywher', 'index', 'valu', 'calcul', 'actual', 'tra', 'de', 'audit', 'powermatch', 'custom', 'our', 'aim', 'bring', 'time', 'electr', 'market', 'coverag', 'industri', 'welcom', 'feedback', 'improv', 'product20', 'bloomberg', 'energi', 'depart', '0514', 'bloomberg', 'daili', 'power', 'report', 'tabl', 'bloomberg', 'US', 'region', 'electr', 'price', 'mwh', '2550', 'mwh', 'preschedul', 'packag', 'exclud', 'transmiss', '20', 'cost', 'onpeak', 'west', 'coast', 'index', 'chang', 'low', 'high', 'midcolumbia', '20540', '18585', '17500', '22500', 'caor', 'border', '20333', '18667', '18000', '22500', 'np15', '20775', '18939', '17500', '22800', 'sp15', '20500', '18688', '17500', '22500', 'ault', 'colorado', '18500', '15500', '17500', '22500', 'mead', '22500', '12800', '22000', '23000', 'palo', 'verd', '22048', '20202', '21000', '24000', 'four', 'corner', '20750', '17750', '20000', '22000', 'midcontin', 'ecar', '3275', '168', '3018', '3500', 'east', '3550', '200', '3500', '3600', 'aep', '3194', '146', '2975', '3400', 'west', '3150', '200', '2950', '3400', 'central', '3117', '352', '2800', '3500', 'cinergi', '3117', '352', '2800', '3500', 'south', '3444', '215', '2800', '3700', 'north', '3350', '000', '3300', '3400', 'main', '3363', '388', '3075', '3725', 'come', '3125', '225', '2950', '3450', 'lower', '3600', '550', '3200', '4000', 'mapp', '4678', '686', '4500', '5100', 'north', '4650', '717', '4500', '5000', 'lower', '4706', '656', '4500', '5200', 'gulf', 'coast', 'spp', '4013', '051', '3950', '4150', 'northern', '3950', '000', '3950', '4100', 'ercot', '4750', '225', '4600', '4900', 'serc', '3735', '010', '3389', '3907', 'Va', 'power', '3500', '450', '3450', '3550', 'vacar', '3700', '350', '3600', '3800', 'into', 'tva', '3444', '215', '2800', '3700', 'out', 'tva', '3823', '180', '3172', '4099', 'entergi', '4175', '125', '3500', '4400', 'southern', '3700', '200', '3500', '3900', 'flaga', 'border', '3800', '300', '3700', '3900', 'frcc', '5600', '100', '5400', '5800', 'east', 'coast', 'nepool', '4595', '605', '4550', '4725', 'new', 'york', 'zone', 'J', '5850', '450', '5600', '6100', 'new', 'york', 'zone', 'G', '4975', '325', '4850', '5150', 'new', 'york', 'zone', 'A', '3850', '550', '3800', '3900', 'pjm', '3597', '548', '3500', '3675', 'east', '3597', '548', '3500', '3675', 'west', '3597', '548', '3500', '3675', 'seller', 'choic', '3547', '548', '3450', '3625', 'end', 'tabl', 'western', 'power', 'spot', 'price', 'sink', 'amid', 'weatherrel', 'demand', 'lo', 'angel', 'may', '14', 'bloomberg', 'energi', 'most', 'western', 'US', 'spot', 'power', 'price', 'deliveri', 'tomorrow', 'slump', 'suppli', 'outstrip', 'demand', 'At', 'sp15', 'deliveri', 'point', 'southern', 'california', 'peak', 'power', 'drop', '18688', 'bloomberg', 'index', '20500', 'megawatt', 'hour', 'amid', 'trade', '1750022500', 'rang', 'air', 'condit', 'load', 'diminish', 'caus', 'price', 'declin', 'said', 'one', 'southwest', 'trader', 'accord', 'weather', 'servic', 'corp', 'lexington', 'massachusett', 'temperatur', 'lo', 'angel', 'expect', 'reach', '75', 'degre', 'fahrenheit', 'today', 'low', '59', 'degre', 'tonight', 'At', 'palo', 'verd', 'switchyard', 'arizona', 'peak', 'power', 'sank', '20202', '4782', 'percent', 'bloomberg', 'index', '22048', 'trader', 'execut', 'transact', '2100024000', 'rang', 'trader', 'said', 'arizona', 'public', 'servic', 'Co', '1270megawatt', 'palo', 'verde1', 'nuclear', 'plant', 'wintersburg', 'arizona', 'increas', 'product', '19', 'percent', 'capac', 'follow', 'complet', 'schedul', 'refuel', 'outag', 'began', 'march', '31', 'At', 'midcolumbia', 'trade', 'point', 'washington', 'peak', 'power', 'slump', '475', 'percent', 'friday', 'sundaymonday', 'packag', 'bloomberg', 'index', '20540', 'trade', '1750022500', 'accord', 'belton', 'missouribas', 'weather', 'deriv', 'inc', 'temperatur', 'pacif', 'northwest', 'averag', '12', 'degre', 'fahrenheit', 'normal', 'next', 'seven', 'day', 'cool', 'demand', '84', 'percent', 'normal', 'We', 'expect', 'rain', 'pacif', 'northwest', 'caus', 'temperatur', 'drop', 'said', 'one', 'northwest', 'trader', 'At', 'np15', 'deliveri', 'point', 'northern', 'california', 'peak', 'power', 'fell', '18939', 'bloomberg', 'index', '20775', 'trade', '1750022800', 'accord', 'california', 'independ', 'system', 'oper', 'today', 'forecast', 'demand', 'estim', '30827', 'megawatt', 'declin', '743', 'megawatt', 'tomorrow', '30084', 'megawatt', 'robert', 'scalabrino', 'northeast', 'power', 'price', 'fall', 'with', 'more', 'gener', 'less', 'demand', 'philadelphia', 'may', '14', 'bloomberg', 'energi', 'An', 'increas', 'avail', 'gener', 'coupl', 'le', 'weatherrel', 'demand', 'caus', 'nextday', 'power', 'price', 'northeast', 'US', 'fall', 'much', '113', 'percent', 'morn', 'trader', 'said', 'accord', 'weather', 'deriv', 'corp', 'belton', 'missouri', 'temperatur', 'northeast', 'averag', 'within', 'one', 'degre', 'fahrenheit', 'normal', 'next', 'seven', 'day', 'keep', 'heat', 'cool', 'demand', '88', '96', 'percent', 'normal', 'respect', 'In', 'pennsylvanianew', 'jerseymaryland', 'interconnect', 'peak', 'power', 'schedul', 'tuesday', 'deliveri', 'assess', 'bloomberg', 'volumeweight', 'index', '3597', 'per', 'megawatt', 'hour', '548', 'friday', 'there', 'weather', 'said', 'one', 'pjmbase', 'trader', 'there', 'need', 'air', 'condit', 'need', 'heat', 'As', 'far', 'I', 'tell', 'go', 'way', 'week', 'long', 'peak', 'load', 'pjm', 'project', 'averag', 'le', '30000', 'megawatt', 'friday', 'trader', 'also', 'cite', 'increas', 'region', 'capac', 'caus', 'dip', 'interconnect', 'data', 'show', '1675', 'megawatt', 'return', 'servic', 'today', 'addit', '1232', 'megawatt', 'expect', 'hit', 'grid', 'tomorrow', 'nextday', 'price', 'fell', 'across', 'three', 'zone', 'new', 'york', 'power', 'pool', 'increas', 'output', 'nine', 'mile', 'point', '1', '2', 'nuclear', 'power', 'facil', 'the', 'nuclear', 'regul', 'commiss', 'report', 'nine', 'mile', 'point', '1', '90', 'percent', '609megawatt', 'capac', 'follow', 'complet', 'refuel', 'outag', '1148megawatt', 'nine', 'mile', 'point', '2', 'full', 'power', 'follow', 'unplan', 'mainten', 'both', 'unit', 'own', 'oper', 'niagara', 'mohawk', 'zone', 'J', 'compris', 'new', 'york', 'citi', 'slip', '450', '5850', 'zone', 'G', 'A', 'fell', '325', '550', 'respect', '5125', '4000', 'index', 'karyn', 'rispoli', 'weatherrel', 'demand', 'drive', 'midcontin', 'power', 'price', 'Up', 'cincinnati', 'may', '14', 'bloomberg', 'energi', 'dayahead', 'peak', 'power', 'price', 'rose', 'today', 'midcontin', 'US', 'high', 'weatherrel', 'demand', 'expect', 'midwest', 'southeast', 'trader', 'said', 'it', 'suppos', 'pretti', 'warm', 'tva', 'tennesse', 'valley', 'author', 'area', 'everyon', 'look', 'go', 'cinergi', 'one', 'east', 'central', 'area', 'reliabl', 'council', 'trader', 'said', 'daili', 'balanc', 'week', 'stronger', 'the', 'bloomberg', 'index', 'price', 'peak', 'parcel', 'deliv', 'tuesday', 'cincinnatibas', 'cinergi', 'corp', 'transmiss', 'system', 'rose', '352', '3117', 'megawatthour', 'trade', 'rang', '2925', 'market', 'open', '3500', 'option', 'expir', 'cinergi', 'power', 'wednesdayfriday', 'deliveri', 'sold', '3900', 'power', 'may', '2125', 'offer', '4550', 'demand', 'southeast', 'expect', 'remain', 'high', 'next', 'week', 'nextday', 'power', 'tva', 'sold', '215', 'higher', 'averag', '28003700', 'temperatur', 'nashvil', 'tennesse', 'forecast', '87', 'degre', 'fahrenheit', 'thursday', 'thing', 'continu', 'along', 'line', 'rest', 'week', 'there', 'enough', 'power', 'get', 'much', 'anyon', 'flood', 'market', 'crush', 'price', 'ecar', 'trader', 'said', 'In', 'midamerica', 'interconnect', 'network', 'trade', 'demand', 'cinergi', 'hub', 'entergi', 'corp', 'grid', 'pull', 'price', 'though', 'trader', 'said', 'transmiss', 'problem', 'limit', 'volum', 'peak', 'monday', 'parcel', 'sold', '225', 'higher', 'averag', 'chicagobas', 'commonwealth', 'edison', 'hub', 'trade', '29503450', '550', 'higher', 'averag', 'lower', 'half', 'region', 'trade', '32004000', 'midcontin', 'area', 'power', 'pool', 'peak', 'spot', 'power', 'price', 'also', 'climb', 'today', 'show', 'largest', 'increas', 'region', 'abovenorm', 'temperatur', 'expect', 'transmiss', 'problem', 'isol', 'market', 'lowerpr', 'eastern', 'hub', 'fortuesday', 'power', 'sold', '717', 'higher', 'averag', 'northern', 'mapp', '45005000', '656', 'higher', 'averag', 'southern', 'half', 'region', '45005200', 'lexington', 'massachusettsbas', 'weather', 'servic', 'corp', 'predict', 'tomorrow', 'high', 'temperatur', 'would', '85', 'degre', 'minneapoli', '91', 'degre', 'omaha', 'nebraska', 'there', 'avail', 'transmiss', 'come', 'problem', 'get', 'power', 'ameren', 'grid', 'one', 'mapp', 'trader', 'said', 'it', 'like', 'caus', 'problem', 'week', 'sinc', 'hot', 'spp', 'southwest', 'power', 'pool', 'ken', 'fahnestock', 'southeast', 'power', 'price', 'mix', 'southern', 'market', 'heat', 'Up', 'atlanta', 'may', '14', 'bloomberg', 'energi', 'US', 'southeast', 'spot', 'electr', 'price', 'mix', 'today', 'hot', 'weather', 'return', 'major', 'southern', 'US', 'popul', 'center', 'trader', 'said', 'forecast', 'lexington', 'massachusettsbas', 'weather', 'servic', 'corp', 'predict', 'daili', 'high', 'temperatur', 'atlanta', 'vicin', 'would', 'peak', 'tomorrow', '86', 'degre', 'fahrenheit', '5', 'degre', 'higher', 'today', 'project', 'high', 'cooler', 'weather', 'expect', 'begin', 'wednesday', 'convers', 'nashvil', 'tennesse', 'vicin', 'temperatur', 'remain', 'high80', 'low90', 'week', 'propel', 'air', 'condit', 'demand', 'trader', 'said', 'the', 'bloomberg', 'southeast', 'electr', 'reliabl', 'council', 'region', 'index', 'price', 'rose', '10', 'cent', 'megawatthour', 'equival', 'trade', 'made', 'friday', 'deliveri', 'today', '3720', 'trade', 'rang', '26504250', 'On', 'tennesse', 'valley', 'author', 'grid', 'power', 'trade', 'averag', '215', 'higher', 'bloomberg', 'index', '3444', 'amid', 'trade', '28003700', 'rang', 'In', 'texa', 'dayahead', 'power', 'price', 'rose', '84', 'cent', 'UB', 'firm', 'energi', 'bloomberg', 'index', '4750', 'though', 'util', 'trader', 'complain', 'slack', 'demand', 'versu', 'time', '2000', 'there', 'overnight', 'load', 'anyth', 'suppli', 'said', 'one', 'texasbas', 'util', 'power', 'trader', 'last', 'year', 'time', 'saw', 'bunch', '9395', 'degre', 'fahrenheit', 'day', 'thi', 'year', 'far', 'highest', 'weve', 'seen', '85', 'degre', 'that', '10', 'degre', 'normal', 'u', 'On', 'entergi', 'corp', 'grid', 'dayahead', 'peak', 'power', 'tomorrow', 'open', '38504200', 'though', 'trade', 'done', 'bloomberg', 'index', '4025', '125', 'le', 'friday', 'trader', 'said', 'forecast', 'cooler', 'weather', 'much', 'south', 'start', 'wednesday', 'caus', 'dayahead', 'price', 'trade', 'late', '3536', 'trader', 'said', 'southern', 'Co', 'purchas', 'dayahead', 'energi', '37', 'util', 'virginiacarolina', 'region', 'power', 'vacar', 'cheaper', 'util', 'serc', 'southern', 'dayahead', 'power', 'trade', '2', 'higher', 'bloomberg', 'index', '37', 'amid', 'trade', '3539', 'rang', 'In', 'forward', 'power', 'market', 'entergi', 'power', 'balanc', 'week', 'sold', 'earli', 'today', '4700', 'though', 'later', 'trade', 'note', 'high', '4875', 'balanceofmay', 'entergi', 'power', 'bid', '48', 'though', 'offer', 'heard', 'trader', 'said', 'On', 'tva', 'grid', 'power', 'balanc', 'week', 'bid', '40', 'though', 'nearest', 'offer', '45', 'firm', 'energi', 'balanc', 'may', 'discuss', '41', 'though', 'new', 'trade', 'note', 'brian', 'whari', 'UK', 'power', 'price', 'fall', 'offer', 'continu', 'outweigh', 'bid', 'london', 'may', '14', 'bloomberg', 'energi', 'power', 'price', 'UK', 'fell', 'fourth', 'consecut', 'day', 'amid', 'continu', 'heavi', 'sell', 'interest', 'trader', 'said', 'winter', '2001', 'baseload', 'trade', 'high', '2152', 'pound', 'megawatthour', 'low', '2135', 'pound', 'megawatthour', 'close', '2142', 'pound', 'megawatthour', '11', 'penni', 'lower', 'friday', 'the', 'contract', 'fallen', 'around', '82', 'penni', 'sinc', 'start', 'month', 'amid', 'aggress', 'sell', 'interest', 'mainli', 'one', 'trade', 'hous', 'intend', 'buy', 'back', 'contract', 'short', 'volatil', 'contract', 'today', 'stem', 'opposit', 'anoth', 'trade', 'hous', 'bought', 'contract', 'support', 'price', 'level', 'trader', 'said', 'shorterterm', 'contract', 'also', 'fell', 'today', 'warm', 'weather', 'expect', 'curtail', 'heat', 'demand', 'also', 'amid', 'lower', 'product', 'cost', 'fall', 'natur', 'ga', 'price', 'trader', 'said', 'june', 'baseload', 'power', 'contract', 'fell', '22', 'penni', 'friday', 'last', 'trade', '1835', 'pound', 'megawatthour', 'On', 'intern', 'petroleum', 'exchang', 'june', 'natur', 'ga', 'futur', 'trade', '031', 'penni', 'lower', 'today', 'last', 'trade', '2115', 'penni', 'thermal', 'unit', 'the', 'contract', 'fallen', '174', 'penni', 'sinc', 'start', 'last', 'week', 'some', 'trader', 'howev', 'remain', 'reluct', 'give', 'fundament', 'reason', 'price', 'movement', 'immatur', 'market', 'given', 'recent', 'launch', 'new', 'trade', 'agreement', 'most', 'trade', 'activ', 'effort', 'find', 'new', 'price', 'level', 'said', 'amal', 'halawi', 'nordic', 'power', 'soar', 'activ', 'trade', 'renew', 'buy', 'interest', 'lysak', 'norway', 'may', '14', 'bloomberg', 'energi', 'longerterm', 'electr', 'price', 'nordic', 'power', 'exchang', 'lysak', 'norway', 'soar', 'activ', 'afternoon', 'trade', 'particip', 'rush', 'buy', 'season', 'contract', 'attempt', 'close', 'posit', 'amid', 'limit', 'hydrosuppli', 'trader', 'said', 'winter2', '2001', 'close', '600', 'norwegian', 'krone', 'higher', 'time', 'high', '21450', 'krone', 'megawatthour', 'total', '60300', 'megawatt', 'exchang', 'low', '20725', 'krone', 'megawatthour', 'winter1', '2002', 'jump', '565', 'krone', 'discuss', 'rang', '20750', '21400', 'krone', 'megawatthour', 'the', 'market', 'crash', 'everyon', 'wait', 'never', 'came', 'pay', 'higher', 'price', 'develop', 'posit', 'oslo', 'base', 'trader', 'said', 'Im', 'surpris', 'even', 'peak', 'snow', 'melt', 'season', 'anticip', 'wet', 'weather', 'price', 'steadili', 'climb', 'precipit', 'across', 'scandinavia', 'forecast', '200', 'percent', 'normal', 'next', '10', 'day', 'accord', 'US', 'forecast', 'still', 'anoth', 'trader', 'said', '170', 'percent', 'normal', 'realist', 'expect', 'follow', 'recent', 'overestim', 'wet', 'outlook', 'tuesday', 'system', 'area', 'averag', 'price', 'set', 'expec', '19500', 'krone', 'megawatthour', '18570', 'krone', 'megawatthour', '745', 'krone', 'today', 'price', 'still', 'trader', 'said', 'high', 'spot', 'price', 'time', 'year', 'week', '21', 'close', '1', 'krone', '189', 'krone', 'megawatthour', '140', 'megawatt', 'exchang', 'trade', 'volum', 'nordpool', 'total', '5469', 'gigawatthour', 'gener', '368', 'percent', 'friday', '1169', 'gigawatthour', 'alejandro', 'barbajosa', '0', 'be', 'may142001', '1933', 'gmt', '0F', 'dailypdf']","[('power', 0.018229092), ('price', 0.013141871), ('trade', 0.012717933), ('trader', 0.011870066), ('said', 0.010598259), ('bloomberg', 0.0097503895), ('index', 0.0072067804), ('today', 0.006358911), ('demand', 0.0063589104), ('peak', 0.0059349756)]",power,0.01822909
887,887,887,"['phillip', 'I', 'complet', 'market', 'packag', 'stage', 'I', 'also', 'need', '1999', 'statement', 'rent', 'roll', 'pleas', 'send', 'asap', 'thank', 'jeff']","[('I', 0.08571431), ('1999', 0.057142857), ('thank', 0.057142857), ('asap', 0.057142857), ('send', 0.057142857), ('pleas', 0.057142857), ('roll', 0.057142857), ('rent', 0.057142857), ('phillip', 0.057142857), ('statement', 0.057142857)]",I,0.0857143
888,888,888,"['here', 'forecast']","[('here', 0.5), ('forecast', 0.5)]",here,0.
889,889,889,"['outlook', 'migrat', 'teamenron', '05112001', '0149', 'PM', 'To', 'cheryl', 'wilchynskihrcorpenronenron', 'cindi', 'R', 'wardnaenronenron', 'Jo', 'ann', 'hillcorpenronenron', 'sonja', 'gallowaycorpenronenron', 'bilal', 'bajwanaenronenron', 'binh', 'phamhouectect', 'bradley', 'jonesenronenronxg', 'bruce', 'millscorpenronenron', 'chanc', 'rabonenronenronxg', 'chuck', 'amesnaenronenron', 'david', 'baumbachhouectect', 'jad', 'doanenronenronxg', 'oneal', 'D', 'winfreehouectect', 'phillip', 'M', 'lovehouectect', 'sladanaanna', 'kulicenronenronxg', 'victor', 'guggenheimhouectect', 'alejandra', 'chaveznaenronenron', 'ann', 'bikeenronenronxg', 'carol', 'franknaenronenron', 'darron', 'C', 'gironhouectect', 'elizabeth', 'L', 'hernandezhouectect', 'elizabeth', 'shimcorpenronenron', 'jeff', 'royedcorpenronenron', 'kam', 'keiserhouectect', 'kimat', 'singlahouectect', 'kristen', 'clauseenronenronxg', 'kulvind', 'fowlernaenronenron', 'kyle', 'R', 'lillyhouectect', 'lucha', 'johnsonnaenronenron', 'maria', 'garzahouectect', 'patrick', 'rydernaenronenron', 'ryan', 'orourkeenronenronxg', 'yuan', 'tiannaenronenron', 'frank', 'ermishouectect', 'jane', 'M', 'tholthouectect', 'jay', 'reitmeyerhouectect', 'keith', 'holsthouectect', 'matthew', 'lenharthouectect', 'mike', 'grigsbyhouectect', 'moniqu', 'sanchezhouectect', 'phillip', 'K', 'allenhouectect', 'randal', 'L', 'gayhouectect', 'tori', 'kuykendallhouectect', 'ina', 'normanhouectect', 'jacki', 'travishouectect', 'michael', 'J', 'gasperhouectect', 'brenda', 'H', 'fletcherhouectect', 'jeann', 'wukaschcorpenronenron', 'mari', 'theresa', 'franklinhouectect', 'mike', 'potternaenronenron', 'natali', 'bakerhouectect', 'suzann', 'calcagnonaenronenron', 'albert', 'stromquistcorpenronenron', 'rajesh', 'chettiarenrondevelopmentenrondevelop', 'derek', 'andersonhouectect', 'brad', 'hornhouectect', 'camil', 'gerardcorpenronenron', 'cathi', 'liranaenronenron', 'daniel', 'castagnolaenrondevelopmentenrondevelop', 'eva', 'towcorpenronenron', 'lam', 'nguyennaenronenron', 'andi', 'pacenaenronenron', 'anna', 'santuccinaenronenron', 'claudia', 'guerranaenronenron', 'clayton', 'vernoncorpenronenron', 'david', 'ryancorpenronenron', 'eric', 'smithcontractorenron', 'communicationsenron', 'commun', 'grace', 'kimnaenronenron', 'jason', 'kanissenronenronxg', 'kevin', 'clinecorpenronenron', 'rika', 'imainaenronenron', 'todd', 'decookcorpenronenron', 'beth', 'jensennpngenronenron', 'billi', 'harrillnpngenronenron', 'martha', 'sumnerkenneynpngenronenron', 'phylli', 'millernpngenronenron', 'sandi', 'olofsonnpngenronenron', 'theresa', 'byrnenpngenronenron', 'danni', 'mccartyetsenronenron', 'deni', 'tufgtenronenron', 'john', 'A', 'ayresfgtenronenron', 'john', 'millarfgtenronenron', 'juli', 'armstrongcorpenronenron', 'maggi', 'schroederfgtenronenron', 'max', 'brownotsenronenron', 'randi', 'cantrellgcoenronenron', 'traci', 'scottcorpenronenron', 'charl', 'T', 'muzzyhouectect', 'cora', 'pendergrasscorpenronenron', 'darren', 'espeycorpenronenron', 'jessica', 'whitenaenronenron', 'kevin', 'bradynaenronenron', 'kirk', 'lenarthouectect', 'lisa', 'kinseyhouectect', 'margi', 'straighthouectect', 'mark', 'L', 'schrabhouectect', 'souad', 'mahmassanicorpenronenron', 'tammi', 'gilmorenaenronenron', 'teresa', 'mcombernaenronenron', 'we', 'dempseynaenronenron', 'barri', 'feldmannycmgusamgusa', 'catherin', 'huynhnaenronenron', 'cc', 'subject', '2', 'surveyinform', 'email', '514', '01', 'current', 'note', 'user', 'To', 'ensur', 'experi', 'success', 'migrat', 'note', 'outlook', 'necessari', 'gather', 'individu', 'person', 'inform', 'prior', 'date', 'migrat', 'pleas', 'take', 'minut', 'complet', 'fill', 'follow', 'survey', 'doubl', 'click', 'document', 'put', 'edit', 'mode', 'when', 'finish', 'simpli', 'click', 'repli', 'with', 'histori', 'button', 'hit', 'send', 'your', 'survey', 'automat', 'sent', 'outlook', '2000', 'migrat', 'mailbox', 'thank', 'outlook', '2000', 'migrat', 'team', 'full', 'name', 'phillip', 'allen', 'login', 'ID', 'pallen', 'extens', '37041', 'offic', 'locat', 'eb3210c', 'what', 'type', 'comput', 'desktop', 'laptop', 'both', 'both', 'Do', 'pda', 'If', 'ye', 'type', 'none', 'ipaq', 'palm', 'pilot', 'jornada', 'ipaq', 'Do', 'permiss', 'access', 'anyon', 'emailcalendar', 'If', 'ye', 'doe', 'anyon', 'permiss', 'access', 'emailcalendar', 'ye', 'ina', 'rangel', 'If', 'ye', 'are', 'respons', 'updat', 'anyon', 'el', 'address', 'book', 'If', 'ye', 'Is', 'anyon', 'els', 'respons', 'updat', 'address', 'book', 'If', 'ye', 'Do', 'access', 'share', 'calendar', 'If', 'ye', 'share', 'calendar', 'Do', 'distribut', 'group', 'messag', 'maintain', 'mass', 'mail', 'If', 'ye', 'pleas', 'list', 'pleas', 'list', 'note', 'databas', 'applic', 'current', 'use', 'In', 'effort', 'plan', 'exact', 'datetim', 'migrat', 'also', 'need', 'know', 'what', 'normal', 'work', 'hour', 'from', '7', 'To', '5', 'will', 'offic', 'near', 'futur', 'vacat', 'leav', 'etc', 'If', 'from', 'mmddyy', 'To', 'mmddyy']","[('ye', 0.012016234), ('If', 0.012016234), ('migrat', 0.009345939), ('outlook', 0.006675643), ('anyon', 0.006675643), ('To', 0.006675643), ('Do', 0.0066756424), ('pleas', 0.005340497), ('L', 0.005340497), ('note', 0.005340497)]",ye,0.01201623
890,890,890,"['dear', 'associ', 'analyst', 'committe', 'the', 'follow', 'attach', 'inform', 'regard', 'upcom', 'event', 'associ', 'analyst', 'program', 'pleas', 'save', 'date', 'calendar', 'particip', 'greatli', 'appreci', 'ani', 'question', 'concern', 'may', 'direct', 'john', 'walt', 'donna', 'jone', 'thank', 'associ', 'analyst', 'program', 'amh']","[('analyst', 0.061538503), ('associ', 0.061538503), ('program', 0.04615386), ('may', 0.030769225), ('john', 0.030769225), ('ani', 0.030769225), ('question', 0.030769225), ('concern', 0.030769225), ('greatli', 0.030769225), ('donna', 0.030769225)]",analyst,0.06153850
891,891,891,"['let', 'know', 'get', 'quot', 'paulin', 'I', 'expect', 'pay', 'someth', '3000', '5000', 'rang', 'I', 'would', 'like', 'see', 'quot', 'descript', 'work', 'done', 'It', 'understand', 'rock', 'remov', 'replac', 'side', 'If', 'get', 'quot', 'put', 'new', 'rock', 'need', 'clarifi', 'jacqu', 'readi', 'drop', 'dollar', 'amount', 'releas', 'If', 'negoti', 'stall', 'seem', 'like', 'I', 'need', 'go', 'ahead', 'cut', 'util', 'hope', 'thing', 'go', 'smoothli', 'phillip']","[('quot', 0.03921573), ('I', 0.03921573), ('go', 0.029411776), ('If', 0.029411776), ('rock', 0.029411776), ('like', 0.029411776), ('need', 0.029411776), ('get', 0.029411776), ('jacqu', 0.019607838), ('drop', 0.019607838)]",quot,0.0392157
892,892,892,"['due', 'problem', 'email', 'yesterday', 'I', 'may', 'receiv', 'rsvppleas', 'excus', 'confus', 'may', 'caus', 'rsvp', 'request', 'the', 'environment', 'strategi', 'group', 'conven', 'emiss', 'strategi', 'meet', 'friday', 'may', '18', 'discu', 'global', 'emiss', 'issu', 'air', 'qualiti', 'regul', 'climat', 'chang', 'US', 'multipollut', 'legisl', 'explor', 'potenti', 'busi', 'opportun', 'enron', 'commerci', 'group', 'when', 'friday', 'may', '18', 'time', '1000', '300', 'pm', 'lunch', 'provid', 'where', 'enron', 'build', '8c1', '8th', 'floor', 'A', 'video', 'confer', 'organ', 'enabl', 'broad', 'particip', 'london', 'offic', 'teleconfer', 'set', 'other', 'would', 'like', 'call', 'the', 'primari', 'object', 'session', '1', 'provid', 'latest', 'inform', 'emiss', 'regul', 'market', 'enron', 'advocaci', 'effort', 'worldwid', '2', 'receiv', 'feedback', 'commerci', 'interest', 'input', 'polici', 'option', 'may', 'develop', 'best', 'busi', 'polici', 'strategi', 'enron', 'short', 'long', 'term', 'We', 'invit', 'member', 'group', 'particip', 'import', 'strateg', 'discuss', 'pleas', 'rsvp', 'soon', 'possibl', 'let', 'u', 'know', 'plan', 'particip', 'person', 'via', 'teleconfer', 'via', 'video', 'confer', 'london', 'offic', 'An', 'agenda', 'forthcom', 'If', 'question', 'suggest', 'advanc', 'meet', 'pleas', 'hesit', 'contact', 'jeff', 'keeler', 'We', 'look', 'forward', 'particip', 'lisa', 'jacobson', 'enron', 'manag', 'environment', 'strategi', '1775', 'eye', 'street', 'NW', 'suit', '800', 'washington', 'DC', '20006', 'phone', '202', '4669176', 'fax', '202', '3314717']","[('may', 0.019802084), ('enron', 0.019802084), ('strategi', 0.016501721), ('particip', 0.016501721), ('emiss', 0.013201358), ('group', 0.013201358), ('pleas', 0.009901002), ('18', 0.009901002), ('regul', 0.009901002), ('london', 0.009901002)]",may,0.01980208
893,893,893,"['jeff', 'jacqu', 'craig', 'draw', 'releas', 'what', 'statu', 'quot', 'wade', 'phillip']","[('jeff', 0.1), ('jacqu', 0.1), ('craig', 0.1), ('draw', 0.1), ('releas', 0.1), ('what', 0.1), ('statu', 0.1), ('quot', 0.1), ('wade', 0.1), ('phillip', 0.1)]",jeff,0.
894,894,894,"['the', 'west', 'desk', 'would', 'like', '2', 'analyst']","[('the', 0.14285715), ('west', 0.14285715), ('desk', 0.14285715), ('would', 0.14285715), ('like', 0.14285715), ('2', 0.14285715), ('analyst', 0.14285715)]",the,0.1428571
895,895,895,"['attach', 'final', 'version', 'california', 'summari', 'report', 'map', 'graph', 'histor', 'data', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'bcc', 'subject', 'addit', 'california', 'load', 'inform', 'addit', 'chart', 'attempt', 'explain', 'increas', 'demand', 'hydro', 'load', 'growth', 'temperatur', 'mani', 'assumpt', 'made', 'the', 'data', 'solid', 'number', 'first', 'set', 'graph']","[('graph', 0.038961057), ('data', 0.038961057), ('addit', 0.038961057), ('load', 0.038961057), ('california', 0.038961057), ('increas', 0.025974022), ('demand', 0.025974022), ('growth', 0.025974022), ('explain', 0.025974022), ('mani', 0.025974022)]",graph,0.03896105
896,896,934,"['phillip', 'kieth', 'I', 'complet', 'follow', 'document', 'last', 'night', 'I', 'forgot', 'get', 'email', 'sorri', 'pleas', 'call', 'later', 'today', 'greg', 'mapapplicationteam', 'budgetxl', 'phillip', 'allen', '41801doc']","[('phillip', 0.068181835), ('I', 0.068181835), ('pleas', 0.045454543), ('allen', 0.045454543), ('budgetxl', 0.045454543), ('mapapplicationteam', 0.045454543), ('greg', 0.045454543), ('today', 0.045454543), ('later', 0.045454543), ('call', 0.045454543)]",phillip,0.06818183
897,897,896,"['onf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'pleas', 'forward', 'anyon', 'team', 'want', 'updat', 'western', 'wholesal', 'matter', 'also', 'give', 'opportun', 'rais', 'state', 'matter', 'want', 'discu', 'jim', 'forward', 'jame', 'D', 'steffesnaenron', '05032001', '0742', 'AM', 'ray', 'alvarez', '05022001', '0540', 'PM', 'To', 'steve', 'waltonhouectect', 'susan', 'J', 'maranaenronenron', 'alan', 'comnespdxectect', 'lesli', 'lawnernaenronenron', 'rebecca', 'W', 'cantrellhouectect', 'donna', 'fultoncorpenronenron', 'jeff', 'dasovichnaenronenron', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'jalexandergibbsbrunscom', 'phillip', 'K', 'allenhouectect', 'cc', 'linda', 'J', 'noskehouectect', 'subject', 'Re', 'western', 'wholesal', 'activ', 'ga', 'power', 'conf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'date', 'everi', 'thursday', 'time', '100', 'pm', 'pacif', '300', 'pm', 'central', '400', 'pm', 'eastern', 'time', 'number', '18882710949', 'host', 'code', '661877', 'jim', 'particip', 'code', '936022', 'everyon', 'els', 'attach', 'tabl', 'ongo', 'ferc', 'issu', 'proceed', 'updat', 'use', 'tomorrow', 'confer', 'call', 'It', 'avail', 'team', 'member', 'O', 'drive', 'pleas', 'feel', 'free', 'reviseadd', 'updat', 'tabl', 'appropri', 'propos', 'agenda', 'tomorrow', 'power', 'discuss', 'ferc', 'market', 'monitor', 'mitig', 'order', 'el009512', 'review', 'upcom', 'file', 'ga', 'respons', 'subpoena', 'socal', 'edison', 'rp00241', 'upcom', 'item', 'misc', 'I', 'unabl', 'particip', 'call', 'tomorrow', 'I', 'attend', 'senat', 'energi', 'resourc', 'committe', 'hear', 'element', 'ferc', 'market', 'monitor', 'mitig', 'order']","[('privileg', 0.015723342), ('commun', 0.015723342), ('call', 0.015723342), ('updat', 0.012578659), ('ferc', 0.012578659), ('tomorrow', 0.012578657), ('pm', 0.012578657), ('I', 0.009433975), ('particip', 0.009433975), ('jame', 0.009433975)]",privileg,0.01572334
898,898,897,"['If', 'question', 'pleas', 'contact', 'kristin', 'walsh', '713', '8539510', 'bridg', 'loan', 'financ', 'bill', 'may', 'not', 'meet', 'their', 'may', '8th', 'deadlin', 'due', 'lack', 'support', 'sourc', 'report', 'vote', 'regard', 'author', 'bond', 'issuancebridg', 'loan', 'may', '8th', 'deadlin', 'ani', 'possibl', 'deal', 'reportedli', 'fallen', 'apart', 'accord', 'sourc', 'republican', 'democrat', 'caucu', 'turn', 'davi', 'the', 'democrat', 'caucu', 'reportedli', 'unwil', 'fight', 'davi', 'mani', 'legisl', 'republican', 'democrat', 'reportedli', 'trust', 'davi', 'express', 'concern', 'bond', 'issu', 'replenish', 'gener', 'fund', 'davi', 'would', 'doubl', 'dip', 'fund', 'clearli', 'lack', 'good', 'faith', 'legislatur', 'governor', 'howev', 'believ', 'davi', 'disclos', 'detail', 'power', 'contract', 'negoti', 'bond', 'issuanc', 'take', 'place', 'addit', 'gener', 'sourc', 'report', 'longterm', 'power', 'contract', 'oppos', 'still', 'develop', 'requir', 'bond', 'issuanc', 'happen', 'juli', '1', '2001', 'If', 'state', 'may', 'breach', 'contract', 'sourc', 'state', 'legislatur', 'pa', 'bridg', 'loan', 'legisl', 'may', '8th', 'bond', 'issuanc', 'juli', '1st', 'difficult', 'the', 'republican', 'plan', 'offer', 'altern', 'plan', 'wherebi', 'state', 'would', 'eat', '5', 'billion', 'cost', 'power', 'spent', 'date', 'gener', 'fund', 'therebi', 'decreas', 'amount', 'bond', 'issuanc', 'approxim', '8', 'billion', 'howev', 'reportedli', 'go', 'offer', 'even', 'concess', 'sourc', 'report', 'republican', 'intend', 'hold', 'full', 'disclosur', 'governor', 'plan', 'handl', 'crisi', 'includ', 'detail', 'term', 'longterm', 'contract', 'negoti', 'support', 'bond', 'issuanc', 'go', 'forward', 'current', 'two', 'bill', 'deal', 'bridg', 'loan', 'AB', '8X', 'AB', '31x', 'AB', '8X', 'author', 'dwr', 'sell', '10', 'billion', 'bond', 'thi', 'bill', 'pass', 'senat', 'march', 'stall', 'assembl', 'due', 'lack', 'republican', 'support', 'AB', '31x', 'deal', 'energi', 'conserv', 'program', 'commun', 'colleg', 'district', 'howev', 'sourc', 'report', 'bill', 'may', 'amend', 'includ', 'languag', 'relev', 'bond', 'sale', 'senat', 'bowen', 'current', 'AB', '8X', 'senat', 'bowen', 'languag', 'state', 'state', 'get', 'paid', 'util', 'rate', 'payment', 'pass', 'would', 'like', 'caus', 'socal', 'bankruptci', 'accord', 'sourc', 'close', 'republican', 'legislatur', 'republican', 'believ', 'bridg', 'loan', 'due', 'money', 'avail', 'gener', 'fund', 'for', 'instanc', 'toni', 'strickland', 'state', '12', 'bond', 'approxim', '5', 'billion', 'issu', 'other', 'republican', 'reportedli', 'support', 'issu', 'bond', 'the', 'republican', 'intend', 'bring', 'debat', 'monday', 'addit', 'lehman', 'brother', 'reportedli', 'also', 'feel', 'bridg', 'loan', 'unnecessari', 'indic', 'lehman', 'may', 'back', 'bridg', 'loan', 'key', 'point', 'bridg', 'financ', 'initi', 'loan', 'amount', '4125', 'B', 'lender', 'JP', 'morgan', '25', 'B', 'lehman', 'brother', '10', 'B', 'bear', 'stearn', '625', 'M', 'tax', 'exempt', 'portion', 'Of', '4125', 'B', '16', 'B', 'expect', 'taxexempt', 'project', 'interest', 'rate', 'taxabl', 'rate', '577', 'taxexempt', 'rate', '477', 'current', 'project', 'blend', 'IR', '538', 'matur', 'date', 'august', '29', '2001', 'for', 'detail', 'pleas', 'contact', '713', '8539510', 'bill', 'SB', '6X', 'pass', 'senat', 'yesterday', 'littl', 'can', 'done', 'thi', 'time', 'the', 'senat', 'pass', 'SB', '6X', 'yesterday', 'author', '5', 'billion', 'creat', 'california', 'consum', 'power', 'conserv', 'author', 'the', '5', 'billion', 'author', 'SB', '6X', '5', 'billion', 'must', 'author', 'legislatur', 'pay', 'power', 'alreadi', 'purchas', 'addit', 'amount', 'bond', 'must', 'author', 'pay', 'purchas', 'power', 'go', 'forward', 'again', 'republican', 'support', 'author', 'without', 'detail', 'longterm', 'power', 'contract', 'governor', 'negoti', 'republican', 'know', 'final', 'bond', 'amount', 'must', 'issu', 'taxpay', 'pay', 'support', 'No', 'action', 'taken', 'regard', 'implement', 'SB', '6X', 'clarifi', 'state', 'util', 'get', 'paid', 'purchas', 'power', 'also', 'staff', 'defin', 'purpos', 'etc', 'california', 'public', 'power', 'conserv', 'author', 'howev', 'consid', 'victori', 'consum', 'advoc', 'began', 'promot', 'idea', 'earlier', 'crisi', 'socal', 'edison', 'bankruptci', 'At', 'point', 'two', 'event', 'would', 'like', 'trigger', 'socal', 'bankruptci', 'the', 'first', 'would', 'legisl', 'reject', 'mou', 'socal', 'governor', 'the', 'specifi', 'deadlin', 'legisl', 'approv', 'mou', 'august', '15th', 'howev', 'decis', 'like', 'made', 'earlier', 'accord', 'sourc', 'state', 'yet', 'sign', 'mou', 'socal', 'though', 'socal', 'sign', 'the', 'republican', 'mou', 'current', 'form', 'davi', 'senat', 'lack', 'vote', 'need', 'pa', 'If', 'legislatur', 'indic', 'pa', 'mou', 'socal', 'would', 'like', 'file', 'voluntari', 'bankruptci', 'creditor', 'involuntari', 'due', 'lack', 'oper', 'cash', 'the', 'second', 'like', 'trigger', 'event', 'link', 'directli', 'bond', 'issuanc', 'would', 'effort', 'senat', 'bowen', 'amend', 'SB', '31x', 'bridg', 'loan', 'state', 'dwr', 'would', 'receiv', '100', 'payment', 'ratepay', 'util', 'would', 'receiv', 'residu', 'amount', 'In', 'word', 'state', 'get', 'paid', 'util', 'If', 'languag', 'includ', 'pass', 'legislatur', 'appear', 'like', 'socal', 'like', 'file', 'bankruptci', 'socal', 'urg', 'legislatur', 'pay', 'util', 'dwr', 'proportion', 'rate', 'payment']","[('bond', 0.017442156), ('republican', 0.015116519), ('state', 0.012790886), ('power', 0.011628067), ('loan', 0.011628067), ('author', 0.011628067), ('socal', 0.011628067), ('would', 0.011628067), ('the', 0.011628067), ('sourc', 0.01046525)]",bond,0.01744215
899,899,898,"['transwestern', 'pipelin', 'Co', 'post', 'new', 'notic', 'sinc', 'last', 'check', '12122000', '121801', 'PM', 'newest', 'notic', 'look', 'like', 'capac', 'constraint', 'dec', '12', '2000', '1225pm', 'dec', '13', '2000', '900am', 'dec', '14', '2000', '859am', '2231', 'alloc', 'socal', 'needl', 'pleas', 'click', 'follow', 'go', 'web', 'site', 'detail', 'httpiosetsenroncominfopostingssharedetnoncriticalnoticeaspcompani', '60']","[('2000', 0.04938277), ('dec', 0.04938277), ('notic', 0.03703706), ('needl', 0.024691358), ('900am', 0.024691358), ('14', 0.024691358), ('859am', 0.024691358), ('2231', 0.024691358), ('alloc', 0.024691358), ('socal', 0.024691358)]",2000,0.0493827
900,900,899,"['onf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'pleas', 'forward', 'anyon', 'team', 'want', 'updat', 'western', 'wholesal', 'matter', 'also', 'give', 'opportun', 'rais', 'state', 'matter', 'want', 'discu', 'jim', 'forward', 'jame', 'D', 'steffesnaenron', '05032001', '0742', 'AM', 'ray', 'alvarez', '05022001', '0540', 'PM', 'To', 'steve', 'waltonhouectect', 'susan', 'J', 'maranaenronenron', 'alan', 'comnespdxectect', 'lesli', 'lawnernaenronenron', 'rebecca', 'W', 'cantrellhouectect', 'donna', 'fultoncorpenronenron', 'jeff', 'dasovichnaenronenron', 'christi', 'L', 'nicolayhouectect', 'jame', 'D', 'steffesnaenronenron', 'jalexandergibbsbrunscom', 'phillip', 'K', 'allenhouectect', 'cc', 'linda', 'J', 'noskehouectect', 'subject', 'Re', 'western', 'wholesal', 'activ', 'ga', 'power', 'conf', 'call', 'privileg', 'confidenti', 'commun', 'attorneycli', 'commun', 'attorney', 'work', 'product', 'privileg', 'assert', 'date', 'everi', 'thursday', 'time', '100', 'pm', 'pacif', '300', 'pm', 'central', '400', 'pm', 'eastern', 'time', 'number', '18882710949', 'host', 'code', '661877', 'jim', 'particip', 'code', '936022', 'everyon', 'els', 'attach', 'tabl', 'ongo', 'ferc', 'issu', 'proceed', 'updat', 'use', 'tomorrow', 'confer', 'call', 'It', 'avail', 'team', 'member', 'O', 'drive', 'pleas', 'feel', 'free', 'reviseadd', 'updat', 'tabl', 'appropri', 'propos', 'agenda', 'tomorrow', 'power', 'discuss', 'ferc', 'market', 'monitor', 'mitig', 'order', 'el009512', 'review', 'upcom', 'file', 'ga', 'respons', 'subpoena', 'socal', 'edison', 'rp00241', 'upcom', 'item', 'misc', 'I', 'unabl', 'particip', 'call', 'tomorrow', 'I', 'attend', 'senat', 'energi', 'resourc', 'committe', 'hear', 'element', 'ferc', 'market', 'monitor', 'mitig', 'order']","[('privileg', 0.015723342), ('commun', 0.015723342), ('call', 0.015723342), ('updat', 0.012578659), ('tomorrow', 0.012578659), ('pm', 0.012578659), ('ferc', 0.012578657), ('I', 0.009433975), ('particip', 0.009433975), ('jame', 0.009433975)]",privileg,0.01572334
901,901,900,"['travel', 'busi', 'meet', 'take', 'fun', 'trip', 'especi', 'prepar', 'present', 'I', 'would', 'suggest', 'hold', 'busi', 'plan', 'meet', 'take', 'trip', 'without', 'formal', 'busi', 'meet', 'I', 'would', 'even', 'tri', 'get', 'honest', 'opinion', 'whether', 'trip', 'even', 'desir', 'necessari', 'As', 'far', 'busi', 'meet', 'I', 'think', 'would', 'product', 'tri', 'stimul', 'discuss', 'across', 'differ', 'group', 'work', 'too', 'often', 'present', 'speak', 'other', 'quiet', 'wait', 'turn', 'the', 'meet', 'might', 'better', 'held', 'round', 'tabl', 'discuss', 'format', 'My', 'suggest', 'go', 'austin', 'play', 'golf', 'rent', 'ski', 'boat', 'jet', 'ski', 'fli', 'somewher', 'take', 'much', 'time']","[('meet', 0.04195815), ('busi', 0.034965113), ('I', 0.02797207), ('take', 0.02797207), ('trip', 0.02797207), ('would', 0.02797207), ('ski', 0.020979036), ('discuss', 0.020979036), ('tri', 0.020979036), ('even', 0.020979036)]",meet,0.0419581
902,902,901,"['tim', 'mike', 'grigsbi', 'problem', 'access', 'west', 'power', 'site', 'can', 'pleas', 'make', 'sure', 'activ', 'password', 'thank', 'phillip']","[('pleas', 0.0625), ('site', 0.0625), ('thank', 0.0625), ('password', 0.0625), ('activ', 0.0625), ('sure', 0.0625), ('make', 0.0625), ('tim', 0.0625), ('can', 0.0625), ('access', 0.0625)]",pleas,0.062
903,903,902,"['reagan', 'just', 'want', 'give', 'updat', 'I', 'chang', 'unit', 'mix', 'includ', '1', 'bedroom', 'reduc', 'number', 'build', '12', 'kipp', 'flore', 'work', 'construct', 'draw', 'At', 'time', 'I', 'pursu', 'fha', 'financ', 'onc', 'construct', 'draw', 'complet', 'I', 'send', 'revis', 'bid', 'your', 'origin', 'bid', 'competit', 'I', 'still', 'attract', 'firm', 'strong', 'local', 'presenc', 'contact', 'phillip']","[('I', 0.055555634), ('bid', 0.03333335), ('draw', 0.03333335), ('construct', 0.03333335), ('revis', 0.022222219), ('complet', 0.022222219), ('financ', 0.022222219), ('send', 0.022222219), ('competit', 0.022222219), ('onc', 0.022222219)]",I,0.05555563
904,904,903,"['jim', 'Is', 'go', 'confer', 'call', 'type', 'weekli', 'meet', 'regulatori', 'issu', 'face', 'california', 'week', 'can', 'make', 'sure', 'ga', 'desk', 'includ', 'phillip']","[('california', 0.049999997), ('issu', 0.049999997), ('includ', 0.049999997), ('desk', 0.049999997), ('ga', 0.049999997), ('sure', 0.049999997), ('make', 0.049999997), ('can', 0.049999997), ('week', 0.049999997), ('jim', 0.049999997)]",california,0.04999999
905,905,904,"['37041', 'offic', 'locat', 'eb3210c', 'what', 'type', 'comput', 'desktop', 'laptop', 'both', 'both', 'Do', 'pda', 'If', 'ye', 'type', 'none', 'ipaq', 'palm', 'pilot', 'jornada', 'ipaq', 'Do', 'permiss', 'access', 'anyon', 'emailcalendar', 'NO', 'If', 'ye', 'doe', 'anyon', 'permiss', 'access', 'emailcalendar', 'ye', 'If', 'ye', 'ina', 'rangel', 'are', 'respons', 'updat', 'anyon', 'el', 'address', 'book', 'If', 'ye', 'NO', 'Is', 'anyon', 'els', 'respons', 'updat', 'address', 'book', 'If', 'ye', 'NO', 'Do', 'access', 'share', 'calendar', 'If', 'ye', 'share', 'calendar', 'ye', 'west', 'calendar', 'Do', 'distribut', 'group', 'messag', 'maintain', 'mass', 'mail', 'If', 'ye', 'pleas', 'list', 'NO', 'pleas', 'list', 'note', 'databas', 'applic', 'current', 'use', 'none', 'In', 'effort', 'plan', 'exact', 'datetim', 'migrat', 'also', 'need', 'know', 'what', 'normal', 'work', 'hour', 'from', '700', 'AM', 'To', '500', 'PM', 'will', 'offic', 'near', 'futur', 'vacat', 'leav', 'etc', 'NO', 'If', 'from', 'mmddyy', 'To', 'mmddyy']","[('ye', 0.05025147), ('If', 0.045226306), ('NO', 0.03015084), ('Do', 0.025125684), ('anyon', 0.025125684), ('calendar', 0.02010053), ('access', 0.02010053), ('ipaq', 0.015075379), ('permiss', 0.015075379), ('emailcalendar', 0.015075379)]",ye,0.0502514
906,906,935,"['I', 'still', 'use', 'servic']","[('I', 0.25), ('still', 0.25), ('use', 0.25), ('servic', 0.25)]",I,0.2
907,907,936,"['Hi', 'philip', 'If', 'slide', 'preapr', 'assist', 'email', 'copi', 'mog', 'heu', 'confer', 'new', 'york', 'thank', 'karen', 'origin', 'messag', 'from', 'allen', 'phillip', 'sent', 'wednesday', 'april', '18', '2001', '1030', 'AM', 'To', 'buckley', 'karen', 'subject', 'Re', 'present', 'trade', 'track', 'AA', 'the', 'topic', 'western', 'natur', 'ga', 'market', 'I', 'may', 'overhead', 'slide', 'I', 'bring', 'handout']","[('I', 0.031578965), ('karen', 0.031578965), ('slide', 0.031578965), ('track', 0.02105263), ('trade', 0.02105263), ('present', 0.02105263), ('AA', 0.02105263), ('Re', 0.02105263), ('buckley', 0.02105263), ('topic', 0.02105263)]",I,0.03157896
908,908,937,"['chad', 'call', 'ted', 'bland', 'trade', 'track', 'program', 'all', 'desk', 'tri', 'use', 'program', 'train', 'analyst', 'trader', 'your', 'experi', 'help', 'process', 'make', 'risk', 'rotat', 'unnecessari', 'unless', 'die', 'anoth', 'rotat', 'risk', 'phillip']","[('rotat', 0.054545466), ('program', 0.054545466), ('risk', 0.054545466), ('help', 0.03636363), ('process', 0.03636363), ('make', 0.03636363), ('your', 0.03636363), ('anoth', 0.03636363), ('unless', 0.03636363), ('analyst', 0.03636363)]",rotat,0.05454546
909,909,905,"['current', 'note', 'user', 'reason', 'for', 'use', 'outlook', 'web', 'access', 'owa', '1', 'onc', 'mailbox', 'migrat', 'note', 'outlook', 'outlook', 'client', 'configur', 'comput', 'after', 'migrat', 'mailbox', 'abl', 'send', 'reciev', 'mail', 'via', 'note', 'abl', 'start', 'use', 'outlook', 'configur', 'outlook', 'migrat', 'team', 'morn', 'mailbox', 'migrat', 'dure', 'period', 'use', 'outlook', 'web', 'access', 'owa', 'via', 'web', 'browser', 'internet', 'explor', '50', 'read', 'send', 'mail', 'pleas', 'note', 'your', 'calendar', 'entri', 'person', 'address', 'book', 'journal', 'todo', 'entri', 'import', 'note', 'avail', 'outlook', 'client', 'configur', 'desktop', '2', 'remot', 'access', 'mailbox', 'after', 'outlook', 'client', 'configur', 'use', 'outlook', 'web', 'access', 'owa', 'remot', 'access', 'mailbox', 'pleas', 'note', 'At', 'time', 'owa', 'client', 'access', 'connect', 'enron', 'network', 'lan', 'there', 'futur', 'plan', 'make', 'owa', 'avail', 'home', 'travel', 'abroad', 'how', 'TO', 'access', 'outlook', 'web', 'access', 'owa', 'launch', 'internet', 'explor', '50', 'address', 'window', 'type', 'httpnahoumsowa01pexchangejohndo', 'substitut', 'johndo', 'first', 'last', 'name', 'click', 'enter', 'you', 'prompt', 'sign', 'box', 'shown', 'type', 'corpyour', 'person', 'id', 'person', 'name', 'NT', 'password', 'logon', 'owa', 'click', 'OK', 'you', 'abl', 'view', 'mailbox', 'pleas', 'note', 'there', 'subtl', 'differ', 'function', 'outlook', 'owa', 'client', 'you', 'abl', 'mani', 'thing', 'owa', 'outlook', 'below', 'brief', 'list', 'function', 'not', 'avail', 'via', 'owa', 'featur', 'not', 'avail', 'use', 'owa', 'task', 'journal', 'spell', 'checker', 'offlin', 'use', 'print', 'templat', 'remind', 'time', 'deliveri', 'expir', 'outlook', 'rule', 'vote', 'messag', 'flag', 'messag', 'recal', 'share', 'contact', 'other', 'task', 'deleg', 'direct', 'resourc', 'book', 'person', 'distribut', 'list', 'question', 'OR', 'concern', 'If', 'question', 'concern', 'use', 'owa', 'client', 'pleas', 'contact', 'outlook', '2000', 'question', 'answer', 'mailbox', 'outlook2000enroncom', 'otherwis', 'may', 'contact', 'resolut', 'center', '7138531411', 'thank', 'outlook', '2000', 'migrat', 'team']","[('outlook', 0.043478627), ('owa', 0.03532636), ('access', 0.024456678), ('mailbox', 0.021739256), ('use', 0.021739256), ('note', 0.021739256), ('client', 0.019021837), ('migrat', 0.016304418), ('web', 0.016304417), ('configur', 0.013587)]",outlook,0.04347862
910,910,906,"['current', 'note', 'user', 'To', 'ensur', 'experi', 'success', 'migrat', 'note', 'outlook', 'necessari', 'gather', 'individu', 'person', 'inform', 'prior', 'date', 'migrat', 'pleas', 'take', 'minut', 'complet', 'fill', 'follow', 'survey', 'when', 'finish', 'simpli', 'click', 'repli', 'button', 'hit', 'send', 'your', 'survey', 'automat', 'sent', 'outlook', '2000', 'migrat', 'mailbox', 'thank', 'outlook', '2000', 'migrat', 'team', 'full', 'name', 'login', 'ID', 'extens', 'offic', 'locat', 'what', 'type', 'comput', 'desktop', 'laptop', 'both', 'Do', 'pda', 'If', 'ye', 'type', 'none', 'ipaq', 'palm', 'pilot', 'jornada', 'Do', 'permiss', 'access', 'anyon', 'emailcalendar', 'If', 'ye', 'doe', 'anyon', 'permiss', 'access', 'emailcalendar', 'If', 'ye', 'are', 'respons', 'updat', 'anyon', 'el', 'address', 'book', 'If', 'ye', 'Is', 'anyon', 'els', 'respons', 'updat', 'address', 'book', 'If', 'ye', 'Do', 'access', 'share', 'calendar', 'If', 'ye', 'share', 'calendar', 'Do', 'distribut', 'group', 'messag', 'maintain', 'mass', 'mail', 'If', 'ye', 'pleas', 'list', 'pleas', 'list', 'note', 'databas', 'applic', 'current', 'use', 'In', 'effort', 'plan', 'exact', 'datetim', 'migrat', 'also', 'need', 'know', 'what', 'normal', 'work', 'hour', 'from', 'To', 'will', 'offic', 'near', 'futur', 'vacat', 'leav', 'etc', 'If', 'from', 'mmddyy', 'To', 'mmddyy']","[('If', 0.03488391), ('ye', 0.03100791), ('migrat', 0.023255907), ('anyon', 0.019379908), ('Do', 0.019379908), ('outlook', 0.0155039085), ('access', 0.0155039085), ('note', 0.0155039085), ('pleas', 0.0155039085), ('To', 0.0155039085)]",If,0.0348839
911,911,907,"['alan', 'you', 'receiv', 'updat', 'number', 'keith', 'holst', 'call', 'receiv', 'phillip']","[('receiv', 0.15789478), ('alan', 0.10526316), ('you', 0.10526316), ('updat', 0.10526316), ('number', 0.10526316), ('keith', 0.10526316), ('holst', 0.10526316), ('call', 0.10526316), ('phillip', 0.10526316)]",receiv,0.1578947
912,912,908,"['phillip', 'I', 'got', 'request', 'On', 'ga', 'side', 'I', 'think', 'keanlay', 'need', 'updat', 'tabl', 'prepar', 'month', 'ago', 'ive', 'attach', 'can', 'oblig', 'thank', 'alan', 'comn', 'forward', 'alan', 'comnespdxect', '04272001', '0142', 'PM', 'janel', 'guerreroenron', '04272001', '1244', 'PM', 'To', 'alan', 'comnespdxectect', 'jeff', 'dasovichnaenronenron', 'cc', 'paul', 'kaufmanpdxectect', 'richard', 'shapironaenronenron', 'subject', 'request', 'steve', 'kean', 'alan', 'steve', 'ask', 'updat', 'power', 'point', 'reflect', 'stupid', 'regulatorylegisl', 'decis', 'sinc', 'begin', 'year', 'ken', 'want', 'updat', 'chart', 'brief', 'book', 'next', 'week', 'ken', 'lay', 'tour', 'CA', 'He', 'also', 'want', 'forward', 'price', 'curv', 'ga', 'power', 'CA', 'can', 'get', 'three', 'document', 'monday', 'afternoon']","[('alan', 0.031446617), ('updat', 0.025157275), ('forward', 0.01886794), ('want', 0.01886794), ('PM', 0.01886794), ('ken', 0.01886794), ('can', 0.01886794), ('CA', 0.01886794), ('steve', 0.01886794), ('04272001', 0.01886794)]",alan,0.03144661
913,913,909,"['here', 'stab', 'talk', 'point', 'sent', 'ferc', 'along', 'ga', 'price', 'info', 'request', 'california', 'market', 'let', 'christi', 'know', 'disagr', 'addit', 'whatev', 'I', 'suppos', '215', 'today', 'stuff', 'add', 'get', 'christi', 'thank']","[('christi', 0.054545477), ('suppos', 0.036363635), ('disagr', 0.036363635), ('addit', 0.036363635), ('whatev', 0.036363635), ('I', 0.036363635), ('215', 0.036363635), ('get', 0.036363635), ('stuff', 0.036363635), ('let', 0.036363635)]",christi,0.05454547
914,914,910,"['phillip', 'I', 'got', 'request', 'On', 'ga', 'side', 'I', 'think', 'keanlay', 'need', 'updat', 'tabl', 'prepar', 'month', 'ago', 'ive', 'attach', 'can', 'oblig', 'thank', 'alan', 'comn', 'forward', 'alan', 'comnespdxect', '04272001', '0142', 'PM', 'janel', 'guerreroenron', '04272001', '1244', 'PM', 'To', 'alan', 'comnespdxectect', 'jeff', 'dasovichnaenronenron', 'cc', 'paul', 'kaufmanpdxectect', 'richard', 'shapironaenronenron', 'subject', 'request', 'steve', 'kean', 'alan', 'steve', 'ask', 'updat', 'power', 'point', 'reflect', 'stupid', 'regulatorylegisl', 'decis', 'sinc', 'begin', 'year', 'ken', 'want', 'updat', 'chart', 'brief', 'book', 'next', 'week', 'ken', 'lay', 'tour', 'CA', 'He', 'also', 'want', 'forward', 'price', 'curv', 'ga', 'power', 'CA', 'can', 'get', 'three', 'document', 'monday', 'afternoon']","[('alan', 0.031446617), ('updat', 0.025157275), ('forward', 0.01886794), ('want', 0.01886794), ('PM', 0.01886794), ('ken', 0.01886794), ('can', 0.01886794), ('CA', 0.01886794), ('steve', 0.01886794), ('04272001', 0.01886794)]",alan,0.03144661
915,915,911,"['send', 'karen', 'buckley', 'trade', 'track', 'interview', 'conduct', 'may']","[('send', 0.125), ('karen', 0.125), ('buckley', 0.125), ('trade', 0.125), ('track', 0.125), ('interview', 0.125), ('conduct', 0.125), ('may', 0.125)]",send,0.12
916,916,912,"['tim', 'can', 'author', 'access', 'west', 'power', 'site', 'keith', 'holtz', 'He', 'southern', 'california', 'basi', 'trader', 'two', 'year', 'contract', 'On', 'anoth', 'note', 'imagin', 'sarr', 'websit', 'lower', 'forecast', 'mcnari', 'discharg', 'may', 'It', 'seem', 'like', 'flow', 'lower', '130', 'rang', 'fewer', 'day', 'near', '170', 'also', 'second', 'half', 'april', 'doesnt', 'seem', 'pan', 'I', 'expect', 'the', 'outflow', 'stay', '100110', 'mcnari', 'can', 'email', 'call', 'addit', 'insight', 'thank', 'phillip']","[('lower', 0.025862088), ('can', 0.025862088), ('mcnari', 0.025862088), ('seem', 0.025862088), ('near', 0.017241377), ('second', 0.017241377), ('also', 0.017241377), ('170', 0.017241377), ('april', 0.017241377), ('130', 0.017241377)]",lower,0.02586208
917,917,913,"['I', 'would', 'look', 'properti', 'san', 'antonio', 'dalla']","[('I', 0.14285715), ('would', 0.14285715), ('look', 0.14285715), ('properti', 0.14285715), ('san', 0.14285715), ('antonio', 0.14285715), ('dalla', 0.14285715)]",I,0.1428571
918,918,914,"['gari', 'I', 'also', 'speak', 'johnni', 'brown', 'san', 'antonio', 'gener', 'contractor', 'accord', 'johnni', 'I', 'would', 'pay', 'le', 'buy', 'factori', 'versu', 'purchas', 'panel', 'sinc', 'site', 'within', 'region', 'assum', 'true', 'I', 'work', 'directli', 'I', 'believ', 'sent', 'plan', 'they', 'prepar', 'kipp', 'flore', 'architect', 'can', 'confirm', 'price', 'direct', 'factori', 'distributor', 'If', 'estim', 'work', 'johnni', 'pleas', 'email', 'well', 'thank', 'time', 'I', 'excit', 'potenti', 'use', 'product', 'phillip', 'allen']","[('I', 0.052631695), ('johnni', 0.035087764), ('factori', 0.026315806), ('work', 0.026315806), ('can', 0.017543858), ('direct', 0.017543858), ('price', 0.017543858), ('confirm', 0.017543858), ('kipp', 0.017543858), ('prepar', 0.017543858)]",I,0.05263169
919,919,915,"['ray', 'Is', 'detail', 'ga', 'cost', 'proxi', 'which', 'deliveri', 'point', 'public', 'use', 'basic', 'help', 'u', 'get', 'clarif', 'languag', 'averag', 'daili', 'cost', 'ga', 'deliveri', 'point', 'california', 'phillip']","[('deliveri', 0.06521741), ('ga', 0.06521741), ('cost', 0.06521741), ('point', 0.06521741), ('daili', 0.043478258), ('clarif', 0.043478258), ('languag', 0.043478258), ('u', 0.043478258), ('use', 0.043478258), ('averag', 0.043478258)]",deliveri,0.0652174
920,920,938,"['how', 'I', 'send', 'money', 'silent', 'second', 'regular', 'mail', 'overnight', 'wire', 'transfer', 'I', 'dont', 'see', 'bank', 'make', 'fund', 'avail', 'friday', 'unless', 'I', 'wire', 'money', 'If', 'I', 'need', 'pleas', 'send', 'wire', 'instruct']","[('I', 0.0943397), ('wire', 0.07547175), ('send', 0.056603793), ('money', 0.056603793), ('friday', 0.03773585), ('If', 0.03773585), ('avail', 0.03773585), ('make', 0.03773585), ('pleas', 0.03773585), ('need', 0.03773585)]",I,0.094339
921,921,939,"['the', 'topic', 'western', 'natur', 'ga', 'market', 'I', 'may', 'overhead', 'slide', 'I', 'bring', 'handout']","[('I', 0.12000002), ('market', 0.080000006), ('bring', 0.080000006), ('slide', 0.080000006), ('overhead', 0.080000006), ('may', 0.080000006), ('the', 0.080000006), ('western', 0.080000006), ('natur', 0.080000006), ('topic', 0.080000006)]",I,0.1200000
922,922,940,"['jeff', 'I', 'offic', 'today', 'ani', 'isssu', 'deal', 'stagecoach', 'phillip']","[('jeff', 0.11111111), ('I', 0.11111111), ('offic', 0.11111111), ('today', 0.11111111), ('ani', 0.11111111), ('isssu', 0.11111111), ('deal', 0.11111111), ('stagecoach', 0.11111111), ('phillip', 0.11111111)]",jeff,0.1111111
923,923,917,"['meet', 'delay', 'phil', 'I', 'suspect', 'discussionsnegoti', 'take', 'place', 'behind', 'close', 'door', 'smoke', 'fill', 'room', 'directli', 'commission', 'among', 'ferc', 'staffer', 'never', 'say', 'never', 'I', 'think', 'highli', 'unlik', 'final', 'order', 'contain', 'fix', 'price', 'cap', 'I', 'base', 'belief', 'larg', 'part', 'I', 'heard', 'luncheon', 'I', 'attend', 'yesterday', 'afternoon', 'keynot', 'speaker', 'ferc', 'chairman', 'curt', 'hebert', 'although', 'chairman', 'began', 'present', 'expressli', 'state', 'would', 'comment', 'answer', 'question', 'pend', 'proceed', 'commiss', 'hebert', 'enlighten', 'comment', 'relat', 'price', 'cap', 'price', 'cap', 'almost', 'never', 'right', 'answer', 'price', 'cap', 'effect', 'prolong', 'shortag', 'competit', 'choic', 'consum', 'right', 'answer', 'ani', 'solut', 'howev', 'short', 'term', 'increas', 'suppli', 'reduc', 'demand', 'accept', 'eight', 'eleven', 'western', 'governor', 'oppos', 'price', 'cap', 'would', 'export', 'california', 'problem', 'west', 'thi', 'latest', 'intellig', 'I', 'matter', 'pretti', 'strong', 'anti', 'price', 'cap', 'posit', 'Of', 'cours', 'hebert', 'one', 'commission', '3', 'current', 'commiss', 'control', 'meet', 'agenda', 'draft', 'order', 'like', 'item', 'could', 'bump', 'agenda', 'hope', 'info', 'help', 'ray', 'phillip', 'K', 'allenect', '04252001', '0228', 'PM', 'To', 'ray', 'alvareznaenronenron', 'cc', 'subject', 'Re', 'thi', 'morn', 'commiss', 'meet', 'delay', 'are', 'behind', 'close', 'door', 'discuss', 'held', 'prior', 'meet', 'Is', 'potenti', 'surpris', 'announc', 'sort', 'fix', 'price', 'ga', 'power', 'cap', 'open', 'meet', 'final', 'happen']","[('price', 0.02555927), ('cap', 0.02555927), ('I', 0.022364348), ('meet', 0.01916943), ('never', 0.01277959), ('hebert', 0.01277959), ('answer', 0.01277959), ('commiss', 0.01277959), ('right', 0.009584674), ('order', 0.009584674)]",price,0.0255592
924,924,918,"['are', 'behind', 'close', 'door', 'discuss', 'held', 'prior', 'meet', 'Is', 'potenti', 'surpris', 'announc', 'sort', 'fix', 'price', 'ga', 'power', 'cap', 'open', 'meet', 'final', 'happen']","[('meet', 0.06976745), ('sort', 0.046511624), ('surpris', 0.046511624), ('final', 0.046511624), ('open', 0.046511624), ('cap', 0.046511624), ('power', 0.046511624), ('ga', 0.046511624), ('price', 0.046511624), ('fix', 0.046511624)]",meet,0.0697674
925,925,919,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
926,926,920,"['here', 'stab', 'talk', 'point', 'sent', 'ferc', 'along', 'ga', 'price', 'info', 'request', 'california', 'market', 'let', 'christi', 'know', 'disagr', 'addit', 'whatev', 'I', 'suppos', '215', 'today', 'stuff', 'add', 'get', 'christi', 'thank']","[('christi', 0.054545477), ('suppos', 0.036363635), ('disagr', 0.036363635), ('addit', 0.036363635), ('whatev', 0.036363635), ('I', 0.036363635), ('215', 0.036363635), ('get', 0.036363635), ('stuff', 0.036363635), ('let', 0.036363635)]",christi,0.05454547
927,927,921,"['work', 'thank']","[('work', 0.5), ('thank', 0.5)]",work,0.
928,928,922,"['Mr', 'allen', 'per', 'phone', 'convers', 'pleas', 'see', 'instruct', 'get', 'access', 'view', 'ferc', 'meet', 'pleas', 'advis', 'problem', 'question', 'concern', 'eric', 'benson', 'Sr', 'specialist', 'enron', 'govern', 'affair', 'the', 'america', '7138531711', 'forward', 'eric', 'bensonnaenron', '04242001', '0145', 'PM', 'janet', 'butler', '11062000', '0451', 'PM', 'To', 'ericbensonenroncom', 'stevekeanenroncom', 'richardshapiroenroncom', 'cc', 'subject', 'instruct', 'ferc', 'meet', 'As', 'long', 'configur', 'receiv', 'real', 'video', 'abl', 'access', 'ferc', 'meet', 'wednesday', 'novemb', '8', 'the', 'instruct', 'forward', 'janet', 'butleretsenron', '11062000', '0449', 'PM', 'janet', 'butler', '10312000', '0412', 'PM', 'To', 'christilnicolayenroncom', 'jame', 'D', 'steffesnaenronenron', 'rebeccacantrellenroncom', 'cc', 'shelley', 'cormanetsenronenron', 'subject', 'instruct', 'ferc', 'meet', 'here', 'url', 'address', 'capitol', 'connect', 'you', 'abl', 'simpli', 'click', 'url', 'come', 'thi', 'assum', 'comput', 'configur', 'real', 'videoaudio', 'We', 'pay', 'annual', 'contract', 'bill', 'cost', 'center', 'you', 'connect', 'tomorrow', 'long', 'access', 'real', 'video', 'httpwwwcapitolconnectiongmuedu', 'instruct', 'onc', 'capitol', 'connect', 'sight', 'click', 'ferc', 'click', 'first', 'line', 'either', 'click', 'box', 'dialogu', 'box', 'requir', 'person', 'name', 'enroni', 'password', 'fercnow', 'real', 'player', 'connect', 'meet', 'expand', 'screen', 'wish', 'easier', 'view', 'adjust', 'sound', 'wish']","[('meet', 0.023346402), ('instruct', 0.023346398), ('ferc', 0.023346398), ('PM', 0.019455317), ('click', 0.019455317), ('real', 0.019455317), ('connect', 0.019455317), ('janet', 0.015564235), ('access', 0.015564235), ('configur', 0.01167316)]",meet,0.02334640
929,929,923,"['frank', 'the', 'impli', 'risk', 'creat', 'san', 'juan', 'rocki', 'indec', 'partial', 'set', 'today', 'risk', 'long', 'futur', 'posit', 'whatev', 'risk', 'prior', 'matter', 'sinc', 'rest', 'book', 'short', 'price', 'larg', 'offset', 'If', 'var', 'calcul', 'match', 'compani', 'true', 'risk', 'need', 'revis', 'adjust', 'phillip']","[('risk', 0.068493225), ('var', 0.027397256), ('match', 0.027397256), ('short', 0.027397256), ('price', 0.027397256), ('larg', 0.027397256), ('offset', 0.027397256), ('If', 0.027397256), ('rest', 0.027397256), ('calcul', 0.027397256)]",risk,0.06849322
930,930,924,"['I', 'spoke', 'insur', 'compani', 'they', 'go', 'cancel', 'prorat', 'polici', 'work', 'kuo', 'issu', 'new', 'polici']","[('polici', 0.11111113), ('prorat', 0.07407407), ('cancel', 0.07407407), ('issu', 0.07407407), ('kuo', 0.07407407), ('work', 0.07407407), ('I', 0.07407407), ('insur', 0.07407407), ('they', 0.07407407), ('spoke', 0.07407407)]",polici,0.1111111
931,931,925,"['fyi', 'sell', '500d', 'socal', 'XH', 'lower', 'overal', 'desk', 'var', '8', 'million', 'sell', '500k', 'KV', 'lower', 'overal', 'desk', 'var', '4', 'million', 'frank']","[('million', 0.083333336), ('desk', 0.083333336), ('lower', 0.083333336), ('overal', 0.083333336), ('sell', 0.083333336), ('var', 0.083333336), ('4', 0.055555537), ('KV', 0.055555537), ('500k', 0.055555537), ('fyi', 0.055555537)]",million,0.08333333
932,932,926,"['griff', 'It', 'bidweek', 'I', 'need', 'provid', 'view', 'id', 'two', 'major', 'public', 'post', 'monthli', 'indec', 'pleas', 'email', 'id', 'password', 'follow', 'dexter', 'stei', 'natur', 'ga', 'intellig', 'dexterintelligencepresscom', 'lian', 'kucher', 'insid', 'ferc', 'lkuchmhcom', 'bidweek', 'way', 'critic', 'id', 'sent', 'asap', 'thank', 'help', 'phillip', 'allen']","[('id', 0.0519481), ('bidweek', 0.03896106), ('lkuchmhcom', 0.025974024), ('critic', 0.025974024), ('intellig', 0.025974024), ('dexterintelligencepresscom', 0.025974024), ('lian', 0.025974024), ('kucher', 0.025974024), ('insid', 0.025974024), ('ferc', 0.025974024)]",id,0.051948
933,933,927,"['send', 'resum', 'karen', 'buckley', 'I', 'believ', 'full', 'round', 'interview', 'trade', 'track', 'may']","[('round', 0.08333334), ('believ', 0.08333334), ('track', 0.08333334), ('trade', 0.08333334), ('interview', 0.08333334), ('send', 0.08333334), ('full', 0.08333334), ('karen', 0.08333334), ('buckley', 0.08333334), ('resum', 0.08333334)]",round,0.0833333
934,934,928,"['have', 'send', 'resum', 'karen', 'buckley', 'HR', 'there', 'new', 'round', 'trade', 'track', 'interview', 'may']","[('new', 0.07692308), ('there', 0.07692308), ('interview', 0.07692308), ('track', 0.07692308), ('trade', 0.07692308), ('round', 0.07692308), ('have', 0.07692308), ('resum', 0.07692308), ('buckley', 0.07692308), ('send', 0.07692308)]",new,0.0769230
935,935,929,"['andrea', 'after', 'review', 'bryan', 'hull', 'resum', 'I', 'think', 'would', 'best', 'suit', 'trade', 'track', 'program', 'pleas', 'forward', 'resum', 'karen', 'buckley', 'phillip']","[('resum', 0.0769231), ('trade', 0.05128205), ('best', 0.05128205), ('buckley', 0.05128205), ('karen', 0.05128205), ('forward', 0.05128205), ('pleas', 0.05128205), ('program', 0.05128205), ('track', 0.05128205), ('andrea', 0.05128205)]",resum,0.076923
936,936,930,"['I', 'think', 'chad', 'deserv', 'interview']","[('I', 0.2), ('think', 0.2), ('chad', 0.2), ('deserv', 0.2), ('interview', 0.2)]",I,0.
937,937,931,"['insid', 'nytimescom', 'the', 'new', 'york', 'time', 'web', 'wednesday', 'decemb', '13', '2000', 'dear', 'member', 'with', 'holiday', 'approach', 'weve', 'brought', 'togeth', 'inform', 'need', 'In', 'special', 'holiday', 'section', 'youll', 'find', 'review', 'holiday', 'film', 'buy', 'guid', 'technolog', 'expert', 'circuit', 'help', 'find', 'comput', 'electron', 'special', 'holiday', 'book', 'review', 'issu', 'inform', 'travel', 'snow', 'sun', 'fun', 'way', 'entertain', 'kid', 'theyr', 'home', 'vacat', 'holiday', 'updat', 'everi', 'day', 'holidayrel', 'inform', 'appear', 'the', 'new', 'york', 'time', 'avail', 'web', 'httpwwwnytimescompagesholidays1213c', 'elsewher', 'site', 'send', 'friend', 'famili', 'nytimescom', 'egreet', 'card', 'featur', 'holiday', 'photo', 'the', 'new', 'york', 'time', 'photo', 'archiv', 'download', 'new', 'holiday', 'screensav', 'includ', 'ten', 'photograph', 'the', 'time', 'celebr', 'magic', 'season', 'citi', 'httppostcardsnytimescomspecialspostcards1213c', 'At', 'abuzz', 'join', 'discuss', 'best', 'place', 'find', 'holiday', 'gift', 'onlin', 'httpnytimesabuzzcominteractions124643discussione1162', 'and', 'winetodaycom', 'youll', 'find', 'holiday', 'vine', 'food', 'wine', 'guid', 'help', 'plan', 'holiday', 'meal', 'select', 'one', 'five', 'classic', 'season', 'entre', 'let', 'winetodaycom', 'recommend', 'side', 'dish', 'dessert', 'perfect', 'wine', 'uncork', 'tabl', 'httpwinetodaycomholidayvine1213c', 'final', 'pleas', 'accept', 'best', 'wish', 'holiday', 'season', 'visit', 'special', 'onlin', 'egreet', 'card', 'httppostcardsnytimescomspecialspostcardsflash1213c', 'more', 'new', 'featur', '1', 'get', 'insight', 'latest', 'internet', 'trend', '2', 'how', 'depend', 'car', '3', 'enjoy', 'salsa', 'music', 'made', 'new', 'york', '4', 'rememb', 'john', 'lennon', '5', 'explor', 'exclus', 'chechnya', 'photo', 'documentari', '6', 'bring', 'today', 'news', 'famili', 'tabl', 'advertis', 'exclus', 'travel', 'opportun', 'awaycom', 'sign', 'free', 'travel', 'newslett', 'awaycom', 'discov', 'world', 'extraordinari', 'travel', 'destin', 'from', 'kayak', 'thailand', 'weekend', 'main', 'site', 'meet', 'level', 'expertis', 'servic', 'book', 'trip', 'click', 'get', 'away', 'daili', 'escap', 'newslett', 'httpwwwnytimescomadsemailawayindex3html', '1', 'get', 'insight', 'latest', 'internet', 'trend', 'At', 'end', 'tumultu', 'year', 'latest', 'edit', 'the', 'new', 'york', 'timess', 'ecommerc', 'section', 'look', 'larger', 'trend', 'busi', 'market', 'internet', 'articl', 'examin', 'medium', 'buy', 'email', 'market', 'interact', 'kiosk', 'nonprofit', 'recruit', 'celebr', 'endors', 'httpwwwnytimescomlibrarytech0012biztechtechnology1213c', '2', 'how', 'depend', 'car', 'ha', 'old', 'clunker', 'surviv', 'wind', 'fog', 'even', 'windshield', 'wiper', 'malfunct', 'winter', 'season', 'see', 'car', 'rank', 'among', 'reliabl', 'accord', 'JD', 'power', 'associ', '2000', 'vehicl', 'depend', 'studi', 'httpwwwnytimescomyrmodayauto1213c', '3', 'enjoy', 'salsa', 'music', 'made', 'new', 'york', 'our', 'latest', 'talk', 'music', 'featur', 'explor', 'histori', 'develop', 'salsa', 'It', 'includ', 'audiovisu', 'timelin', 'audio', 'interview', 'two', 'music', 'popular', 'artist', 'salsa', 'pioneer', 'johnni', 'pacheco', 'contemporari', 'singer', 'La', 'india', 'httpwwwnytimescomlibrarymusic102400salsaintrohtml1213c', '4', 'rememb', 'john', 'lennon', 'new', 'york', 'time', 'music', 'critic', 'allan', 'kozinn', 'lead', 'audio', 'round', 'tabl', 'discuss', 'life', 'work', 'john', 'lennon', '20', 'year', 'death', 'jack', 'dougla', 'produc', 'doubl', 'fantasi', 'jon', 'wiener', 'author', 'book', 'lennon', 'fbi', 'file', 'william', 'P', 'king', 'editor', 'beatlefan', 'also', 'includ', 'featur', 'radio', 'interview', 'Mr', 'lennon', 'yoko', 'ono', 'archiv', 'photograph', 'articl', 'httpwwwnytimescomlibrarymusic120800lennonindexhtml1213c', '5', 'explor', 'exclus', 'chechnya', 'photo', 'documentari', 'thi', 'special', 'photo', 'documentari', 'conflict', 'chechnya', 'bring', 'togeth', 'move', 'photograph', 'taken', 'jame', 'hill', 'the', 'new', 'york', 'time', 'uniqu', 'audio', 'diari', 'event', 'httpwwwnytimescomlibraryphotos1213c', '6', 'bring', 'today', 'news', 'famili', 'tabl', 'convers', 'starter', 'newest', 'featur', 'learn', 'network', 'help', 'parent', 'discu', 'day', 'news', 'child', 'monday', 'friday', 'convers', 'starter', 'offer', 'set', 'newsworthi', 'provoc', 'question', 'well', 'relat', 'articl', 'the', 'time', 'httpwwwnytimescomlearningparentsconversation1213c', 'thank', 'read', 'We', 'hope', 'youll', 'make', 'point', 'visit', 'u', 'today', 'everi', 'day', 'sincer', 'rich', 'meislin', 'editor', 'chief', 'new', 'york', 'time', 'digit', 'PS', 'If', 'friend', 'colleagu', 'might', 'interest', 'feel', 'free', 'forward', 'email', 'about', 'thi', 'email', 'your', 'registr', 'nytimescom', 'includ', 'permiss', 'send', 'inform', 'new', 'featur', 'servic', 'As', 'member', 'bbbonlin', 'privaci', 'program', 'trust', 'privaci', 'program', 'commit', 'protect', 'privaci', 'To', 'unsubscrib', 'futur', 'mail', 'visit', 'httpwwwnytimescomunsubscrib', 'To', 'chang', 'email', 'address', 'pleas', 'go', 'help', 'center', 'httpwwwnytimescomhelp', 'suggest', 'feedback', 'welcom', 'feedbacknytimescom', 'pleas', 'repli', 'directli', 'email']","[('new', 0.015312438), ('holiday', 0.014134551), ('york', 0.011778774), ('time', 0.010600888), ('the', 0.009423001), ('featur', 0.008245113), ('email', 0.007067225), ('lennon', 0.007067225), ('music', 0.007067225), ('photo', 0.007067225)]",new,0.01531243
938,938,932,"['leslieaft', 'see', 'point', '3', 'write', 'I', 'would', 'extrem', 'reluct', 'submit', 'thi', 'kind', 'conjectur', 'market', 'manipul', 'come', 'u', 'would', 'serv', 'fuel', 'fire', 'naysay', 'I', 'would', 'delet', 'thank', 'from', 'lesli', 'lawner', '12122000', '1156', 'AM', 'To', 'christi', 'L', 'nicolayhouectect', 'joe', 'hartsoecorpenronenron', 'rebecca', 'W', 'cantrellhouectect', 'ruth', 'concannonhouectect', 'stephani', 'millercorpenronenron', 'phillip', 'K', 'allenhouectect', 'jane', 'M', 'tholthouectect', 'richard', 'shapironaenronenron', 'cc', 'subject', 'talk', 'point', 'california', 'ga', 'market', 'here', 'stab', 'talk', 'point', 'sent', 'ferc', 'along', 'ga', 'price', 'info', 'request', 'california', 'market', 'let', 'christi', 'know', 'disagr', 'addit', 'whatev', 'I', 'suppos', '215', 'today', 'stuff', 'add', 'get', 'christi', 'thank']","[('would', 0.024691401), ('I', 0.024691401), ('christi', 0.024691401), ('point', 0.024691401), ('market', 0.024691401), ('talk', 0.018518534), ('california', 0.018518534), ('ga', 0.018518534), ('thank', 0.018518534), ('subject', 0.0123456735)]",would,0.02469140
939,939,933,"['johnni', 'thank', 'meet', 'friday', 'I', 'left', 'feel', 'optimist', 'panel', 'system', 'I', 'would', 'like', 'find', 'way', 'incorpor', 'panel', 'home', 'design', 'I', 'show', 'In', 'order', 'make', 'feasibl', 'within', 'budget', 'I', 'sure', 'take', 'sever', 'iter', 'the', 'prospect', 'purchas', 'panel', 'framer', 'instal', 'may', 'consid', 'howev', 'first', 'choic', 'would', 'gener', 'contractor', 'I', 'realiz', 'receiv', 'number', 'call', 'seek', 'inform', 'product', 'littl', 'probabl', 'sale', 'I', 'want', 'assur', 'I', 'go', 'build', 'hous', 'fall', 'I', 'would', 'serious', 'consid', 'use', 'panel', 'system', 'truli', 'slight', 'increas', 'cost', 'stick', 'built', 'pleas', 'email', 'cost', 'estim', 'complet', 'thank', 'phillip', 'allen']","[('I', 0.057692524), ('panel', 0.03205136), ('would', 0.025641069), ('consid', 0.019230783), ('system', 0.019230783), ('cost', 0.019230783), ('thank', 0.019230783), ('littl', 0.012820507), ('sale', 0.012820507), ('want', 0.012820507)]",I,0.05769252
940,940,941,"['wholesal', 'servic', 'ee', 'ga', 'desk', 'approv', 'trader', 'list', 'name', 'titl', 'region', 'basi', 'onli', 'black', 'don', 'vice', 'presid', 'ani', 'desk', 'hewitt', 'jess', 'director', 'all', 'desk', 'vanderhorst', 'barri', 'director', 'east', 'west', 'shireman', 'kri', 'director', 'west', 'de', 'champ', 'joe', 'director', 'central', 'reynold', 'roger', 'director', 'west', 'migliano', 'andi', 'manag', 'central', 'wiltfong', 'jim', 'manag', 'all', 'desk', 'barker', 'jim', 'Sr', 'specialist', 'east', 'fleme', 'matt', 'Sr', 'specialist', 'east', 'basi', 'tate', 'paul', 'Sr', 'specialist', 'east', 'basi', 'driscol', 'mard', 'Sr', 'specialist', 'east', 'basi', 'arnold', 'laura', 'Sr', 'specialist', 'central', 'basi', 'blain', 'jay', 'Sr', 'specialist', 'east', 'basi', 'guerra', 'jesu', 'Sr', 'specialist', 'central', 'basi', 'bangl', 'christina', 'Sr', 'specialist', 'east', 'basi', 'smith', 'rhonda', 'Sr', 'specialist', 'east', 'basi', 'boettcher', 'amanda', 'Sr', 'specialist', 'central', 'basi', 'pendegraft', 'sherri', 'Sr', 'specialist', 'east', 'basi', 'rubi', 'robinson', 'specialist', 'west', 'basi', 'diza', 'alain', 'specialist', 'east', 'basi', 'monday', 'april', '16', '2001', 'jess', 'P', 'hewitt', 'revis', 'approv', 'trader', 'listdoc']","[('basi', 0.066666946), ('specialist', 0.066666946), ('Sr', 0.057143092), ('east', 0.052381154), ('central', 0.02857149), ('director', 0.02857149), ('desk', 0.023809563), ('west', 0.023809558), ('jess', 0.014285705), ('manag', 0.014285705)]",basi,0.06666694
941,941,942,"['the', 'insur', 'compani', 'central', 'insur', 'agenc', 'inc', '6000', 'N', 'lamar', 'PO', 'box', '15427', 'austin', 'TX', '787615427', 'polici', 'cbi420478', 'contact', 'jeanett', 'peterson', '5124516551', 'the', 'actual', 'polici', 'sign', 'vista', 'insur', 'partner', 'pleas', 'tri', 'schedul', 'apprais', 'sometim', '1', 'pm', 'dad', 'walk', 'around', 'I', 'town', 'tuesday', 'what', 'els', 'need', 'get', 'done', 'close', 'phillip']","[('insur', 0.042553235), ('the', 0.03191491), ('polici', 0.03191491), ('pm', 0.021276593), ('1', 0.021276593), ('apprais', 0.021276593), ('sometim', 0.021276593), ('tri', 0.021276593), ('schedul', 0.021276593), ('pleas', 0.021276593)]",insur,0.04255323
942,942,943,"['I', 'will', 'talk', 'TO', 'lutz', 'about', 'hi', 'share', 'OF', 'the', 'legal', 'bill', 'basic', 'market', 'plan', 'for', 'stage', 'coach', '1', 'mail', 'out', 'flyer', 'TO', 'all', 'apt', 'owner', 'IN', 'seguin', 'follow', 'UP', 'with', 'phone', 'call', 'TO', 'good', 'potenti', 'buyer', '2', 'mail', 'out', 'flyer', 'TO', 'owner', 'IN', 'san', 'antonio', 'and', 'austinsimilar', 'size', 'properti', '3', 'enter', 'the', 'info', 'ON', 'TO', 'variou', 'internet', 'site', '4', 'advertis', 'ON', 'cib', 'network', 'sent', 'BY', 'email', 'TO', '2000', 'broker', '5', 'place', 'IN', 'austin', 'ml', '6', 'advertis', 'IN', 'san', 'antonio', 'and', 'austin', 'paper', 'ON', 'sunday', '7', 'email', 'TO', 'MY', 'list', 'OF', '400', 'buyer', 'and', 'broker', '8', 'follow', 'UP', 'with', 'phone', 'call', 'TO', 'most', 'appropri', 'buyer', 'IN', 'MY', 'list', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'monday', 'decemb', '11', '2000', '244', 'PM', 'To', 'jsmithaustintxcom', 'subject', 'jeff', 'the', 'file', 'attach', 'contain', 'oper', 'statement', '2000', 'proforma', '2001', 'I', 'follow', 'week', 'current', 'rentrol', 'see', 'attach', 'file', 'noixl', 'regard', 'leander', 'land', 'I', 'work', 'van', 'get', 'loan', 'apprais', 'I', 'send', 'check', '250', 'wasnt', 'I', 'suppos', 'get', 'check', 'matt', 'lutz', '333', 'part', 'brenda', 'stone', 'legal', 'bill', 'I', 'dont', 'think', 'I', 'receiv', 'can', 'follow', 'when', 'get', 'chanc', 'pleas', 'fill', 'market', 'strategi', 'stagecoach', 'phillip']","[('TO', 0.028939102), ('I', 0.025723632), ('IN', 0.019292701), ('follow', 0.016077235), ('2000', 0.0128617715), ('and', 0.0128617715), ('buyer', 0.0128617715), ('get', 0.0128617715), ('ON', 0.0128617715), ('the', 0.0128617715)]",TO,0.02893910
943,943,944,"['I', 'email', 'insur', 'info', 'tomorrow']","[('I', 0.2), ('email', 0.2), ('insur', 0.2), ('info', 0.2), ('tomorrow', 0.2)]",I,0.
944,944,945,"['yet', 'even', 'without', 'new', 'plant', 'look', 'like', 'Q3', 'wors', 'last', 'year', 'can', 'take', 'look', 'get', 'back', 'bullish', 'case', 'thank', 'phillip']","[('look', 0.0769231), ('can', 0.05128205), ('last', 0.05128205), ('thank', 0.05128205), ('case', 0.05128205), ('bullish', 0.05128205), ('back', 0.05128205), ('get', 0.05128205), ('take', 0.05128205), ('yet', 0.05128205)]",look,0.076923
945,945,946,"['here', 'simplist', 'spreadsheet', 'I', 'didnt', 'drop', 'new', 'gener', 'yet', 'even', 'without', 'new', 'plant', 'look', 'like', 'Q3', 'wors', 'last', 'year', 'can', 'take', 'look', 'get', 'back', 'bullish', 'case', 'thank', 'phillip']","[('look', 0.055555575), ('new', 0.055555575), ('last', 0.037037037), ('year', 0.037037037), ('can', 0.037037037), ('take', 0.037037037), ('Q3', 0.037037037), ('get', 0.037037037), ('thank', 0.037037037), ('case', 0.037037037)]",look,0.05555557
946,946,947,"['I', 'tri', 'get', 'dad', 'take', 'apprais', 'coupl', 'unit', 'let', 'know', 'day', 'time', 'phillip']","[('unit', 0.07692308), ('coupl', 0.07692308), ('time', 0.07692308), ('day', 0.07692308), ('know', 0.07692308), ('let', 0.07692308), ('I', 0.07692308), ('get', 0.07692308), ('take', 0.07692308), ('tri', 0.07692308)]",unit,0.0769230
947,947,948,"['larri', 'It', 'sound', 'like', 'claudia', 'jacqu', 'almost', 'finish', 'document', 'there', 'one', 'item', 'I', 'unsur', 'wa', 'environment', 'report', 'prepar', 'origin', 'purchas', 'If', 'ye', 'shouldnt', 'list', 'asset', 'partnership', 'cost', 'recov', 'phillip']","[('ye', 0.034482755), ('list', 0.034482755), ('prepar', 0.034482755), ('origin', 0.034482755), ('purchas', 0.034482755), ('If', 0.034482755), ('environment', 0.034482755), ('shouldnt', 0.034482755), ('recov', 0.034482755), ('partnership', 0.034482755)]",ye,0.03448275
948,948,949,"['luci', 'the', 'spreadsheet', 'look', 'fine', 'phillip']","[('luci', 0.16666667), ('the', 0.16666667), ('spreadsheet', 0.16666667), ('look', 0.16666667), ('fine', 0.16666667), ('phillip', 0.16666667)]",luci,0.1666666
949,949,950,"['bruce', 'thank', 'bid', 'I', 'decid', 'floor', 'plan', 'I', 'go', 'architect', 'austin', 'draw', 'plan', 'help', 'work', 'detail', 'specif', 'list', 'I', 'send', 'detail', 'plan', 'spec', 'list', 'complet', 'final', 'bid', 'probabl', 'earli', 'mid', 'june', 'phillip']","[('I', 0.07017548), ('plan', 0.07017548), ('list', 0.052631594), ('detail', 0.052631594), ('bid', 0.052631594), ('complet', 0.035087712), ('final', 0.035087712), ('send', 0.035087712), ('spec', 0.035087712), ('mid', 0.035087712)]",I,0.0701754
950,950,951,"['north', 'america', 'corp', 'from', 'stephen', 'swain', '04102001', '1158', 'AM', 'To', 'phillip', 'K', 'allenhouectect', 'cc', 'tim', 'heizenraderpdxectect', 'tim', 'beldenhouectect', 'matt', 'motleypdxectect', 'michael', 'M', 'driscollpdxectect', 'chri', 'mallorypdxectect', 'jeff', 'richterhouectect', 'robert', 'badeerhouectect', 'sean', 'crandallpdxectect', 'mark', 'fischerpdxectect', 'bill', 'william', 'iiipdxectect', 'diana', 'scholteshouectect', 'subject', 'caiso', 'demand', 'reduct', 'phillip', 'et', 'al', 'I', 'dig', 'answer', 'question', 'demand', 'reduct', 'west', 'your', 'intuit', 'reduct', 'seen', 'far', 'eg', 'march', '2001', 'v', 'march', '2000', 'absolut', 'correct', 'At', 'point', 'appear', 'demand', 'last', '12', 'month', 'caiso', 'control', 'area', 'adjust', 'temperatur', 'time', 'use', 'factor', 'fallen', '6', 'thi', 'translat', 'reduct', '15001600', 'mwa', 'last', 'month', 'march', '2001', 'compar', 'previou', 'year', 'look', 'forward', 'summer', 'I', 'believ', 'see', 'voluntari', 'reduct', 'oppos', 'forc', 'reduct', 'via', 'roll', 'blackout', 'other', 'forecast', 'eg', 'pira', 'estim', 'anoth', '12001300', 'mwa', 'make', 'total', 'yearonyear', 'reduct', '27002800', 'come', 'start', 'june', 'thi', 'scenario', 'difficult', 'imagin', 'would', 'requir', 'coupl', 'percentag', 'point', 'reduct', 'overal', 'peak', 'demand', 'given', '6', 'decreas', 'seen', 'far', 'come', 'without', 'real', 'price', 'signal', 'retail', 'market', 'rate', 'schedul', 'increas', 'I', 'think', 'possibl', 'could', 'see', 'peak', 'demand', 'fall', 'much', '10', 'rel', 'last', 'year', 'thi', 'would', 'mean', 'peak', 'demand', 'reduct', 'approx', '33003500', 'mwa', 'junaug', 'In', 'addit', 'number', 'effort', 'aim', 'specif', 'conserv', 'promot', 'state', 'increas', 'likelihood', 'meet', 'perhap', 'exceed', '3500', 'mwa', 'figur', 'final', 'gener', 'econom', 'slowdown', 'calif', 'could', 'also', 'depress', 'demand', 'least', 'make', '3500', 'mwa', 'number', 'much', 'attain', 'note', 'number', 'I', 'report', 'caiso', 'control', 'area', 'repres', '89', 'total', 'calif', 'load', '3637', 'wscc', 'US', 'summer', 'load', 'I', 'think', 'reason', 'assum', 'noniso', 'portion', 'calif', 'ie', 'ladwp', 'iid', 'see', 'similar', 'reduct', 'demand', 'As', 'rest', 'wscc', 'much', 'difficult', 'call', 'As', 'awar', 'pacif', 'NW', 'alreadi', 'seen', '2000', 'mwa', 'aluminum', 'smelter', 'load', 'come', 'sinc', 'dec', 'load', 'expect', 'stay', 'least', 'sep', 'possibl', 'next', 'coupl', 'year', 'bpa', 'get', 'wish', 'thi', 'figur', 'repres', 'approx', '4', 'noncalif', 'wscc', 'sever', 'mine', 'oper', 'SW', 'rocki', 'recent', 'announc', 'sharpli', 'curtail', 'product', 'I', 'yet', 'abl', 'pin', 'exactli', 'mani', 'MW', 'translat', 'I', 'continu', 'research', 'issu', 'other', 'larg', 'industri', 'may', 'follow', 'suit', 'rippl', 'effect', 'calif', 'econom', 'slowdown', 'could', 'factor', 'throughout', 'west', 'while', 'rest', 'wscc', 'may', 'see', '10', 'reduct', 'I', 'expect', 'calif', 'I', 'think', 'could', 'easili', 'expect', 'addit', '23', 'top', '4', 'alreadi', 'realiz', 'approx', '10001500', 'mwa', 'demand', 'reduct', 'noncalif', 'wscc', 'summer', 'thi', 'would', 'bring', 'total', 'reduct', 'wscc', 'includ', '2000', 'mwa', 'aluminum', 'load', 'alreadi', 'seen', 'around', '65007000', 'mwa', 'compar', 'last', 'summer', 'I', 'continu', 'research', 'monitor', 'situat', 'provid', 'updat', 'new', 'better', 'inform', 'becom', 'avail', 'meantim', 'I', 'hope', 'help', 'pleas', 'feel', 'free', 'call', '5034648671', 'question', 'need', 'inform']","[('reduct', 0.021978365), ('I', 0.018838584), ('demand', 0.0156988), ('mwa', 0.0156988), ('wscc', 0.0109891305), ('thi', 0.009419241), ('calif', 0.009419241), ('load', 0.009419241), ('could', 0.007849352), ('seen', 0.007849352)]",reduct,0.02197836
951,951,952,"['luci', 'here', 'rentrol', 'last', 'friday', 'the', 'close', 'thursday', 'delay', 'friday', 'april', '20th', 'If', 'stay', 'april', '20th', 'would', 'help', 'If', 'made', 'commit', 'I', 'understand', 'gari', 'plan', 'put', 'AC', '35', 'you', 'give', 'work', 'numer', '713', '8537041', 'phillip']","[('april', 0.045454573), ('friday', 0.045454573), ('If', 0.045454573), ('20th', 0.045454573), ('you', 0.030303033), ('plan', 0.030303033), ('put', 0.030303033), ('AC', 0.030303033), ('35', 0.030303033), ('understand', 0.030303033)]",april,0.04545457
952,952,953,"['thank', 'help']","[('thank', 0.5), ('help', 0.5)]",thank,0.
953,953,954,"['greg', 'the', 'kid', 'typic', 'toy', 'game', 'justin', 'like', 'power', 'ranger', 'stuff', 'kelsey', 'realli', 'like', 'art', 'book', 'would', 'also', 'good', 'We', 'spend', 'christma', 'houston', 'heather', 'sister', 'We', 'plan', 'come', 'san', 'marco', 'new', 'year', 'how', 'long', 'stay', 'plan', 'email', 'latest', 'happen', 'big', 'citi', 'keith']","[('We', 0.03703706), ('plan', 0.03703706), ('like', 0.03703706), ('year', 0.024691358), ('long', 0.024691358), ('sister', 0.024691358), ('come', 0.024691358), ('san', 0.024691358), ('marco', 0.024691358), ('new', 0.024691358)]",We,0.0370370
954,954,955,"['jed', 'thank', 'respons', 'phillip', 'allen']","[('jed', 0.2), ('thank', 0.2), ('respons', 0.2), ('phillip', 0.2), ('allen', 0.2)]",jed,0.
955,955,956,"['the', 'follow', 'price', 'request', 'unfortun', 'unwil', 'transact', 'level', 'due', 'current', 'market', 'volatil', 'consid', 'accur', 'market', 'price', 'may01oct01', 'socaljuan', 'offer', '870', 'usdmmbtu', 'apr02oct02', 'socaljuan', 'offer', '353', 'usdmmbtu', 'our', 'present', 'valu', 'mark', 'market', 'calcul', 'trade', 'follow', 'may01oct01', '30000day', '05975', '44165200', 'apr02oct02', '060', '5920980', 'apr02oct02', '0745', '5637469', 'apr02oct02', '055', '3006092', 'If', 'question', 'call', '203', '3555059', 'jed', 'hershey', 'thi', 'email', 'contain', 'privileg', 'attorneycli', 'commun', 'andor', 'confidenti', 'inform', 'use', 'intend', 'recipi', 'receipt', 'unintend', 'recipi', 'constitut', 'waiver', 'applic', 'privileg', 'read', 'disclosur', 'discuss', 'dissemin', 'distribut', 'copi', 'inform', 'anyon', 'intend', 'recipi', 'employe', 'agent', 'strictli', 'prohibit', 'If', 'receiv', 'commun', 'error', 'pleas', 'immedi', 'notifi', 'u', 'delet', 'origin', 'materi', 'comput', 'sempra', 'energi', 'trade', 'corp', 'set', 'compani', 'sdge', 'socalga', 'util', 'own', 'set', 'parent', 'compani', 'set', 'regul', 'california', 'public', 'util', 'commiss', 'buy', 'set', 'product', 'servic', 'continu', 'receiv', 'qualiti', 'regul', 'servic', 'util']","[('set', 0.021929903), ('apr02oct02', 0.021929903), ('recipi', 0.0175439), ('market', 0.0175439), ('util', 0.0175439), ('privileg', 0.013157911), ('usdmmbtu', 0.013157911), ('socaljuan', 0.013157911), ('regul', 0.013157911), ('trade', 0.013157911)]",set,0.02192990
956,956,957,"['reagan', 'I', 'sent', 'email', 'last', 'week', 'state', 'I', 'would', 'san', 'marco', 'friday', 'april', '13th', 'howev', 'close', 'postpon', 'As', 'I', 'mention', 'I', 'go', 'cari', 'kipp', 'draw', 'plan', 'resid', 'I', 'get', 'back', 'touch', 'finish', 'regard', 'multifamili', 'project', 'I', 'go', 'work', 'project', 'manag', 'san', 'antonio', 'for', 'first', 'develop', 'project', 'I', 'feel', 'comfort', 'experi', 'obtain', 'fha', 'financ', 'We', 'work', 'kipp', 'flore', 'final', 'floor', 'plan', 'begin', 'construct', 'draw', 'your', 'bid', 'construct', 'compet', 'construct', 'estim', 'I', 'still', 'attract', 'firm', 'possibl', 'builder', 'due', 'strong', 'local', 'relationship', 'I', 'get', 'back', 'touch', 'made', 'final', 'determin', 'unit', 'mix', 'site', 'plan', 'phillip', 'allen']","[('I', 0.062112026), ('construct', 0.024844756), ('project', 0.024844756), ('plan', 0.024844756), ('go', 0.01863355), ('get', 0.01863355), ('back', 0.01863355), ('touch', 0.01863355), ('draw', 0.01863355), ('work', 0.01863355)]",I,0.06211202
957,957,958,"['jacqu', 'the', 'amount', 'need', 'fill', 'blank', 'exhibit', 'B', 'follow', 'kipp', 'florestot', 'contract', '23600', '2375', 'paid', '21225', 'outstand', 'kohutek', '2150', 'cuatro', '37800', 'georg', 'larri', 'paid', '3500', 'apprais', 'I', 'agre', 'reimburs', 'amount', 'the', 'total', 'cash', 'keith', 'I', 'pay', 'seller', '5875', '3500', 'apprais', '2375', 'engin', 'I', 'couldnt', 'find', 'refer', 'cash', 'consider', 'paid', 'buyer', 'let', 'know', 'I', 'need', 'anyth', 'els', 'forward', 'seller', 'execut', 'phillip']","[('I', 0.046729036), ('paid', 0.037383217), ('3500', 0.028037395), ('amount', 0.028037395), ('need', 0.028037395), ('apprais', 0.028037395), ('the', 0.028037395), ('cash', 0.028037395), ('2375', 0.028037395), ('seller', 0.028037395)]",I,0.04672903
958,958,959,"['john', 'regard', 'employ', 'agreement', 'mike', 'declin', 'without', 'counter', 'keith', 'said', 'would', 'sign', '75k', 'cash250', 'equiti', 'I', 'still', 'believ', 'frank', 'receiv', 'sign', 'incent', 'keith', 'phillip']","[('sign', 0.06521742), ('keith', 0.06521742), ('still', 0.04347826), ('equiti', 0.04347826), ('I', 0.04347826), ('believ', 0.04347826), ('incent', 0.04347826), ('receiv', 0.04347826), ('would', 0.04347826), ('frank', 0.04347826)]",sign,0.0652174
959,959,960,"['thank', 'respons', 'I', 'think', 'right', 'engag', 'architect', 'next', 'logic', 'step', 'I', 'alreadi', 'contact', 'cari', 'kipp', 'sent', 'floor', 'plan', 'He', 'got', 'back', 'yesterday', 'first', 'draft', 'He', 'took', 'plan', 'improv', 'I', 'go', 'offici', 'engag', 'cari', 'draw', 'plan', 'while', 'work', 'I', 'want', 'tri', 'work', 'detail', 'specif', 'list', 'also', 'I', 'would', 'like', 'visit', 'coupl', 'home', 'built', 'speak', '1', '2', 'satisfi', 'home', 'owner', 'I', 'san', 'marco', 'friday', 'april', '13th', 'are', 'home', 'near', 'complet', 'I', 'could', 'walk', 'day', 'also', 'provid', 'refer', 'onc', 'I', 'plan', 'spec', 'I', 'send', 'adjust', 'bid', 'phillip']","[('I', 0.0666669), ('plan', 0.0333334), ('home', 0.026666699), ('cari', 0.02000001), ('He', 0.02000001), ('work', 0.02000001), ('also', 0.02000001), ('engag', 0.02000001), ('2', 0.013333324), ('1', 0.013333324)]",I,0.066666
960,960,961,"['one', 'desk', 'would', 'interest', 'meet', 'new', 'ga', 'desk', 'team', 'httpwwwamericangreetingscompickuppdi172082367m1891', 'thank', 'jess']","[('desk', 0.13043483), ('one', 0.08695652), ('would', 0.08695652), ('interest', 0.08695652), ('meet', 0.08695652), ('new', 0.08695652), ('ga', 0.08695652), ('team', 0.08695652), ('httpwwwamericangreetingscompickuppdi172082367m1891', 0.08695652), ('thank', 0.08695652)]",desk,0.1304348
961,961,962,"['jacqu', 'the', 'asset', 'liabil', 'will', 'assum', 'list', 'asset', 'land', 'preliminari', 'architectur', 'designkipp', 'flore', 'architect', 'preliminari', 'engineeringcuatro', 'consult', 'ltd', 'soil', 'studykohutek', 'engin', 'test', 'inc', 'appraisalatrium', 'real', 'estat', 'servic', 'liabil', 'note', 'phillip', 'allen', 'outstand', 'invoic', 'kipp', 'flore', 'cuatro', 'kohutek', 'addit', 'consider', 'concess', 'forgiv', 'interest', 'due', 'reimburs', '3500', 'apprais', '2375', 'partial', 'payment', 'engin', 'let', 'know', 'need', 'detail', 'phillip']","[('asset', 0.028846169), ('liabil', 0.028846169), ('engin', 0.028846169), ('flore', 0.028846169), ('phillip', 0.028846169), ('preliminari', 0.028846169), ('consider', 0.019230766), ('kohutek', 0.019230766), ('concess', 0.019230766), ('interest', 0.019230766)]",asset,0.02884616
962,962,963,"['My', 'locat', 'eb3210c']","[('My', 0.33333334), ('locat', 0.33333334), ('eb3210c', 0.33333334)]",My,0.3333333
963,963,964,"['the', 'enron', 'center', 'garag', 'open', 'soon', 'employe', 'work', 'busi', 'unit', 'schedul', 'move', 'new', 'build', 'current', 'park', 'allen', 'center', 'met', 'garag', 'offer', 'park', 'space', 'new', 'enron', 'center', 'garag', 'thi', 'offer', 'receiv', 'initi', 'migrat', 'new', 'garag', 'space', 'fill', 'first', 'come', 'first', 'serv', 'basi', 'the', 'cost', 'new', 'garag', 'allen', 'center', 'garag', 'current', '16500', 'per', 'month', 'le', 'compani', 'subsidi', 'leav', 'monthli', 'employe', 'cost', '9400', 'If', 'choos', 'accept', 'offer', 'time', 'may', 'add', 'name', 'enron', 'center', 'garag', 'wait', 'list', 'later', 'day', 'offer', 'made', 'space', 'becom', 'avail', 'the', 'saturn', 'ring', 'connect', 'garag', 'build', 'open', 'summer', '2001', 'all', 'initi', 'parker', 'use', 'street', 'level', 'entranc', 'enron', 'center', 'north', 'saturn', 'ring', 'access', 'avail', 'garag', 'stairway', 'next', 'elev', 'lobbi', 'floor', 'may', 'use', 'exit', 'event', 'elev', 'troubl', 'If', 'interest', 'accept', 'offer', 'pleas', 'repli', 'via', 'email', 'park', 'transport', 'soon', 'reach', 'decis', 'follow', 'email', 'arrang', 'made', 'turn', 'old', 'park', 'card', 'receiv', 'park', 'transpond', 'along', 'new', 'inform', 'packet', 'new', 'garag', 'the', 'park', 'transport', 'desk', 'may', 'reach', 'via', 'email', 'park', 'transportationcorpenron', '7138537060', 'question', 'you', 'must', 'enter', 'exit', 'clay', 'St', 'first', 'two', 'week', 'also', 'pedestrian', 'use', 'garag', 'stairwel', 'locat', 'corner', 'bell', 'smith']","[('garag', 0.042253785), ('park', 0.028169157), ('center', 0.024648001), ('new', 0.024648001), ('offer', 0.021126844), ('the', 0.017605685), ('enron', 0.017605685), ('use', 0.014084533), ('first', 0.014084533), ('email', 0.014084533)]",garag,0.04225378
964,964,965,"['luci', 'here', 'final', '1201', 'rentrol', 'save', 'My', 'question', '1', 'neil', 'moreno', '21he', 'paid', '120', '1124', 'pay', 'anyth', '1201', 'even', 'want', 'swich', 'biweekli', 'need', 'pay', 'begin', 'two', 'week', 'period', 'what', 'go', '2', 'gilbert', '27i', 'late', 'here', 'file', '1208']","[('here', 0.04225354), ('1201', 0.04225354), ('pay', 0.04225354), ('period', 0.028169012), ('go', 0.028169012), ('need', 0.028169012), ('begin', 0.028169012), ('two', 0.028169012), ('week', 0.028169012), ('swich', 0.028169012)]",here,0.0422535
965,965,966,['httpswww4rswebcom61045'],"[('httpswww4rswebcom61045', 1.0)]",,
966,966,967,"['jacqu', 'I', 'offic', 'rest', 'week', 'have', 'ever', 'seen', 'anyon', 'miss', 'much', 'work', 'I', 'last', '6', 'week', 'I', 'assur', 'unusu', 'hope', 'sign', 'document', 'monday', 'call', 'cell', 'phone', 'need', 'phillip']","[('I', 0.07547176), ('week', 0.056603797), ('document', 0.037735846), ('unusu', 0.037735846), ('hope', 0.037735846), ('sign', 0.037735846), ('assur', 0.037735846), ('monday', 0.037735846), ('need', 0.037735846), ('phone', 0.037735846)]",I,0.0754717
967,967,968,"['reagan', 'I', 'still', 'review', 'number', 'initi', 'thought', 'are', 'propos', 'cost', 'plu', 'contract', 'cap', 'what', 'role', 'would', 'play', 'obtain', 'financ', 'ani', 'experi', 'fha', '221d', 'loan', 'although', 'fee', 'lower', 'georg', 'larri', 'I', 'still', 'get', 'market', 'quot', 'lower', 'yet', 'I', 'receiv', 'estim', 'structur', 'follow', '5', 'onsit', 'expens', 'supervis', 'clean', 'equip', '2', 'overhead', '4', 'profit', 'I', 'want', 'give', 'initi', 'feedback', 'I', 'also', 'attach', 'extrem', 'primit', 'spreadsheet', 'outlin', 'project', 'As', 'see', 'even', 'reduc', 'builder', 'fee', 'number', 'project', 'would', 'gener', '219194', 'cash', 'flow', 'return', '21', 'I', 'thrill', 'low', 'return', 'I', 'think', 'I', 'need', 'find', 'way', 'get', 'total', 'cost', '10500000', 'would', 'boost', 'return', '31', 'ani', 'idea', 'I', 'realiz', 'offer', 'signific', 'develop', 'experi', 'plu', 'local', 'connect', 'I', 'discount', 'servic', 'I', 'offic', 'rest', 'week', 'I', 'call', 'earli', 'next', 'week', 'phillip']","[('I', 0.060465455), ('would', 0.018604692), ('return', 0.018604692), ('cost', 0.0139534995), ('fee', 0.0139534995), ('lower', 0.0139534995), ('plu', 0.0139534995), ('experi', 0.0139534995), ('week', 0.0139534995), ('initi', 0.0139534995)]",I,0.06046545
968,968,969,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
969,969,970,"['cari', 'here', 'pictur', 'hous', 'I', 'mind', 'I', 'go', 'simpl', 'farmhous', 'style', 'place', '5', 'acr', 'near', 'wimberley', 'A', 'point', 'might', 'obviou', 'plan', 'there', 'doubl', 'porch', 'across', 'back', 'like', 'front', 'No', 'dormer', 'metal', 'roof', '12', 'bath', 'stair', 'overal', 'dimens', '55', '40', 'what', 'I', 'look', 'littl', 'design', 'help', 'kitchen', 'more', 'cabinet', 'mayb', 'differ', 'shape', 'island', 'way', 'enlarg', 'pantri', 'reagan', 'suggest', 'I', 'find', 'way', 'make', 'exterior', 'attract', 'I', 'want', 'keep', 'simpl', 'roof', 'line', 'avoid', 'leak', 'I', 'think', 'bring', 'left', 'side', 'forward', 'front', 'hous', 'place', '1', 'gabl', 'front', 'that', 'might', 'look', 'good', 'exterior', 'stone', 'stucco', 'also', 'front', 'porch', 'would', 'smaller', 'I', '3', 'bid', 'builder', 'around', '325000', 'I', 'readi', 'go', 'ahead', 'plan', 'done', 'I', 'spec', 'finish', 'choos', 'builder', 'I', 'want', 'give', 'opportun', 'work', 'As', 'I', 'mention', 'altern', '060ft', 'I', 'thought', 'sinc', 'I', 'detail', 'sketch', 'might', 'consid', 'job', 'le', '6000', 'reagan', 'allow', 'phillip', 'allen', '7138537041', 'forward', 'phillip', 'K', 'allenhouect', '03292001', '0910', 'AM', 'hunter', 'S', 'shive', '03262001', '1001', 'AM', 'To', 'phillipkallenenroncom', 'cc', 'subject', 'see', 'attach', 'file', 'f828fa00pdf', 'see', 'attach', 'file', 'f828fa00pdf', 'f828fa00pdf']","[('I', 0.048276223), ('front', 0.017241446), ('f828fa00pdf', 0.013793142), ('might', 0.013793142), ('want', 0.010344838), ('builder', 0.010344838), ('plan', 0.010344838), ('AM', 0.010344838), ('reagan', 0.010344838), ('exterior', 0.010344838)]",I,0.04827622
970,970,971,"['transcript', 'session', 'follow', 'scsatkfacaprocknet', 'the', 'person', 'email', 'name', 'found', 'receiv', 'postmasterenroncom', '1921521409', 'mail1caprocknet', 'microsoft', 'smtpsvc55187719719', 'thu', '29', 'mar', '2001', '093649', '0600', 'receiv', 'mailmanenroncom', 'mailmanenroncom', '19216818966', 'postmasterenroncom', '888888postmaster100', 'esmtp', 'id', 'pab09150', 'scsatkfacaprocknet', 'thu', '29', 'mar', '2001', '154203', 'gmt', 'from', 'phillipkallenenroncom', 'receiv', 'nahoumsmsw03pxcorpenroncom', '172281039', 'mailmanenroncom', '81018101corp105', 'esmtp', 'id', 'f2tfg2l03725', 'scsatkfacaprocknet', 'thu', '29', 'mar', '2001', '094202', '0600', 'cst', 'receiv', 'enemta01enroncom', 'unverifi', 'nahoumsmsw03pxcorpenroncom', 'content', 'technolog', 'smtpr', '415', 'esmtp', 'id', 'tac1c0a2752962e2481nahoumsmsw03pxcorpenroncom', 'scsatkfacaprocknet', 'thu', '29', 'mar', '2001', '094204', '0600', 'To', 'scsatkfacaprocknet', 'date', 'thu', '29', 'mar', '2001', '094158', '0600', 'messageid', 'of1845f8dc31de1eafon86256a1e00535fa2enroncom', 'xmimetrack', 'serial', 'router', 'enemta01enronreleas', '506', 'decemb', '14', '2000', '03292001', '093828', 'AM', 'mimevers', '10', 'contenttyp', 'multipartmix', 'boundary086256a1e00535fa28f9e8a93df938690918c86256a1e00535fa2', 'contentdisposit', 'inlin', 'returnpath', 'phillipkallenenroncom', 'cari', 'here', 'pictur', 'hous', 'I', 'mind', 'I', 'go', 'simpl', 'farmhous', 'style', 'place', '5', 'acr', 'near', 'wimberley', 'A', 'point', 'might', 'obviou', 'plan', 'there', 'doubl', 'porch', 'across', 'back', 'like', 'front', 'No', 'dormer', 'metal', 'roof', '12', 'bath', 'stair', 'overal', 'dimens', '55', '40', 'what', 'I', 'look', 'littl', 'design', 'help', 'kitchen', 'more', 'cabinet', 'mayb', 'differ', 'shape', 'island', 'way', 'enlarg', 'pantri', 'reagan', 'suggest', 'I', 'find', 'way', 'make', 'exterior', 'attract', 'I', 'want', 'keep', 'simpl', 'roof', 'line', 'avoid', 'leak', 'I', 'think', 'bring', 'left', 'side', 'forward', 'front', 'hous', 'place', '1', 'gabl', 'front', 'that', 'might', 'look', 'good', 'exterior', 'stone', 'stucco', 'also', 'front', 'porch', 'would', 'smaller', 'I', '3', 'bid', 'builder', 'around', '325000', 'I', 'readi', 'go', 'ahead', 'plan', 'done', 'I', 'spec', 'finish', 'choos', 'builder', 'I', 'want', 'give', 'opportun', 'work', 'As', 'I', 'mention', 'altern', '060ft', 'I', 'thought', 'sinc', 'I', 'detail', 'sketch', 'might', 'consid', 'job', 'le', '6000', 'reagan', 'allow', 'phillip', 'allen', '7138537041', 'forward', 'phillip', 'K', 'allenhouect', '03292001', '0910', 'AM', 'hunter', 'S', 'shive', '03262001', '1001', 'AM', 'To', 'phillipkallenenroncom', 'cc', 'subject', 'see', 'attach', 'file', 'f828fa00pdf', 'f828fa00pdf']","[('I', 0.03076959), ('thu', 0.013186908), ('2001', 0.013186908), ('scsatkfacaprocknet', 0.013186908), ('mar', 0.013186908), ('29', 0.013186908), ('receiv', 0.0109890755), ('front', 0.0109890755), ('0600', 0.0109890755), ('mailmanenroncom', 0.008791245)]",I,0.0307695
971,971,972,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
972,972,973,['problem'],"[('problem', 1.0)]",,
973,973,974,"['reagan', 'thank', 'quick', 'respons', 'bid', 'resid', 'below', 'list', 'question', 'spec', '1', 'Is', 'frame', 'lumber', '2', 'yellow', 'pine', 'wouldnt', 'fir', 'spruce', 'warp', 'le', 'cost', '2', 'what', 'type', 'floor', 'joist', 'would', 'use', '2x12', 'sort', 'factori', 'joist', '3', 'what', 'type', 'roof', 'frame', 'On', 'site', 'built', 'rafter', 'engin', 'truss', '4', 'are', 'plan', 'insul', 'floor', 'dampen', 'sound', 'what', 'type', 'insul', 'floor', 'ceil', 'batt', 'blown', 'fiberglass', 'cellulos', '5', 'ani', 'ridg', 'vent', 'vent', 'power', 'turbin', '6', 'did', 'bid', 'interior', 'window', 'trim', '4', 'side', 'I', 'didnt', 'know', 'differ', 'apron', 'stool', '7', 'Do', 'anyth', 'special', 'upstair', 'tile', 'floor', 'prevent', 'crack', 'doubl', 'plywood', 'hardi', 'board', 'underlay', '8', 'On', 'stair', 'allow', 'bannist', 'I', 'think', 'partial', 'one', 'iron', 'onli', '5', 'foot', '9', 'I', 'label', 'plan', 'I', 'intend', '12', 'bath', 'stair', 'A', 'pedest', 'sink', 'would', 'probabl', 'work', '10', 'are', 'undermount', 'sink', 'differ', 'drop', 'in', 'I', 'think', 'undermount', 'stainless', 'kitchen', 'undermount', 'cast', 'iron', 'bath', '11', '1', '2', 'AC', 'unit', 'I', 'assum', '2', '12', 'prewir', 'sound', 'indoor', 'outdoor', '13', 'No', 'door', 'drawer', 'pull', 'cabinet', 'bath', 'cabinet', '14', 'exterior', 'porch', 'includ', 'bid', 'cedar', 'deck', 'upstair', 'iron', 'rail', '15', 'what', 'type', 'construct', 'contract', 'would', 'use', 'fix', 'price', 'except', 'chang', 'order', 'I', 'want', 'get', 'pain', 'detail', 'spec', 'I', 'make', 'decis', 'start', 'I', 'think', 'I', 'readi', 'get', 'plan', 'drawn', 'I', 'go', 'call', 'cari', 'kipp', 'see', 'set', 'design', 'meet', 'see', 'I', 'like', 'idea', 'phillip', 'I']","[('I', 0.037634775), ('2', 0.013440929), ('type', 0.013440929), ('what', 0.013440929), ('floor', 0.013440929), ('bid', 0.010752725), ('bath', 0.010752725), ('iron', 0.010752725), ('would', 0.0107527245), ('undermount', 0.0107527245)]",I,0.03763477
974,974,975,"['larri', 'jacqu', 'sent', 'document', 'claudia', 'review', 'just', 'drop', 'line', 'confirm', 'seen', 'phillip']","[('drop', 0.08333334), ('review', 0.08333334), ('seen', 0.08333334), ('confirm', 0.08333334), ('line', 0.08333334), ('larri', 0.08333334), ('just', 0.08333334), ('sent', 0.08333334), ('document', 0.08333334), ('jacqu', 0.08333334)]",drop,0.0833333
975,975,976,"['can', 'pleas', 'review', 'follow', 'system', 'present', 'spreadsheet', 'group', 'let', 'u', 'know', 'fact', 'use', 'system', 'the', 'west', 'ga', 'includ', 'west', 'ga', 'trade', 'west', 'ga', 'origin', 'denver', 'piec', 'combin', 'also', 'need', 'give', 'u', 'breakout', 'applic', 'group', 'pleas', 'let', 'know', 'question', 'tiffani', 'miller', '58485']","[('west', 0.055555586), ('ga', 0.055555586), ('group', 0.04166667), ('u', 0.04166667), ('know', 0.04166667), ('let', 0.04166667), ('system', 0.04166667), ('pleas', 0.04166667), ('need', 0.027777767), ('also', 0.027777767)]",west,0.05555558
976,976,977,"['jacqu', 'would', 'ok', 'I', 'sign', 'new', 'consult', 'agreement', 'engin', 'architect', 'they', 'sent', 'agreement', 'the', 'payment', 'georg', 'larri', 'made', '2350', 'architect', 'I', 'written', 'person', 'check', 'amount', '25000', 'architect', '13950', 'engin', 'I', 'wonder', 'prior', 'work', 'even', 'need', 'list', 'asset', 'partnership', 'I', 'would', 'like', 'agreement', 'consult', 'partnership', 'should', 'I', 'wait', 'partnership', 'convey', 'sign', 'name', 'partnership', 'let', 'know', 'think', 'phillip']","[('I', 0.06185577), ('partnership', 0.05154646), ('agreement', 0.04123715), ('architect', 0.04123715), ('engin', 0.030927846), ('consult', 0.030927846), ('sign', 0.030927846), ('would', 0.030927846), ('asset', 0.020618549), ('even', 0.020618549)]",I,0.0618557
977,977,978,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
978,978,979,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
979,979,980,"['greg', 'here', 'comment', 'question', 'cost', 'estim', 'cost', 'per', 'squar', 'foot', 'seem', 'low', 'construct', '3330sf', 'gross36sf', 'rentabl', 'what', 'cost', 'onsit', 'gener', 'requir', '299818', 'repres', 'will', 'review', 'builder', 'profit', 'fee', 'you', 'mention', '2', 'overhead', '3', '5', 'profit', 'whi', 'profit', '4', 'whi', 'architect', 'fee', '200k', 'I', 'thought', 'would', '80k', 'what', '617k', 'profit', 'allow', 'Is', 'develop', 'profit', 'boost', 'loan', 'amount', 'real', 'cost', 'total', 'close', 'applic', 'cost', '350k', 'that', 'seem', 'high', 'who', 'receiv', '2', 'point', 'how', 'much', 'sunk', 'cost', 'fha', 'declin', 'u', 'where', '1', 'are', 'receiv', 'one', 'point', 'loan', 'what', 'statu', 'oper', 'pro', 'forma', 'My', 'back', 'envelop', 'put', 'noi', '877k', 'assum', '6251br', '13003br', '9502br', '5', 'vacanc', '40', 'expens', 'after', 'debt', 'servic', 'would', 'leav', '122k', 'the', 'coverag', 'would', '116', 'talk', 'afternoon', 'phillip']","[('cost', 0.033175495), ('profit', 0.028436122), ('would', 0.018957388), ('what', 0.018957388), ('fee', 0.014218022), ('whi', 0.014218022), ('seem', 0.014218022), ('loan', 0.014218022), ('2', 0.014218022), ('5', 0.014218022)]",cost,0.03317549
980,980,981,"['Hi', 'phillip', 'it', 'time', 'month', 'could', 'kind', 'thank', 'dexter', 'dexter', 'stei', 'execut', 'publish', 'intellig', 'press', 'inc', '22648', 'glenn', 'drive', 'suit', '305', 'sterl', 'VA', '20164', 'tel', '703', '3188848', 'fax', '703', '3180597', 'httpintelligencepresscom', 'httpwwwgasmartcom', 'At', '0957', 'AM', '12601', '0600', 'wrote', 'dexter', 'you', 'receiv', 'guest', 'id', 'shortli', 'phillip']","[('dexter', 0.046511676), ('phillip', 0.03488374), ('703', 0.03488374), ('At', 0.023255812), ('tel', 0.023255812), ('3188848', 0.023255812), ('fax', 0.023255812), ('3180597', 0.023255812), ('httpintelligencepresscom', 0.023255812), ('httpwwwgasmartcom', 0.023255812)]",dexter,0.04651167
981,981,982,"['john', 'mike', 'fine', 'sign', 'new', 'contract', 'subject', 'read', 'term', 'cours', 'He', 'prefer', 'set', 'strike', '3', 'month', 'period', 'hi', 'exist', 'contract', 'pay', 'retent', 'payment', '55000', 'next', 'week', 'He', 'still', 'want', 'receiv', 'payment', 'phillip']","[('payment', 0.049180336), ('contract', 0.049180336), ('He', 0.049180336), ('next', 0.03278688), ('exist', 0.03278688), ('pay', 0.03278688), ('retent', 0.03278688), ('period', 0.03278688), ('55000', 0.03278688), ('receiv', 0.03278688)]",payment,0.04918033
982,982,983,"['oncom', 'cc', 'subject']","[('oncom', 0.33333334), ('cc', 0.33333334), ('subject', 0.33333334)]",oncom,0.3333333
983,983,984,"['greg', 'someth', 'I', 'forgot', 'ask', 'Do', 'know', 'hugo', 'plan', 'replatt', 'use', 'administr', 'process', 'I', 'understand', 'quicker', 'full', 'replat', 'process', '3', 'week', 'also', 'let', 'know', 'park', 'the', 'builder', 'san', 'marco', 'believ', 'plan', '321', 'park', 'spot', 'would', 'requir', '382', 'code', 'the', 'townhom', 'across', 'street', 'seriou', 'park', 'problem', 'they', 'probabl', 'plan', 'student', 'park', 'garag', 'instead', 'use', 'extra', 'room', 'phillip']","[('park', 0.049019683), ('plan', 0.03921573), ('know', 0.029411776), ('I', 0.029411776), ('the', 0.029411776), ('process', 0.029411776), ('use', 0.029411776), ('townhom', 0.019607838), ('street', 0.019607838), ('code', 0.019607838)]",park,0.04901968
984,984,985,"['keith', 'holst', 'sent', 'email', 'detail']","[('keith', 0.2), ('holst', 0.2), ('sent', 0.2), ('email', 0.2), ('detail', 0.2)]",keith,0.
985,985,986,"['jacqu', 'the', 'agreement', 'look', 'fine', 'My', 'comment', 'georg', 'larri', 'might', 'object', 'languag', 'bank', 'request', 'financ', 'construct', 'project', 'declin', 'make', 'loan', 'base', 'high', 'cost', 'construct', 'project', 'technic', 'bank', 'lower', 'loan', 'amount', 'base', 'lower', 'estim', 'rent', 'alter', 'amount', 'equiti', 'would', 'requir', 'did', 'I', 'loan', '1300000', 'I', 'thought', 'le', 'regard', 'exhibit', 'A', 'asset', 'includ', 'land', 'architectur', 'plan', 'engin', 'complet', 'apprais', 'soil', 'studi', 'most', 'item', 'state', 'partial', 'complet', 'consult', 'I', 'speak', 'directli', 'architect', 'engin', 'soil', 'engin', 'I', 'unclear', 'best', 'way', 'proceed', 'consult', 'the', 'oblig', 'includ', 'fee', 'owe', 'consult', 'Do', 'need', 'list', 'balanc', 'due', 'list', 'work', 'complet', 'asset', 'give', 'consider', '5875', 'cash', 'paid', 'engin', 'appraisor', 'phillip']","[('engin', 0.027933033), ('I', 0.027933033), ('loan', 0.022346409), ('consult', 0.022346409), ('complet', 0.022346409), ('construct', 0.016759789), ('bank', 0.016759789), ('project', 0.016759789), ('lower', 0.016759789), ('the', 0.016759789)]",engin,0.02793303
986,986,987,"['12072000', '0838', 'AM', 'carla', 'hoffman', '12072000', '0619', 'AM', 'To', 'tim', 'beldenhouectect', 'robert', 'badeerhouectect', 'jeff', 'richterhouectect', 'phillip', 'platterhouectect', 'mike', 'swerzbinhouectect', 'diana', 'scholteshouectect', 'sean', 'crandallpdxectect', 'matt', 'motleypdxectect', 'mark', 'guzmanpdxectect', 'tom', 'alonsopdxectect', 'mark', 'fischerpdxectect', 'monica', 'landepdxectect', 'cc', 'subject', 'DJ', 'caliso', 'pay', '10m', 'To', 'avoid', 'roll', 'blackout', 'wed', 'sourc', 'DJ', 'calif', 'iso', 'puc', 'inspect', 'offlin', 'duke', 'south', 'bay', 'pwr', 'plant', 'DJ', 'calif', 'regula', 'tor', 'visit', 'aesdynegi', 'offlin', 'power', 'plant', 'forward', 'carla', 'hoffmanpdxect', '12072000', '0629', 'AM', 'enron', 'capit', 'trade', 'resourc', 'corp', 'from', 'pergher', 'gunther', 'guntherpergherdowjonescom', '12072000', '0611', 'AM', 'To', 'undisclosedrecipi', 'cc', 'subject', 'DJ', 'caliso', 'pay', '10m', 'To', 'avoid', 'roll', 'blackout', 'wed', 'sourc', 'DJ', 'calif', 'iso', 'puc', 'inspect', 'offlin', 'duke', 'south', 'bay', 'pwr', 'plant', 'DJ', 'calif', 'regula', 'tor', 'visit', 'aesdynegi', 'offlin', 'power', 'plant', '1318', 'gmt', '7', 'decemb', '2000', 'DJ', 'caliso', 'pay', '10m', 'To', 'avoid', 'roll', 'blackout', 'wed', 'sourc', 'thi', 'articl', 'origin', 'publish', 'wednesday', 'lo', 'angel', 'dow', 'jonesth', 'california', 'independ', 'system', 'oper', 'paid', '10', 'million', 'wednesday', '1000', 'megawatt', 'power', 'powerex', 'still', 'face', 'massiv', 'deficit', 'threaten', 'electr', 'reliabl', 'state', 'highrank', 'market', 'sourc', 'familiar', 'iso', 'oper', 'told', 'dow', 'jone', 'newswir', 'but', 'iso', 'fell', 'short', 'order', 'roll', 'blackout', 'wednesday', 'third', 'consecut', 'day', 'the', 'iso', 'wouldnt', 'comment', 'transact', 'say', 'sensit', 'market', 'inform', 'but', 'sourc', 'said', 'powerex', 'subsidiari', 'british', 'columbia', 'hydro', 'power', 'author', 'xbch', 'energi', 'compani', 'northwest', 'region', 'abund', 'suppli', 'electr', 'spare', 'iso', 'paid', '900', 'megawatthour', 'earli', 'afternoon', 'even', 'but', 'still', 'wasnt', 'enough', 'juic', 'the', 'lo', 'angel', 'depart', 'water', 'power', 'sold', 'iso', '1200', 'megawatt', 'power', 'later', 'day', 'wholesal', 'electr', 'price', 'cap', 'rate', '250mwh', 'the', 'ladwp', 'govern', 'iso', 'need', '3800', 'megawatt', 'power', 'serv', 'custom', 'It', 'free', 'sell', 'power', 'instat', '250mwh', 'price', 'cap', 'the', 'ladwp', 'vocal', 'amount', 'power', 'spare', 'the', 'municip', 'util', 'also', 'reap', 'huge', 'profit', 'sell', 'excess', 'power', 'grid', 'suppli', 'tight', 'price', 'high', 'howev', 'ladwp', 'name', 'defend', 'civil', 'lawsuit', 'alleg', 'price', 'goug', 'the', 'suit', 'claim', 'ladwp', 'sell', 'power', 'get', 'feder', 'bonnevil', 'power', 'administr', 'sell', 'hydropow', 'cheap', 'rate', 'back', 'market', 'price', '10', 'time', 'higher', 'powerex', 'offici', 'wouldnt', 'comment', 'iso', 'power', 'sale', 'say', 'transact', 'proprietari', 'but', 'compani', 'also', 'sold', 'iso', '1000', 'megawatt', 'tuesday', 'minut', 'iso', 'declar', 'roll', 'blackout', '1100', 'megawatthour', 'market', 'sourc', 'said', 'the', 'iso', 'whose', 'main', 'job', 'keep', 'electr', 'flow', 'throughout', 'state', 'matter', 'cost', 'start', 'day', 'stagetwo', 'power', 'emerg', 'mean', 'oper', 'reserv', 'fell', 'le', '5', 'the', 'iso', 'compet', 'investorown', 'util', 'northwest', 'will', 'pay', 'higher', 'price', 'power', 'region', 'price', 'cap', 'the', 'iso', 'warn', 'feder', 'regul', 'gener', 'util', 'wednesday', 'confer', 'call', 'would', 'call', 'stagethre', 'power', 'emerg', 'wednesday', 'wouldnt', 'order', 'roll', 'blackout', 'A', 'stage', 'three', 'declar', 'iso', 'oper', 'reserv', 'fall', 'le', '15', 'power', 'interrupt', 'statewid', 'basi', 'keep', 'grid', 'collaps', 'but', 'iso', 'spokesman', 'patrick', 'dorinson', 'said', 'would', 'call', 'stage', 'three', 'mean', 'attract', 'addit', 'electr', 'resourc', 'In', 'order', 'line', 'power', 'dire', 'situat', 'dorinson', 'said', 'edison', 'intern', 'unit', 'eix', 'southern', 'california', 'edison', 'sempra', 'energi', 'unit', 'sre', 'san', 'diego', 'ga', 'electr', 'pge', 'corp', 'pcg', 'unit', 'pacif', 'ga', 'electr', 'sever', 'municip', 'util', 'state', 'share', 'cost', 'highpric', 'power', 'socal', 'edison', 'pge', 'face', 'debt', '6', 'billion', 'due', 'high', 'wholesal', 'electr', 'cost', 'the', 'util', 'debt', 'week', 'could', 'grow', 'nearli', '1', 'billion', 'analyst', 'said', 'it', 'still', 'unclear', 'whether', 'retail', 'custom', 'forc', 'pay', 'debt', 'higher', 'electr', 'rate', 'compani', 'absorb', 'cost', 'By', 'jason', 'leopold', 'dow', 'jone', 'newswir', '3236583874', 'jasonleopolddowjonescom', 'end', 'dow', 'jone', 'newswir', '071200', '1318gmt', 'copyright', 'c', '2000', 'dow', 'jone', 'compani', 'inc', '1317', 'gmt', '7', 'decemb', '2000', 'DJ', 'calif', 'iso', 'puc', 'inspect', 'offlin', 'duke', 'south', 'bay', 'pwr', 'plant', 'thi', 'articl', 'origin', 'publish', 'wednesday', 'lo', 'angel', 'dow', 'jonesrepres', 'california', 'independ', 'system', 'oper', 'public', 'util', 'commiss', 'inspect', 'duke', 'energi', 'corp', 'duk', 'offlin', '700mw', 'south', 'bay', 'power', 'plant', 'chula', 'vista', 'calif', 'wednesday', 'morn', 'duke', 'spokesman', 'said', 'the', 'iso', 'puc', 'inspect', 'offlin', 'power', 'plant', 'state', 'sinc', 'tuesday', 'even', 'verifi', 'plant', 'shut', 'reason', 'gener', 'say', 'iso', 'spokesman', 'pat', 'dorinson', 'said', 'about', '11000', 'MW', 'power', 'state', 'power', 'grid', 'sinc', 'monday', '7000', 'MW', 'offlin', 'unplan', 'mainten', 'accord', 'iso', 'the', 'iso', 'manag', 'grid', 'reliabl', 'As', 'previous', 'report', 'iso', 'told', 'util', 'feder', 'energi', 'regulatori', 'commiss', 'wednesday', 'would', 'call', 'stage', 'three', 'power', 'alert', '5', 'PM', 'pst', '0100', 'gmt', 'thursday', 'mean', 'power', 'reserv', 'state', 'would', 'dip', '15', 'roll', 'blackout', 'could', 'implement', 'avoid', 'grid', 'collaps', 'howev', 'iso', 'said', 'action', 'wouldnt', 'result', 'roll', 'blackout', 'the', 'iso', 'puc', 'also', 'inspect', 'tuesday', 'plant', 'own', 'dynegi', 'inc', 'dyn', 'reliant', 'energi', 'inc', 'rei', 'southern', 'energi', 'inc', 'soe', 'duke', '1500mw', 'moss', 'land', 'plant', 'also', 'inspect', 'puc', 'repres', 'june', 'unit', 'offlin', 'repair', 'duke', 'spokesman', 'said', 'By', 'jessica', 'berthold', 'dow', 'jone', 'newswir', '3236583872', 'jessicabertholddowjonescom', 'end', 'dow', 'jone', 'newswir', '071200', '1317gmt', 'copyright', 'c', '2000', 'dow', 'jone', 'compani', 'inc', '1317', 'gmt', '7', 'decemb', '2000', 'DJ', 'calif', 'regul', 'visit', 'aesdynegi', 'offlin', 'power', 'plant', 'thi', 'articl', 'origin', 'publish', 'wednesday', 'By', 'jessica', 'berthold', 'Of', 'dow', 'jone', 'newswir', 'lo', 'angel', 'dow', 'jonesa', 'corp', 'ae', 'dynegi', 'inc', 'dyn', 'said', 'wednesday', 'repres', 'california', 'power', 'offici', 'stop', 'power', 'plant', 'verifi', 'line', 'legitim', 'reason', 'the', 'california', 'independ', 'system', 'oper', 'manag', 'state', 'power', 'grid', 'one', 'wholesal', 'power', 'market', 'california', 'public', 'util', 'commiss', 'began', 'onsit', 'inspect', 'tuesday', 'night', 'power', 'plant', 'state', 'report', 'unplan', 'outag', 'forc', 'shutdown', 'iso', 'spokesman', 'pat', 'dorinson', 'said', 'the', 'state', '11000', 'MW', 'grid', 'sinc', 'monday', '7000', 'MW', 'unplan', 'mainten', 'the', 'iso', 'wednesday', 'call', 'stage', '2', 'power', 'emerg', 'third', 'consecut', 'day', 'mean', 'power', 'reserv', '5', 'custom', 'agre', 'cut', 'power', 'exchang', 'reduc', 'rate', 'may', 'call', 'As', 'report', 'earlier', 'reliant', 'energi', 'rei', 'southern', 'energi', 'inc', 'soe', 'said', 'visit', 'repres', 'iso', 'puc', 'tuesday', 'even', 'repres', 'two', 'organ', 'also', 'visit', 'plant', 'own', 'ae', 'dynegi', 'tuesday', 'even', 'ae', 'told', 'visitor', 'couldnt', 'perform', 'unannounc', 'full', 'inspect', 'compani', '450megawatt', 'huntington', 'beach', 'power', 'station', 'wednesday', 'morn', 'plant', 'full', 'staff', 'would', 'present', 'ae', 'spokesman', 'aaron', 'thoma', 'said', 'thoma', 'well', 'iso', 'spokesman', 'didnt', 'know', 'whether', 'repres', 'return', 'wednesday', 'full', 'inspect', 'ae', 'unit', 'down', 'due', 'To', 'expir', 'emiss', 'credit', 'the', 'huntington', 'beach', 'facil', 'unit', 'two', 'ae', 'facil', 'use', 'nitrogen', 'oxid', 'nox', 'emiss', 'credit', 'they', 'taken', 'two', 'week', 'ago', 'respons', 'request', 'south', 'coast', 'air', 'qualiti', 'manag', 'district', 'stay', 'line', 'emiss', 'control', 'deploy', 'thoma', 'said', 'ae', '2000', 'MW', 'half', 'maximum', 'output', 'line', 'the', 'entir', 'huntington', 'plant', 'line', '1500', 'MW', 'worth', 'unit', 'alamito', 'redondo', 'beach', 'plant', 'the', 'iso', 'ask', 'ae', 'return', 'line', 'plant', 'oper', 'ae', 'refus', 'concern', 'air', 'qualiti', 'district', 'fine', 'compani', '20', 'million', 'pollut', 'wed', 'happi', 'put', 'unit', 'back', 'provid', 'dont', 'get', 'su', 'thoma', 'said', 'it', 'clear', 'u', 'iso', 'trump', 'air', 'qualiti', 'district', 'author', 'As', 'report', 'spokesman', 'air', 'qualiti', 'district', 'said', 'tuesday', 'ae', 'could', 'elect', 'buy', 'emiss', 'credit', 'could', 'run', 'line', 'plant', 'case', 'power', 'emerg', 'choos', 'dynegi', 'El', 'segundo', 'plant', 'also', 'visit', 'By', 'puc', 'dynegi', 'inc', 'dyn', 'said', 'puc', 'visit', '1200', 'MW', 'El', 'segundo', 'plant', 'tuesday', 'even', 'two', 'four', 'unit', '600', 'MW', 'worth', 'line', 'wednesday', 'I', 'guess', 'posit', 'gee', 'sorri', 'dont', 'believ', 'u', 'need', 'come', 'take', 'look', 'that', 'fine', 'said', 'dynegi', 'spokesman', 'lynn', 'lednicki', 'lednicki', 'said', 'one', 'two', 'unit', 'line', 'plan', 'mainten', 'unplan', 'mainten', 'boiler', 'feedwat', 'pump', 'could', 'pose', 'safeti', 'hazard', 'repair', 'weve', 'get', 'back', 'servic', 'lednicki', 'said', 'We', 'even', 'paid', 'special', 'equip', 'expedit', 'lednicki', 'ad', 'puc', 'seem', 'satisfi', 'dynegi', 'explan', 'unit', 'line', 'By', 'jessica', 'berthold', 'dow', 'jone', 'newswir', '3236583872', 'jessicabertholddowjonescom', 'end', 'dow', 'jone', 'newswir', '071200', '1317gmt', 'copyright', 'c', '2000', 'dow', 'jone', 'compani', 'inc', 'gnther', 'A', 'pergher', 'senior', 'analyst', 'dow', 'jone', 'compani', 'inc', 'tel', '6095207067', 'fax', '6094523531', 'the', 'inform', 'transmit', 'intend', 'person', 'entiti', 'address', 'may', 'contain', 'confidenti', 'andor', 'privileg', 'materi', 'ani', 'review', 'retransmiss', 'dissemin', 'use', 'take', 'action', 'relianc', 'upon', 'inform', 'person', 'entiti', 'intend', 'recipi', 'prohibit', 'If', 'receiv', 'error', 'pleas', 'contact', 'sender', 'delet', 'materi', 'comput']","[('power', 0.02210359), ('iso', 0.018519202), ('plant', 0.013142627), ('the', 0.01254523), ('said', 0.01254523), ('dow', 0.009558243), ('wednesday', 0.008960847), ('jone', 0.0077660526), ('unit', 0.0071686553), ('puc', 0.006571259)]",power,0.0221035
987,987,999,"['jacqu', 'I', 'think', 'reach', 'agreement', 'georg', 'larri', 'pick', 'item', 'valu', 'pay', 'fee', 'time', 'It', 'look', 'abl', 'use', 'everyth', 'done', 'engin', 'architectur', 'survey', 'apprais', 'one', 'point', 'unclear', 'claim', '15000', 'extens', 'paid', 'appli', 'purchas', 'price', 'land', 'like', 'earnest', 'money', 'would', 'appli', 'I', 'look', 'close', 'statement', 'I', 'didnt', 'see', '15000', 'appli', 'purchas', 'price', 'can', 'help', 'clear', 'assum', 'clear', '15000', 'need', 'get', 'properti', 'releas', 'keith', 'I', 'concern', 'take', 'bishop', 'corner', 'partnership', 'risk', 'could', 'undisclos', 'liabil', 'On', 'hand', 'convey', 'partnership', 'would', 'time', 'money', 'saver', 'clean', 'what', 'inclin', 'call', 'soon', 'chanc', 'review', 'phillip']","[('I', 0.031446617), ('15000', 0.025157277), ('appli', 0.025157277), ('price', 0.01886794), ('time', 0.01886794), ('partnership', 0.01886794), ('look', 0.01886794), ('purchas', 0.01886794), ('would', 0.01886794), ('clear', 0.01886794)]",I,0.03144661
988,988,988,"['onal', 'address', 'book', 'call', 'question', 'erika', 'group', 'east', 'desk', 'basic', 'group', 'name', 'east', 'desk', 'group', 'type', 'multipurpos', 'descript', 'member', 'matthew', 'B', 'fleminghoue', 'jame', 'R', 'barkerhoue', 'barend', 'vanderhorsthoue', 'jay', 'blainehoue', 'paul', 'tatehoue', 'alain', 'dizahoue', 'rhonda', 'smithhoue', 'christina', 'banglehoue', 'sherri', 'pendegrafthoue', 'mard', 'L', 'driscollhoue', 'daniel', 'salinashoue', 'sharon', 'hausingerhoue', 'joshua', 'brayhoue', 'jame', 'wiltfonghoue', 'owner', 'erika', 'duprehoue', 'administr', 'erika', 'duprehoue', 'foreign', 'directori', 'sync', 'allow', 'ye', 'group', 'west', 'desk', 'basic', 'group', 'name', 'west', 'desk', 'group', 'type', 'multipurpos', 'descript', 'member', 'jesu', 'guerrahoue', 'monica', 'robertshoue', 'laura', 'R', 'arnoldhoue', 'amanda', 'boettcherhoue', 'C', 'kyle', 'griffinhoue', 'jess', 'hewitthoue', 'artemio', 'munizhoue', 'eugen', 'zeitzhoue', 'brandon', 'whittakerhoue', 'roland', 'aguilarhoue', 'rubi', 'robinsonhoue', 'roger', 'reynoldshoue', 'david', 'coolidgehoue', 'joseph', 'de', 'champshoue', 'kristann', 'shiremanhoue', 'owner', 'erika', 'duprehoue', 'administr', 'erika', 'duprehoue', 'foreign', 'directori', 'sync', 'allow', 'ye']","[('group', 0.03431386), ('erika', 0.02941187), ('duprehoue', 0.024509877), ('desk', 0.024509877), ('east', 0.014705895), ('administr', 0.014705895), ('jame', 0.014705895), ('directori', 0.014705895), ('allow', 0.014705895), ('owner', 0.0147058945)]",group,0.0343138
989,989,989,"['steve', 'tri', 'bmckayenroncom', 'bradmckayenroncom']","[('steve', 0.25), ('tri', 0.25), ('bmckayenroncom', 0.25), ('bradmckayenroncom', 0.25)]",steve,0.2
990,990,990,"['larri', 'jacqu', 'work', 'claudia', 'I', 'check', 'progress', 'morn', 'let', 'know', 'phillip']","[('larri', 0.090909086), ('jacqu', 0.090909086), ('work', 0.090909086), ('claudia', 0.090909086), ('I', 0.090909086), ('check', 0.090909086), ('progress', 0.090909086), ('morn', 0.090909086), ('let', 0.090909086), ('know', 0.090909086)]",larri,0.09090908
991,991,991,"['greg', 'note', 'let', 'know', 'I', 'offic', 'wed321', 'thurs323', 'the', 'kid', 'spring', 'break', 'I', 'san', 'marco', 'reach', 'cell', 'phone', '7134104679', 'email', 'pallen70hotmailcom', 'I', 'plan', 'stop', 'see', 'hugo', 'elizondo', 'thursday', 'drop', 'check', 'give', 'green', 'light', 'file', 'replat', 'what', 'chang', 'want', 'tri', 'complet', 'project', 'phase', 'doe', 'need', 'chang', 'go', 'submit', 'citi', 'I', 'spoke', 'gordon', 'kohutek', 'morn', 'He', 'contract', 'complet', 'soil', 'studi', 'He', 'say', 'done', 'report', 'end', 'week', 'I', 'dont', 'know', 'need', 'report', 'I', 'told', 'gordon', 'might', 'call', 'inquir', 'work', 'perform', 'hi', 'number', '5129305832', 'We', 'spoke', 'phone', 'issu', 'talk', 'later', 'phillip']","[('I', 0.04375015), ('spoke', 0.018750016), ('gordon', 0.018750016), ('phone', 0.018750016), ('He', 0.018750016), ('complet', 0.018750016), ('report', 0.018750016), ('know', 0.018750016), ('need', 0.018750016), ('chang', 0.018750016)]",I,0.0437501
992,992,992,"['phillip', 'titl', 'compani', 'held', '15000', 'escrow', 'return', 'It', 'longer', 'issu', 'larri', 'origin', 'messag', 'from', 'phillipkallenenroncom', 'mailtophillipkallenenroncom', 'sent', 'monday', 'march', '19', '2001', '845', 'AM', 'To', 'llewteraustinrrcom', 'subject', 'Re', 'buyout', 'larrri', 'I', 'realiz', 'disappoint', 'project', 'It', 'desir', 'left', 'pocket', 'expens', 'the', 'item', 'list', 'I', 'need', 'clarif', '15000', 'worth', 'extens', 'you', 'mention', 'appli', 'cost', 'land', 'actual', 'repres', 'cash', 'invest', 'land', 'I', 'agre', 'refund', 'cash', 'invest', 'My', 'request', 'help', 'locat', 'amount', 'close', 'statement', 'document', 'phillip']","[('I', 0.029850796), ('land', 0.02238808), ('15000', 0.02238808), ('phillip', 0.02238808), ('cash', 0.02238808), ('invest', 0.02238808), ('It', 0.022388078), ('worth', 0.014925372), ('you', 0.014925372), ('extens', 0.014925372)]",I,0.02985079
993,993,993,"['phillip', 'barri', 'said', 'ask', 'get', 'pivot', 'tabl', 'wscc', 'new', 'gener', 'data', 'I', 'set', 'one', 'attach', 'file', 'pleas', 'let', 'know', 'want', 'go', 'also', 'pleas', 'let', 'know', 'discrep', 'inform', 'phil']","[('know', 0.0566038), ('pleas', 0.056603797), ('let', 0.056603797), ('go', 0.03773585), ('file', 0.03773585), ('one', 0.03773585), ('want', 0.03773585), ('inform', 0.03773585), ('discrep', 0.03773585), ('set', 0.03773585)]",know,0.056603
994,994,994,"['In', 'regard', 'email', 'I', 'recent', 'inform', 'nicol', 'leav', 'enron', 'effect', 'april', '30', 'thi', 'unfortun', 'valuabl', 'member', 'team', 'last', 'year', 'instrument', 'develop', 'eastern', 'rocki', 'trade', 'busi', 'provid', 'custom', 'excel', 'servic', 'nicol', 'leav', 'go', 'competitor', 'go', 'spend', 'time', 'famili', 'given', 'fact', 'probabl', 'want', 'speed', 'transit', 'call', 'discu', 'mark', 'jay', 'reitmeyerect', '03162001', '0904', 'AM', 'To', 'paul', 'T', 'luccinaenronenron', 'mark', 'whittnaenronenron', 'nicol', 'corteznaenronenron', 'theresa', 'staabcorpenronenron', 'mike', 'grigsbyhouectect', 'phillip', 'K', 'allenhouectect', 'cc', 'susan', 'M', 'scotthouectect', 'subject', 'denver', 'trade', 'I', 'would', 'like', 'welcom', 'susan', 'scott', 'west', 'desk', 'specif', 'eastern', 'rocki', 'trade', 'region', 'the', 'plan', 'susan', 'work', 'move', 'day', 'trade', 'activ', 'denver', 'offic', 'houston', 'her', 'specif', 'goal', 'take', 'activ', 'perform', 'nicol', 'theresa', 'gener', 'eol', 'product', 'absenc', 'susan', 'current', 'learn', 'use', 'eol', 'sitara', 'she', 'also', 'work', 'understand', 'grid', 'relationship', 'differ', 'trade', 'point', 'opal', 'midcontin', 'My', 'plan', 'susan', 'go', 'denver', 'offic', 'may', 'bidweek', 'april', '22', 'april', '24', 'I', 'want', 'sit', 'nicol', 'theresa', 'bidweek', 'see', 'learn', 'everyth', 'time', 'I', 'probabl', 'want', 'nicol', 'theresa', 'come', 'houston', 'one', 'time', 'sit', 'u', 'logist', 'team', 'mayb', 'earli', 'may', 'then', 'susan', 'I', 'go', 'denver', 'late', 'may', 'earli', 'june', 'meet', 'industri', 'peopl', 'complet', 'transfer', 'oper', 'houston', 'offic', 'We', 'final', 'plan', 'earli', 'next', 'week', 'make', 'correspond', 'reserv', 'thank', 'jay']","[('nicol', 0.021406855), ('susan', 0.021406855), ('trade', 0.018348722), ('I', 0.018348722), ('denver', 0.015290584), ('go', 0.015290584), ('theresa', 0.015290584), ('time', 0.01223245), ('offic', 0.01223245), ('want', 0.01223245)]",nicol,0.02140685
995,995,995,"['thi', 'request', 'pend', 'approv', '9', 'day', 'pleas', 'click', 'httpitcappscorpenroncomsrrsauthemaillinkaspid000000000021442pag', 'approv', 'review', 'act', 'upon', 'request', 'request', 'ID', '000000000021442', 'request', 'creat', 'date', '3201', '82700', 'AM', 'request', 'for', 'mikegrigsbyenroncom', 'resourc', 'name', 'market', 'data', 'bloomberg', 'resourc', 'type', 'applic']","[('request', 0.09677432), ('resourc', 0.048387114), ('approv', 0.048387114), ('82700', 0.032258064), ('AM', 0.032258064), ('for', 0.032258064), ('mikegrigsbyenroncom', 0.032258064), ('3201', 0.032258064), ('type', 0.032258064), ('data', 0.032258064)]",request,0.0967743
996,996,996,"['jacqu', 'still', 'tri', 'close', 'loop', '15000', 'extens', 'assum', 'work', 'today', 'tomorrow', 'I', 'would', 'like', 'get', 'whatev', 'document', 'need', 'complet', 'convey', 'partnership', 'done', 'I', 'need', 'work', 'engin', 'architect', 'get', 'thing', 'move', 'I', 'plan', 'write', 'person', 'check', 'engin', 'I', 'set', 'new', 'account', 'let', 'know', 'reason', 'I', 'thank', 'help', 'far', 'between', 'connect', 'expertis', 'structur', 'loan', 'save', 'u', 'get', 'bad', 'deal', 'phillip']","[('I', 0.056074873), ('get', 0.037383225), ('work', 0.0280374), ('engin', 0.0280374), ('need', 0.0280374), ('thank', 0.018691586), ('reason', 0.018691586), ('let', 0.018691586), ('set', 0.018691586), ('account', 0.018691586)]",I,0.05607487
997,997,997,"['larrri', 'I', 'realiz', 'disappoint', 'project', 'It', 'desir', 'left', 'pocket', 'expens', 'the', 'item', 'list', 'I', 'need', 'clarif', '15000', 'worth', 'extens', 'you', 'mention', 'appli', 'cost', 'land', 'actual', 'repres', 'cash', 'invest', 'land', 'I', 'agre', 'refund', 'cash', 'invest', 'My', 'request', 'help', 'locat', 'amount', 'close', 'statement', 'document', 'phillip']","[('I', 0.04938277), ('land', 0.03703706), ('cash', 0.03703706), ('invest', 0.03703706), ('refund', 0.024691358), ('cost', 0.024691358), ('actual', 0.024691358), ('repres', 0.024691358), ('agre', 0.024691358), ('appli', 0.024691358)]",I,0.0493827
998,998,998,"['phillip', 'how', 'everyon', 'I', 'sent', 'rent', 'roll', '27', 'move', 'I', 'wknow', 'I', 'abl', 'rent', 'real', 'fastal', 'I', 'have', 'TO', 'DO', 'IN', 'touch', 'wall', 'four', 'adult', 'move', '13000', 'wk', '17500', 'deposit', 'thursday', 'friday', 'thank', 'you', 'luci', 'get', 'web', 'free', 'msn', 'explor', 'download', 'httpexplorermsncom', 'rentroll1201xl']","[('I', 0.06172848), ('rent', 0.037037056), ('move', 0.037037056), ('TO', 0.024691358), ('thank', 0.024691356), ('luci', 0.024691356), ('friday', 0.024691356), ('thursday', 0.024691356), ('free', 0.024691356), ('deposit', 0.024691356)]",I,0.0617284