-
Notifications
You must be signed in to change notification settings - Fork 37
/
reuters.xml
2356 lines (2356 loc) · 241 KB
/
reuters.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<corpus xmlns="http://semweb.unister.de/xml-corpus-schema-2013">
<Document id="0">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15001</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Avery_Dennison">Paxar Corp</NamedEntityInText>
<SimpleTextPart> said it has acquired </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Thermo-Print_GmbH">Thermo-Print GmbH</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://de.dbpedia.org/resource/Lohn_(Eschweiler)">Lohn</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/West_Germany">West Germany</NamedEntityInText>
<SimpleTextPart>, a distributor of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Avery_Dennison">Paxar</NamedEntityInText>
<SimpleTextPart> products, for undisclosed terms.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="2">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15003</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Key_Tronic">Key Tronic corp</NamedEntityInText>
<SimpleTextPart> said it has received contracts to provide seven original equipment manufacturers with which it has not done business recently with over 300,000 computer keyboards for delivery within the next 12 months. The company said The new contracts represent an annual increase of approximately 25 pct in unit volume over last year.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="3">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15004</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Canadian </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Bashaw_Leduc_Oil_and_Gas_Ltd">Bashaw Leduc Oil and Gas Ltd</NamedEntityInText>
<SimpleTextPart> said it agreed to merge with </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Erskine_Resources_Ltd">Erskine Resources Ltd</NamedEntityInText>
<SimpleTextPart>. Terms were not disclosed. Ownership of the combined company with 18.8 pct for the current shareholders of Canadian </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Bashaw_Leduc_Oil_and_Gas_Ltd">Bashaw</NamedEntityInText>
<SimpleTextPart> and 81.2 pct to the current shareholders of </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Erskine_Resources_Ltd">Erskine</NamedEntityInText>
<SimpleTextPart>, the companies said.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="4">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15005</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Entourage_International_Inc">Entourage International Inc</NamedEntityInText>
<SimpleTextPart> said it had a first quarter loss of 104,357 dlrs, after incurring 70,000 dlrs in costs for an internal audit, a report for shareholders and proxy soliciation and 24,000 dlrs in startup expenses for opening </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/London">London</NamedEntityInText>
<SimpleTextPart> offices. The company went public during 1986. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Entourage_International_Inc">Entourage</NamedEntityInText>
<SimpleTextPart> also said it has started marketing a solid perfume packaged in a lipstick tube called Amadeus, retailing at 15 dlrs. The company also said it has acquired </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/North_Country_Media_Group">North Country Media Group</NamedEntityInText>
<SimpleTextPart>, a video productions company.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="6">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15007</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Digital_Communications_Associates_Inc">Digital Communications Associates Inc</NamedEntityInText>
<SimpleTextPart> said its board has named </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/James_Ottinger">James Ottinger</NamedEntityInText>
<SimpleTextPart> president and chief operating officer. The company said </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/James_Ottinger">Ottinger</NamedEntityInText>
<SimpleTextPart> replaces </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Bertil_Nordin">Bertil Nordin</NamedEntityInText>
<SimpleTextPart> as president. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Bertil_Nordin">Nordin</NamedEntityInText>
<SimpleTextPart> will become chairman and chief executive officer, Digital Communications added.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="7">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15008</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Teradyne">Teradyne Inc</NamedEntityInText>
<SimpleTextPart> said </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Digital_Equipment_Corporation">Digital Equipment Corp</NamedEntityInText>
<SimpleTextPart> signed a multi-license purchase agreement valed at over one mln dlrs for Teradynes Lasar Version Six Simulation System. The company said the agreement includes the option for futrue lasar purchases by Digital.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="8">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15009</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Home_Intensive_Care_Inc">Home Intensive Care Inc</NamedEntityInText>
<SimpleTextPart> said it has opened a Dialysis at Home office in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Philadelphia">Philadelphia</NamedEntityInText>
<SimpleTextPart>, its 12th nationwide.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="9">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15010</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Prudential_Securities">Bache Securities Inc</NamedEntityInText>
<SimpleTextPart>, 80 pct owned by </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Prudential_Securities">Prudential Bache Securities Inc</NamedEntityInText>
<SimpleTextPart>, said it acquired its third </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Toronto_Stock_Exchange">Toronto Stock Exchange</NamedEntityInText>
<SimpleTextPart> seat for 301,000 Canadian dlrs. The company said the price was the highest yet paid for an exchange seat. A </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Toronto_Stock_Exchange">Toronto Stock Exchange</NamedEntityInText>
<SimpleTextPart> spokesman said an exchange seat last sold for 195,000 dlrs in March, which was acquired by </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Toronto-Dominion_Bank">Toronto Dominion Bank</NamedEntityInText>
<SimpleTextPart>. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Prudential_Securities">Bache Securities</NamedEntityInText>
<SimpleTextPart> said it needed a third exchange seat as part of an extensive plan to provide an enhanced level of service to clients. The seat will be used to further build its professional trading area, the investment dealer said.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="11">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15013</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Roughly half of this years expected 130,000 hectare Dutch sugar beet crop is already in the ground, a spokesman for </SimpleTextPart>
<NamedEntityInText uri="http://de.dbpedia.org/resource/Royal_Cosun">Suiker Unie</NamedEntityInText>
<SimpleTextPart>, the largest sugar processor in the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Netherlands">Netherlands</NamedEntityInText>
<SimpleTextPart>, told </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Reuters">Reuters</NamedEntityInText>
<SimpleTextPart>. Conditions are generally good and the average sowing date for the crop is expected to be around April 11, against April 23 last year, and a 10-year average of April 14, the spokesman added. It is far too early yet to say what kind of output we can expect when it comes to harvest in September, but at least the crop is off to a very good start, he said. Last year, the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Netherlands">Netherlands</NamedEntityInText>
<SimpleTextPart> planted a record 137,600 hectares of sugar beet and produced a record 1.2 mln tonnes of white sugar, substantially more than the countrys combined A and B quota of 872,000 tonnes. This year, however, a self-imposed quota system has been introduced with the aim of cutting plantings to 130,000 hectares and reducing white sugar output to around 915,000 tonnes to minimise the amount of non-quota C sugar produced. Only farmers with a record of growing suger beet have been allotted quotas. This is expected to prevent the area being boosted by dairy or cereal farmers moving into sugar.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="12">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15014</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Demand for shares in state-owned engine maker </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Rolls-Royce_plc">Rolls Royce Plc</NamedEntityInText>
<SimpleTextPart> is expected to be substantial when the government privatises it at the end of April, </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki">Christopher Clark</NamedEntityInText>
<SimpleTextPart> of the groups bankers </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Samuel_Montagu_and_Sons_Ltd">Samuel Montagu and Sons Ltd</NamedEntityInText>
<SimpleTextPart> said. He told a press conference after the release of an initial prospectus for the float that the issue would be offered to U.K. Institutions, company employees and the general public. As in previous flotations, clawback arrangements would be made if public subscriptions exceeded initial allocations. He declined to say how the shares would be allocated beyond saying that a significant proportion would go to institutions. A decision on what percentage would go to each sector would be made shortly before the sale price was announced on April 28. Minimum subscription would be for 400 shares with payment in two tranches, again a method broadly in line with previous privatisations. Chairman Sir </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Francis_Tombs,_Baron_Tombs">Francis Tombs</NamedEntityInText>
<SimpleTextPart> denied suggestions that </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Rolls-Royce_plc">Rolls</NamedEntityInText>
<SimpleTextPart> was a stock that should be left to the institutions. He noted that although the aircraft industry was cyclical, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Rolls-Royce_plc">Rolls</NamedEntityInText>
<SimpleTextPart> had several operations -- such as spare parts and military equipment -- that evened out the swings. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Rolls-Royce_plc">Rolls</NamedEntityInText>
<SimpleTextPart> 1986 research and development expenditure in 1986 was 255 mln stg and could be expected in the future to vary according to changes in turnover. He noted that net research and development expenditure was written off in the year it occurred, a policy that received inadequate recognition in one or two of the more extravagant forecasts of future profits. He made no forecast himself. In 1986, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Rolls-Royce_plc">Rolls</NamedEntityInText>
<SimpleTextPart> reported that pretax profit rose 48 pct to 120 mln stg on turnover 12 pct higher at 1.8 billion.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="13">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15015</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Philips">NV Philips Gloeilampenfabrieken</NamedEntityInText>
<SimpleTextPart> PGLO.AS shares are due to start trading on the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/New_York_Stock_Exchange">New York Stock Exchange</NamedEntityInText>
<SimpleTextPart> on April 14, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Philips">Philips</NamedEntityInText>
<SimpleTextPart> chairman </SimpleTextPart>
<NamedEntityInText uri="http://de.dbpedia.org/resource/Cornelis_van_der_Klugt">Cor van der Klugt</NamedEntityInText>
<SimpleTextPart> told the annual shareholders meeting. In March, the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Dutch">Dutch</NamedEntityInText>
<SimpleTextPart> electronics group announced it would end its current over the counter listing on the New York </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/NASDAQ">NASDAQ</NamedEntityInText>
<SimpleTextPart> system and move to the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/New_York_Stock_Exchange">NYSE</NamedEntityInText>
<SimpleTextPart>. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Philips">Philips</NamedEntityInText>
<SimpleTextPart> said the big board listing in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/New_York">New York</NamedEntityInText>
<SimpleTextPart> is expected to boost its profile in the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/United_States">U.S.</NamedEntityInText>
<SimpleTextPart>, Where 10 pct of all outstanding </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Philips">Philips</NamedEntityInText>
<SimpleTextPart> shares are held.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="14">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15017</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>The </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/European_Commission">EC Commission</NamedEntityInText>
<SimpleTextPart> confirmed it granted export licences for 118,350 tonnes of current series white sugar at a maximum export rebate of 46.496 European Currency Units (ECUs) per 100 kilos. Out of this, traders in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/France">France</NamedEntityInText>
<SimpleTextPart> received 34,500 tonnes, in the U.K. 37,800, in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/West_Germany">West-Germany</NamedEntityInText>
<SimpleTextPart> 20,000, in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Belgium">Belgium</NamedEntityInText>
<SimpleTextPart> 18,500, in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Spain">Spain</NamedEntityInText>
<SimpleTextPart> 5,800 and in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Denmark">Denmark</NamedEntityInText>
<SimpleTextPart> 1,750 tonnes.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="15">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15018</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Pancontinental_Oil_Ltd">Pancontinental Oil Ltd</NamedEntityInText>
<SimpleTextPart> said it arranged a 10 mln dlr private financing with </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Pemberton_Houston_Willoughby_Bell_Gouinlock_Inc">Pemberton Houston Willoughby Bell Gouinlock Inc</NamedEntityInText>
<SimpleTextPart>. The private placement consists of special warrants to purchase seven pct convertible redeemable preferred shares. The shares will be convertible for five years into common shares at five dlrs per share. The preferred shares are not redeemable for 2-1/2 years. Net proceeds will be used to increase working capital and finance exploration and development.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="16">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15019</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Todays dollar convertible eurobond for </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Federal_Realty_Investment_Trust">Federal Realty Investment Trust</NamedEntityInText>
<SimpleTextPart> has been increased to 100 mln dlrs from the initial 75 mln, lead manager </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Salomon_Brothers">Salomon Brothers International</NamedEntityInText>
<SimpleTextPart> said. The coupon has been fixed at 5-1/4 pct compared with the indicated range of 5-1/4 to 5-1/2 pct. The conversion price has been fixed at 30-5/8 dlrs compared with last nights close in the U.S. Of 25-1/2 dlrs. This represents a premium of 20 pct. The put option after seven years was priced at 120 pct to give the investor a yield to the put of 7.53 pct.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="17">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15020</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Volkswagen_Group">Volkswagen AG</NamedEntityInText>
<SimpleTextPart> VOWG.F, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Volkswagen_Group">VW</NamedEntityInText>
<SimpleTextPart>, is due to make a formal announcement about its 1986 dividend tomorrow after saying the 1985 level of 10 marks per ordinary share would be held, despite massive losses because of a suspected foreign currency fraud. A spokesman said </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Volkswagen_Group">VW</NamedEntityInText>
<SimpleTextPart>s supervisory board will meet tomorrow to discuss the payout. A statement will be made afterwards. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Volkswagen_Group">VW</NamedEntityInText>
<SimpleTextPart> has also said disclosed profits for 1986 will reach their 1985 level, despite provisions of a possible 480 mln marks linked to the currency affair. The figure is virtually the same as the 477 mln mark 1985 parent company net profit. When </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Volkswagen_Group">VW</NamedEntityInText>
<SimpleTextPart> first confirmed the currency scandal on March 10 it said the management board would propose an unchanged 10-mark dividend to the supervisory board. A dividend of 11 marks would be proposed for the companys new preference shares. Share analysts said they saw supervisory board approval of the management board proposal as virtually a formality. Anything else would be more than a surprise, one said. Company sources said </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Volkswagen_Group">VW</NamedEntityInText>
<SimpleTextPart> would have to dig into reserves to maintain the disclosed profit. Parent company reserves stood at around three billion marks at end-1985.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="18">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15021</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Toronto-Dominion_Bank">Toronto Dominion Bank</NamedEntityInText>
<SimpleTextPart>, Nassau Branch is issuing a 40 mln Australian dlr eurobond due May 15, 1990 paying 14-1/2 pct and priced at 101-3/8 pct, lead manager </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Hambros_Bank">Hambros Bank Ltd</NamedEntityInText>
<SimpleTextPart> said. The non-callable bond is available in denominations of 1,000 Australian dlrs and will be listed in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/London">London</NamedEntityInText>
<SimpleTextPart>. The selling concession is one pct, while management and underwriting combined will pay 1/2 pct. The payment date is May 15.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="19">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15022</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Toronto-Dominion_Bank">Toronto Dominion Bank</NamedEntityInText>
<SimpleTextPart>, Nassau Branch is issuing a 40 mln Australian dlr eurobond due May 15, 1990 paying 14-1/2 pct and priced at 101-3/8 pct, lead manager </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Hambros_Bank">Hambros Bank Ltd</NamedEntityInText>
<SimpleTextPart> said. The non-callable bond is available in denominations of 1,000 Australian dlrs and will be listed in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/London">London</NamedEntityInText>
<SimpleTextPart>. The selling concession is one pct, while management and underwriting combined will pay 1/2 pct. The payment date is May 15.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="21">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15024</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Southmark_Corp">Southmark Corp</NamedEntityInText>
<SimpleTextPart> said it acquired 28 long-term care facilities containing for approximately 70 mln dlrs in cash. It said the facilities, which contain approximately 2,500 beds in seven western states, were bought from </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Don_Bybee_and_Associates">Don Bybee and Associates</NamedEntityInText>
<SimpleTextPart>, of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Salem,_Oregon">Salem</NamedEntityInText>
<SimpleTextPart>,</SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Oregon">Ore</NamedEntityInText>
<SimpleTextPart>. The acquistion brings to 57 health care facilities acquired in the last three months, the company said.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="22">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15025</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Helen_of_Troy_Limited">Helen of Troy Corp</NamedEntityInText>
<SimpleTextPart> said it filed with the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/U.S._Securities_and_Exchange_Commission">Securities and Exchange Commission</NamedEntityInText>
<SimpleTextPart> a registration statement covering a 20 mln dlr issue of covertible subordinated debentures due 2007. Proceeds will be used for general corporate purposes, including possible repayment of bank debt, product development and possible acquisitions, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Helen_of_Troy_Limited">Helen of Troy</NamedEntityInText>
<SimpleTextPart> said. The company named </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Drexel_Burnham_Lambert">Drexel Burnham Lambert Inc</NamedEntityInText>
<SimpleTextPart> as sole underwriter of the offering.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="23">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15026</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>shr 1.22 dlrs vs 1.28 dlrs net 226.4 mln vs 233.9 mln assets 80.45 billion vs 70.23 billion loans 35.16 billion vs 35.99 billion deposits 45.22 billion vs 39.68 billion return on assets 1.14 pct vs 1.35 pct return on common equity 18.20 pct vs 22.08 pct NOTE: 1987 qtr net was reduced by 20 mln dlrs because 1.3 billion dlrs of loans to </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Brazil">Brazil</NamedEntityInText>
<SimpleTextPart> were placed on non-accrual. loan loss provision 35 mln dlrs vs 70 mln year earlier.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="26">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15029</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Hanover_Insurance">Hanover Insurance Co</NamedEntityInText>
<SimpleTextPart> said its stockholders approved a two-for-one stock split. As a result of the split, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Hanover_Insurance">Hanover</NamedEntityInText>
<SimpleTextPart> said it increases the number of authorized shares of capital stock from 10.4 mln, having a par value of one dlr, to 20.9 mln, also having a par value of one dlr. The stock split is payable April 30 to stockholders of record April 10, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Hanover_Insurance">Hanover</NamedEntityInText>
<SimpleTextPart> said.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="27">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15030</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Federal_Paperboard_Co_Inc">Federal Paperboard Co Inc</NamedEntityInText>
<SimpleTextPart> said it has entered into an agreement with </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Ozaki_Trading_Co_Ltd">Ozaki Trading Co Ltd</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Osaka">Osaka</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Japan">Japan</NamedEntityInText>
<SimpleTextPart>, allowing </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Ozaki_Trading_Co_Ltd">Ozaki</NamedEntityInText>
<SimpleTextPart> to represent </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Federal_Paperboard_Co_Inc">Federal Paperboards</NamedEntityInText>
<SimpleTextPart> bleached paperboard sales in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Japan">Japan</NamedEntityInText>
<SimpleTextPart>. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Federal_Paperboard_Co_Inc">Federal</NamedEntityInText>
<SimpleTextPart> added it will be opening an office in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Japan">Japan</NamedEntityInText>
<SimpleTextPart> in the near future.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="28">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15031</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/National_Guardian_Corp">National Guardian Corp</NamedEntityInText>
<SimpleTextPart> said it has acquired a number of security services companies recently, with aggregate revenues of about 3,500,000 dlrs, for an aggregate cost of about 2,700,000 dlrs. It said it acquired guard service companies </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/C.S.C._Security_Gaurd_Service">C.S.C. Security Gaurd Service</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Paramus,_New_Jersey">Paramus</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/New_Jersey">N.J</NamedEntityInText>
<SimpleTextPart>., from </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Cartel_Security_Consultants_Inc">Cartel Security Consultants Inc</NamedEntityInText>
<SimpleTextPart>, the Guard Services Division of </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Security_Services_of_America">Security Services of America</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Wayne,_New_Jersey">Wayne</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/New_Jersey">N.J.</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Capital_Investigations_and_Protective_Agency">Capital Investigations and Protective Agency</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Hackensack,_New_Jersey">Hackensack</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/New_Jersey">N.J.</NamedEntityInText>
<SimpleTextPart>, and </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Meyer_Detective_Agency_Inc">Meyer Detective Agency Inc</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/National_Park,_New_Jersey">National Park</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/New_Jersey">N.J.</NamedEntityInText>
<SimpleTextPart> The company said it bought alarm service operations </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Certified_Security_Services_Inc">Certified Security Services Inc</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Key_West">Key West</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Florida">Fla.</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Custom_Security_Services">Custom Security Services</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Myrtle_Beach,_South_Carolina">Myrtle Beach</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/South_Carolina">S.C.</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/A-T-E_Security_Group_Inc">A-T-E Security Group Inc</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Houston">Houston</NamedEntityInText>
<SimpleTextPart> and the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Louisville,_Kentucky">Louisville</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Kentucky">Kent</NamedEntityInText>
<SimpleTextPart> and </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Nashville,_Tennessee">Nashville</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Tennessee">Tenn</NamedEntityInText>
<SimpleTextPart>, offices of </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Wells_Fargo_Alarm_Services">Wells Fargo Alarm Services</NamedEntityInText>
<SimpleTextPart>.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="29">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15032</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Qtly distribution 7-1/2 cts vs 7-1/2 cts prior (excluding 2-1/2 cts special) Pay April 30 Record April 22 NOTE: Full name is </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Universal_Medical_Buildings_L_P">Universal Medical Buildings L.P.</NamedEntityInText>
</TextWithNamedEntities>
</Document>
<Document id="30">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15033</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>The </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Zambia">Zambian government</NamedEntityInText>
<SimpleTextPart> has no immediate plans to follow last weeks increase in the producer price of maize with a hike in the retail price of maize meal, an official of the ruling party said. Last December, a 120 pct increase in the consumer price for refined maize meal, a Zambian staple, led to food riots in which at least 15 people died. That price increase, which President </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Kenneth_Kaunda">Kenneth Kaunda</NamedEntityInText>
<SimpleTextPart> later revoked, followed pressure by the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/International_Monetary_Fund">International Monetary Fund</NamedEntityInText>
<SimpleTextPart> (</SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/International_Monetary_Fund">IMF</NamedEntityInText>
<SimpleTextPart>) to reduce the governments subsidy bill. However, if the producer price rise, from 6.10 dlrs to 8.67 dlrs per 90-kg bag, is not accompanied by a retail price increase, the government will have to spend more on subsidies, a practice discouraged by the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/International_Monetary_Fund">IMF</NamedEntityInText>
<SimpleTextPart>. There is no way out but to raise the subsidy levels of meal. It (the government) would have to choose between the demands of the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/International_Monetary_Fund">IMF</NamedEntityInText>
<SimpleTextPart> and those of the people, a Ministry of Agriculture economist said.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="31">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15034</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Blocker_Energy_corp">Blocker Energy corp</NamedEntityInText>
<SimpleTextPart> said an offering of 20 mln common shares is underway at 2.625 dlrs per share through underwriters led by </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Drexel_Burnham_Lambert">Drexel Burnham Lambert Inc</NamedEntityInText>
<SimpleTextPart> and </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Alex._Brown_%26_Sons">Alex. Brown and Sons Inc</NamedEntityInText>
<SimpleTextPart> ABSB. The company is offering 19.7 mln shares and shareholders the rest. Before the offering it had about 33.6 mln shares outstanding.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="32">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15035</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/ASARCO">Asarco Inc</NamedEntityInText>
<SimpleTextPart> said it completed the sale of four mln shares of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/ASARCO">Asarco</NamedEntityInText>
<SimpleTextPart> common stock to an underwriting group led by </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/First_Boston">First Boston Corp</NamedEntityInText>
<SimpleTextPart>. The underwriters sold the shares to the public at a price of 22.50 dlrs a share, the minerals and energy company said. Proceeds of about 86 mln dlrs will be used to reduce outstanding debt, it said. The offering included 3.5 mln shares announced April 1 and 500,000 to cover overallotments.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="33">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15036</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/American_Midland_Corp">American Midland Corp</NamedEntityInText>
<SimpleTextPart> said </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Braodway_Casinos_Inc">Braodway Casinos Inc</NamedEntityInText>
<SimpleTextPart> has entered into a letter of intent for a new company to be formed by </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Carnival_Cruise_Lines">Carnival Cruise Lines Inc</NamedEntityInText>
<SimpleTextPart> and Continental Hotel Cos to operate Broadways planned hotel/casino in the Marina area of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Atlantic_City,_New_Jersey">Atlantic City</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/New_Jersey">N.J.</NamedEntityInText>
<SimpleTextPart> </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/American_Midland_Corp">American Midland</NamedEntityInText>
<SimpleTextPart> has agreed to spin off its 8.2 acre </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Atlantic_City,_New_Jersey">Atlantic City</NamedEntityInText>
<SimpleTextPart> property to Broadway, a new company in which </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/American_Midland_Corp">American Midland</NamedEntityInText>
<SimpleTextPart> shareholders would initially own an 85 pct interest.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="34">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15037</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Wedgestone_Realty_Investors_Trust">Wedgestone Realty Investors Trust</NamedEntityInText>
<SimpleTextPart> said shareholkders have approved the acquisition of its advisor, </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Wedgestone_Advisory_Corp">Wedgestone Advisory Corp</NamedEntityInText>
<SimpleTextPart>, for 600,000 shares. It said completion is expected to take place April 10.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="35">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15038</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Sun_Co">Sun Co's</NamedEntityInText><SimpleTextPart> </SimpleTextPart><NamedEntityInText uri="http://aksw.org/notInWiki/Sun_Refining_and_Marketing_Co">Sun Refining and Marketing Co</NamedEntityInText>
<SimpleTextPart> subsidiary said it is decreasing the price it charges contract barge customers for heating oil in ny harbor by 0.50 cent a gallon, effective today. The 0.50 cent a gallon price reduction brings Suns heating oil contract barge price to 50 cts a gallon, the company said.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="36">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15040</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Promising new findings in the use of a controversial experimental drug called Interleukin-2 as a cure for cancer will be published in the April 9 issue of the prestigious </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/The_New_England_Journal_of_Medicine">New England Journal of Medicine</NamedEntityInText>
<SimpleTextPart>, according to a </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Wall_Street">Wall Street</NamedEntityInText>
<SimpleTextPart> analyst who has obtained an advance copy of the magazine. Among interleukins principal U. S. makers are </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Cetus_Corporation">Cetus Corp</NamedEntityInText>
<SimpleTextPart> CTUS, headquartered in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Emeryville,_California">Emeryville</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/California">Calif</NamedEntityInText>
<SimpleTextPart>., and </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Immunex_Corp">Immunex Corp IMNX</NamedEntityInText>
<SimpleTextPart>, based in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Seattle">Seattle</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Washington">Wash</NamedEntityInText>
<SimpleTextPart>. The journal, to be released late today, contains two articles reporting high remission rates several cancer types. The journal also contains a signed editorial concluding that the new results mark a significant milestone in the search for a successful immunotherapy for cancer. Interleukin-2, also known as IL-2, is a substance naturally produced by living cells in the laboratory. The drug is controversial because it was widely praised as a promising cancer treatment in early reports on its effectiveness in late 1985, only to come under criticism a year later for its failure to live up to its promise and due to its ravaging side effects. One of the new studies, conducted by Dr. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/William_West">William West</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Biotherapeutics_Inc">Biotherapeutics Inc</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Franklin,_Tennessee">Franklin</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Tennessee">Tenn</NamedEntityInText>
<SimpleTextPart>., is particularly significant because it found far fewer harsh side effects after it changed the way in which the drug is administered. In that study, researchers administered IL-2 to 48 cancer patients and found a 50-pct remission rate for kidney cancers and a 50 pct remission rate for melanoma, a type of skin cancer, according to </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Prudential_Securities">Prudential-Bache Securities</NamedEntityInText>
<SimpleTextPart> </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Stuart_Weisbrod">Stuart Weisbrod</NamedEntityInText>
<SimpleTextPart>, who obtained the advance copy of the magazine. For rectal and colon cancer, the researchers found no remissions, but none of the 48 patients treated had side effects serious enough to be placed under intensive hospital care, according to the article. In the second study, whose principal author is </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Steven_Rosenberg">Dr. Steven Rosenberg</NamedEntityInText>
<SimpleTextPart> of the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/National_Cancer_Institute">National Cancer Institute</NamedEntityInText>
<SimpleTextPart>, researchers administered IL-2 to 157 cancer patients and found a 33 pct remission rate in cancers of the kidney, a 27 pct rate in melanomas and a 15 pct rate in cancers of the colon and rectum. In the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/National_Cancer_Institute">National Cancer Institute</NamedEntityInText>
<SimpleTextPart> trials, a total of four patients died, the magazine reported, confirming the harshness of the drugs side effects as originally administered. Perhaps we are at the end of the beginning of the search for successful immunotherapy for cancer, said the editorial, signed by </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/John_Durant">John Durant</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Fox_Chase_Cancer_Center">Philadelphias Chase Cancer Center</NamedEntityInText>
<SimpleTextPart>. These observations reported by </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Steven_Rosenberg">Rosenberg</NamedEntityInText>
<SimpleTextPart> and </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/William_West">West</NamedEntityInText>
<SimpleTextPart> surely did not describe successful practical approaches ready for widespread applications in the therapy of cancer patients, the editorial said. On the other hand, if they reflect, as seems possible, a successful manipulation of the cellular immune system, then we may be near the end of our search for a meaningful direction in the immunuotherapy of cancer, the editorial concluded.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="37">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15041</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>An audit submitted to the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Georgia_Public_Service_Commission">Georgia Public Service Commission</NamedEntityInText>
<SimpleTextPart> claims that between 944 mln dlrs and 1.8 billion dlrs of the costs of the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Vogtle_Electric_Generating_Plant">Plant Vogtle nuclear power station</NamedEntityInText>
<SimpleTextPart> should be disallowed, a </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Southern_Company">Southern Co</NamedEntityInText>
<SimpleTextPart> spokeswoman said. Southerns </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Georgia_Power">Georgia Power Co</NamedEntityInText>
<SimpleTextPart> subsidiary has a 45.7 pct interest in the plant and estimated earlier this year it would cost a total of 8.87 billion dlrs. Last year, the plants owners pledged to </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Georgia_Power">Georgia</NamedEntityInText>
<SimpleTextPart> regulators they would limit the cost passed on to rate payers to 8.4 billion dlrs. The Southern spokeswoman said the company feels the report by </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/OBrien-Kreitzberg">OBrien-Kreitzberg</NamedEntityInText>
<SimpleTextPart> is flawed and biased. She said the report was released yesterday by the state attorney general. Responding to the report today, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Georgia_Power">Georgia Power</NamedEntityInText>
<SimpleTextPart> Chairman </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Robert_W_Scherer">Robert W. Scherer</NamedEntityInText>
<SimpleTextPart> told a news conference the conclusions drawn by the firm are not only wrong -- they also reflect the same bias against nuclear power that these auditors have demonstrated in similar cases accross the country. Saying he was not suggesting </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Georgia_Power">Georgia power</NamedEntityInText>
<SimpleTextPart> was without fault, </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Robert_W_Scherer">Scherer</NamedEntityInText>
<SimpleTextPart> said the audit identified several things I wish we had done differently. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Robert_W_Scherer">Scherer</NamedEntityInText>
<SimpleTextPart> pointed out a report OBrien-Kreitzberg submitted to </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Georgia_Power">Georgia</NamedEntityInText>
<SimpleTextPart> regulators in March 1986 projected </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Georgia_Power">Georgia Power</NamedEntityInText>
<SimpleTextPart> would not finish </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Vogtle_Electric_Generating_Plant">Plant Vogtle</NamedEntityInText>
<SimpleTextPart> unit one before the end of 1987. Noting unit one is finished, and we expect it to be in commercial operationg by June, he said the firms latest report ignored the earlier projection, gave the utility no credit for the completion and actually penalized us by suggesting that costs to maintain t he schedule be disallowed. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Robert_W_Scherer">Scherer</NamedEntityInText>
<SimpleTextPart> said the latest audit alleges </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Georgia_Power">Georgia Power</NamedEntityInText>
<SimpleTextPart> could have saved 95 mln dlrs if it had stopped using four shifts, seven days a week to speed construction three years sooner. He said this would have delayed completion of the plant for another year and it would have cost several hunderd million dlrs more. Noting the audit said costs were increased 600 mln dlrs by schedule delays totaling 20.5 months, he said First, we have the best concrete placement record in the industry, Second new government regulations after the Three Mile Island incident significantly increased construction time.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="38">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15042</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>The coupon on the 75 mln dlr, 15-year, convertible eurobond for </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Atari">Atari Corp</NamedEntityInText>
<SimpleTextPart> has been set at 5-1/4 pct compared with indicated range of five to 5-1/4 pct, lead manager </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Paine_Webber">Paine Webber International</NamedEntityInText>
<SimpleTextPart> said. The conversion price was set at 32-5/8 dlrs, representing a premium of 20.38 pct over yesterdays </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Atari">Atari</NamedEntityInText>
<SimpleTextPart> share close of 27 dlrs.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="39">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15043</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Argentine grain producers adjusted their yield estimates for the 1986/87 coarse grain crop downward in the week to yesterday after the heavy rains at the end of March and beginning of April, trade sources said. They said sunflower, maize and sorghum production estimates had been reduced despite some later warm, dry weather, which has allowed a return to harvesting in some areas. However, as showers fell intermittently after last weekend, producers feared another spell of prolonged and intense rain could cause more damage to crops already badly hit this season. Rains in the middle of last week reached an average of 27 millimetres in parts of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Buenos_Aires_Province">Buenos Aires province</NamedEntityInText>
<SimpleTextPart>, 83 mm in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Córdoba_Province,_Argentina">Cordoba</NamedEntityInText>
<SimpleTextPart>, 41 in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Santa_Fe_Province">Santa Fe</NamedEntityInText>
<SimpleTextPart>, 50 in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Entre_Ríos_Province">Entre Rios</NamedEntityInText>
<SimpleTextPart> and </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Misiones_Province">Misiones</NamedEntityInText>
<SimpleTextPart>, 95 in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Corrientes_Province">Corrientes</NamedEntityInText>
<SimpleTextPart>, eight in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Chaco_Province">Chaco</NamedEntityInText>
<SimpleTextPart> and 35 in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Formosa_Province">Formosa</NamedEntityInText>
<SimpleTextPart>. There was no rainfall in the same period in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/La_Pampa_Province">La Pampa</NamedEntityInText>
<SimpleTextPart>. Producers feared continued damp conditions could produce rotting and lead to still lower yield estimates for all the crops, including soybean. However, as the lands began drying later in the week harvesting advanced considerably, reaching between 36 and 40 pct of the area sown in the case of sunflower. Deterioration of the sunflower crop evident in harvested material in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Córdoba_Province,_Argentina">Cordoba</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/La_Pampa_Province">La Pampa</NamedEntityInText>
<SimpleTextPart> and </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Buenos_Aires">Buenos Aires</NamedEntityInText>
<SimpleTextPart> forced yield estimates per hectare to be adjusted down again. The seasons sunflowerseed production is now forecast at 2.1 mln to 2.3 mln tonnes, against 2.2 mln to 2.4 mln forecast last week and down 43.9 to 48.8 pct on the 1985/86 record of 4.1 mln. Area sown to sunflowers was two to 2.2 mln hectares, 29.9 to 36.3 pct below the record 3.14 mln hectares last season. Maize harvesting has also reached 36 to 40 pct of the area sown. It is near completion in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Córdoba_Province,_Argentina">Cordoba</NamedEntityInText>
<SimpleTextPart> and </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Santa_Fe_Province">Santa Fe</NamedEntityInText>
<SimpleTextPart> and will begin in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/La_Pampa_Province">La Pampa</NamedEntityInText>
<SimpleTextPart> and southern </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Buenos_Aires_Province">Buenos Aires</NamedEntityInText>
<SimpleTextPart> later in April. Production estimates for maize were down from last week at 9.5 mln to 9.8 mln tonnes, against 9.6 mln to 9.9 mln estimated previously. This is 22.2 to 23.4 pct below the 12.4 mln to 12.6 mln tonnes estimated by private sources for the 1985/86 crop and 21.9 to 25.8 pct down on the official figure of 12.8 mln tonnes. Maize was sown on 3.58 mln to 3.78 mln hectares, two to seven pct down on last seasons 3.85 mln. Sorghum was harvested on 23 to 25 pct of the area sown in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Córdoba_Province,_Argentina">Cordoba</NamedEntityInText>
<SimpleTextPart>, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Santa_Fe_Province">Santa Fe</NamedEntityInText>
<SimpleTextPart> and </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Chaco_Province">Chaco</NamedEntityInText>
<SimpleTextPart>. Harvest will start in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/La_Pampa_Province">La Pampa</NamedEntityInText>
<SimpleTextPart> and </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Buenos_Aires_Province">Buenos Aires</NamedEntityInText>
<SimpleTextPart> in mid-April. The total area sown was 1.23 mln to 1.30 mln hectares, 10.3 to 15.2 pct down on the 1.45 mln sown last season. The new forecast for the sorghum crop is 2.9 mln to 3.2 mln tonnes compared with three mln to 3.3 mln forecast last week, and is 23.8 to 29.3 pct down on last seasons 4.1 mln to 4.2 mln tonne crop. The soybean crop for this season was not adjusted, remaining at a record 7.5 mln to 7.7 mln tonnes, up 4.2 to 5.5 pct on the 7.2 mln to 7.3 mln estimated by private sources for 1985/86 and 5.6 to 8.5 pct higher than the official figure of 7.1 mln. The area sown to soybeans this season was a record 3.7 mln to 3.8 mln hectares, 10.8 to 13.8 pct up on the record 3.34 mln sown in 1985/86. The soybean crop is showing excessive moisture in some areas and producers fear they may discover more damage. Some experimental harvesting was carried out in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Santa_Fe_Province">Santa Fe</NamedEntityInText>
<SimpleTextPart> on areas making up only about one pct of the total crop but details on this were not available. Preparation of the fields for the 1987/88 wheat crop, which will be sown between May and August or September, has so far not been as intense as in previous years.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="40">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15045</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Dutch seasonally adjusted unemployment rose in the month to end-March to a total 693,000 from 690,600 at end-February, but was well down from 730,100 at end-March 1986, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Ministry_of_Social_Affairs_and_Employment_(Netherlands)">Social Affairs Ministry</NamedEntityInText>
<SimpleTextPart> figures show. The figure for male jobless rose by 2,000 in the month to 436,500 compared with 470,700 a year earlier. The figure for women was 256,500 at end-March against 256,100 a month earlier and 259,400 at end-March 1986. On an unadjusted basis total unemployment fell by 16,500 in the month to end-March to 692,200. In March 1986 the figure was 725,000. A ministry spokesman said the unadjusted figures showed a smaller than usual seasonal decrease for the time of year, because of particularly cold weather delaying work in the building industry. He said this explained the increase in the adjusted statistics. Total vacancies available rose by 1,900 to 26,300 at end-March. A year earlier the figure was 28,763.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="41">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15047</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Moody's_Investors_Service">Moodys Investors Service Inc</NamedEntityInText>
<SimpleTextPart> said it affirmed the long-term debt ratings but cut the commercial paper to Prime-2 from Prime-1 of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Avco">Avco Financial Services Inc</NamedEntityInText>
<SimpleTextPart>, a unit of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Avco">Avco Corp</NamedEntityInText>
<SimpleTextPart>. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Avco">Avco Financial</NamedEntityInText>
<SimpleTextPart> has 2.5 billion dlrs of debt outstanding. For the paper cut, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Moody's_Investors_Service">Moodys</NamedEntityInText>
<SimpleTextPart> cited a higher risk profile inherent in the companys core business. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Moody's_Investors_Service">Moodys</NamedEntityInText>
<SimpleTextPart> said the affirmation reflected its assessment of a less diversified risk profile in the companys receivables. Affirmed were </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Avco">Avco</NamedEntityInText>
<SimpleTextPart> Financials A-3 senior debt, Baa-2 senior subordinated debt and Baa-3 junior subordinated debt.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="42">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15048</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Top officials of leading industrial nations arrived at the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/United_States_Department_of_the_Treasury">U.S. Treasury</NamedEntityInText>
<SimpleTextPart> main building to begin a meeting of the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Group_of_Five">Group of Five</NamedEntityInText>
<SimpleTextPart>. Officials seen arriving by Reuter correspondents included West German Finance Minister </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Gerhard_Stoltenberg">Gerhard Stoltenberg</NamedEntityInText>
<SimpleTextPart> and </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Deutsche_Bundesbank">Bundesbank</NamedEntityInText>
<SimpleTextPart> President </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Karl_Otto_Pöhl">Karl Otto Poehl</NamedEntityInText>
<SimpleTextPart>, French Finance Minister </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Édouard_Balladur">Edouard Balladur</NamedEntityInText>
<SimpleTextPart> and his central banker </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Jacques_de_Larosière">Jacques de Larosiere</NamedEntityInText>
<SimpleTextPart>. Also seen arriving were Japanese Finance Minister </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Kiichi_Miyazawa">Kiichi Miyazawa</NamedEntityInText>
<SimpleTextPart> and Japans central bank governor </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Satoshi_Sumita">Satoshi Sumita</NamedEntityInText>
<SimpleTextPart> and British Chancellor of the Exchequer and central bank governor </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Robin_Leigh-Pemberton,_Baron_Kingsdown">Robin Leigh Pemberton</NamedEntityInText>
<SimpleTextPart>. There was no immediate sign of Italian or Canadian officials. Monetary sources have said a fully blown meeting of the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/G7">Group of Seven</NamedEntityInText>
<SimpleTextPart> is expected to begin around 3 p.m. local time (1900 gmt) and last at least until 6 p.m. (2200 gmt), when a communique is expected to be issued. Italian sources said Italian acting Finance Minister </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Giovanni_Goria">Giovanni Goria</NamedEntityInText>
<SimpleTextPart> met </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/United_States_Department_of_the_Treasury">Treasury</NamedEntityInText>
<SimpleTextPart> Secretary </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/James_Baker">James Baker</NamedEntityInText>
<SimpleTextPart> last night. At those talks </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/James_Baker">Baker</NamedEntityInText>
<SimpleTextPart> apparently convinced </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Giovanni_Goria">Goria</NamedEntityInText>
<SimpleTextPart>, who declined to attend the February meeting of the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/G7">Group of Seven</NamedEntityInText>
<SimpleTextPart> in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Paris">Paris</NamedEntityInText>
<SimpleTextPart>, that </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Italy">Italy</NamedEntityInText>
<SimpleTextPart> would participate fully in any meaningful decisions.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="43">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15049</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>The </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Federal_Reserve_System">Federal Reserve</NamedEntityInText>
<SimpleTextPart> is expected to intervene in the government securities market to supply temporary reserves indirectly via customer repurchase agreements, economists said. Economists expect the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Federal_Reserve_System">Fed</NamedEntityInText>
<SimpleTextPart> to execute 2.0-2.5 billion dlrs of customer repos to offset pressures from the end of the two-week bank reserve maintenance period today. Some also look for a permanent reserve injection to offset seasonal pressures via an outright purchase of bills or coupons this afternoon. The Federal funds rate opened at 6-3/8 pct and remained at that level, up from yesterdays 6.17 pct average.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="44">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15050</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Best_Buy">Best Buy Co Inc</NamedEntityInText>
<SimpleTextPart> said its sales for March rose to 26.1 mln dlrs from 11.9 mln dlrs in the comparable 1986 period. It said sales for the fiscal year ended March 31 rose to 329.5 mln dlrs from 113.1 mln dlrs a year earlier. The company said sales performance was based on the addition of 12 new retail facilities.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="45">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15051</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/AutoSpa_corp">AutoSpa corp</NamedEntityInText>
<SimpleTextPart> said it will redeem all its common stock purchase warrants on May Five at 7.5 cts each. Through May Four, each warrant may be exercised into one common share at 1.75 dlrs.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="46">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15052</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/The_Reader's_Digest_Association">The Readers Digest Association Inc</NamedEntityInText>
<SimpleTextPart> said it sold its subsidiary, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/The_Source_(online_service)">Source Telecomputing Corp</NamedEntityInText>
<SimpleTextPart>, to the venture capital firm of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Welsh,_Carson,_Anderson_%26_Stowe">Welsh, Carson, Anderson and Stowe</NamedEntityInText>
<SimpleTextPart>. The purchase price was not disclosed, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/The_Reader's_Digest_Association">Readers Digest</NamedEntityInText>
<SimpleTextPart> said. It said it purchased an 80 pct stake in Source in 1980 and earned an unspecified profit on 14 mln dlrs in revenues in 1986.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="48">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15054</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Avnet">Avnet Inc</NamedEntityInText>
<SimpleTextPart> said it filed with the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/U.S._Securities_and_Exchange_Commission">Securities and Exchange Commission</NamedEntityInText>
<SimpleTextPart> a registration statement for a proposed public offering of 150 mln dlrs of convertible subordinated debentures due 2012. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Avnet">Avnet</NamedEntityInText>
<SimpleTextPart> said it will use the net proceeds for general working capital purposes and the anticipated domestic and foreign expansion of its distribution, assembly and manufacturing businesses. The company said an investment banking group managed by </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Dillon,_Read_%26_Co.">Dillon Read and Co Inc</NamedEntityInText>
<SimpleTextPart> will handle the offering.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="49">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15055</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Continental_Bank_of_Canada">Continental Bank of Canada</NamedEntityInText>
<SimpleTextPart> said shareholders approved a capital reorganization to allow an initial payout by the end of May to common shareholders from last years 200 mln Canadian dlr sale of most </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Continental_Bank_of_Canada">Continental</NamedEntityInText>
<SimpleTextPart> assets to </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Lloyds_Bank_of_Canada">Lloyds Bank PLCs Lloyds Bank Canada</NamedEntityInText>
<SimpleTextPart>. The bank said the initial distribution would take the form of a stock dividend of cumulative redeemable retractable class A series two preferred shares entitling holders to monthly floating rate dividends at 72 pct of prime and to 12.75 dlrs a share on retraction. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Continental_Bank_of_Canada">Continental</NamedEntityInText>
<SimpleTextPart> said the initial payout was subject to </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Government_of_Canada">Canadian government</NamedEntityInText>
<SimpleTextPart> approval. The bank reiterated that total distributions to common shareholders would range from 16.50 dlrs a share to 17.25 dlrs including the initial stock dividend and a final distribution in late 1988 or early 1989. The payout of existing preferred shareholders will be completed just before next months initial distribution to common shareholders, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Continental_Bank_of_Canada">Continental</NamedEntityInText>
<SimpleTextPart> added.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="50">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15056</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>4th qtr Shr loss 17 cts vs loss 22 cts Net loss 14.5 mln vs loss 18.0 mln Revs 27.3 mln vs 23.7 mln Year Shr 58 cts vs 1.01 dlrs Net loss 48.3 mln vs loss 84.2 mln Revs 111.7 mln vs 141.9 mln NOTE: </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Atlas_Consolidated_Mining_and_Development_Corp">Atlas Consolidated Mining and Development Corp</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Manila">Manila</NamedEntityInText>
<SimpleTextPart>. Translated from Philippine pesos at 20.3489 pesos to dollar vs 18.5571 in quarter and 20.2315 vs 18.2743 in year.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="51">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15057</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/Ford_Motor_Company">Ford Motor Co</NamedEntityInText>
<SimpleTextPart> said it extended its buyer incentive program on light trucks to April 30 from April 6, the programs previous expiration date. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Ford_Motor_Company">Ford</NamedEntityInText>
<SimpleTextPart>, which saw a 23 pct rise in its March truck sales over the March 1986 level, said the incentives were extended to maintain its truck sales momentum. The program itself was not changed. Customers have a choice of 3.9 to 9.9 annual percentage rate financing or a cash rebate of 300 dlrs or 600 dlrs, depending on the type of transmission chosen. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Ford_Motor_Company">Ford</NamedEntityInText>
<SimpleTextPart> last week extended to April 30 from March 12 its incentive program on its compact trucks and the Ford Taurus and Mercury Sable cars.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="52">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15058</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>World output of staple foods maintained growth in 1986, following a record harvest the year before, and most of the increase was in developing countries, the director general of the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Food_and_Agriculture_Organization">U.N.s Food and Agriculture Organisation</NamedEntityInText>
<SimpleTextPart> (FAO) said. Speaking to FAOs committee on world food security, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Edouard_Saouma">Edouard Saouma</NamedEntityInText>
<SimpleTextPart> said </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Sub-Saharan_Africa">sub-Saharan Africa</NamedEntityInText>
<SimpleTextPart> registered a cereal production increase of 3.6 pct in 1986 and the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Far_East">Far East</NamedEntityInText>
<SimpleTextPart> also continued to increase production. Despite ample supplies worldwide, many countries face problems in paying for all the food they need, he said. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Edouard_Saouma">Saouma</NamedEntityInText>
<SimpleTextPart> said many of the developing worlds food problems were the result of chaotic world trade. He said it was vital to promote employment to improve the food-security situation of the poor, with policy reforms in developing countries to remove existing disincentives to production so that agriculture could play a greater role in stimulating economic growth.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="53">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15059</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/AVX_Corporation">AVX Corp</NamedEntityInText>
<SimpleTextPart> said it has filed a registration statement with the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/U.S._Securities_and_Exchange_Commission">Securities and Exchange Commission</NamedEntityInText>
<SimpleTextPart> for a proposed public offering of 75 mln dlrs prinicipal amount of convertible subordinated debentures. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/AVX_Corporation">AVX</NamedEntityInText>
<SimpleTextPart> said a syndicate managed by </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Shearson">Shearson Lehman Brothers Inc</NamedEntityInText>
<SimpleTextPart> will underwrite the offering.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="54">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15060</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Sci-Med_Life_Systems_Inc">Sci-Med Life Systems Inc</NamedEntityInText>
<SimpleTextPart> said its directors approved a previously proposed agreement of merger with </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Bristol-Myers_Squibb">Bristol-Myers Co</NamedEntityInText>
<SimpleTextPart>. The proposed transaction is subject to completion of a due diligence investigation, including a review by </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Bristol-Myers_Squibb">Bristol-Myers</NamedEntityInText>
<SimpleTextPart> of a patent infringement suit served on </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Sci-Med_Life_Systems_Inc">Sci-Med</NamedEntityInText>
<SimpleTextPart> by </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Advanced_Cardiovascular_Systems_Inc">Advanced Cardiovascular Systems Inc</NamedEntityInText>
<SimpleTextPart> on March 31, 1987. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Bristol-Myers_Squibb">Bristol-Myers</NamedEntityInText>
<SimpleTextPart> has the right to call off the agreement under certain circumstances, it said. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Sci-Med_Life_Systems_Inc">Sci-Med</NamedEntityInText>
<SimpleTextPart> said it continues to believe the patent suit is without merit.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="55">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15061</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Fidelcor_Inc">Fidelcor Inc</NamedEntityInText>
<SimpleTextPart> said it has completed the sale of its </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Industrial_Valley_Title_Insurance_Co">Industrial Valley Title Insurance Co</NamedEntityInText>
<SimpleTextPart> subsidiary to a group of investors including the units management for undisclosed terms. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Industrial_Valley_Title_Insurance_Co">Industrial Valley</NamedEntityInText>
<SimpleTextPart> has assets of about 37.6 mln dlrs and was acquired last year along with </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/IVB_Financial_Corp">IVB Financial Corp</NamedEntityInText>
<SimpleTextPart>.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="57">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15063</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<SimpleTextPart>Cheap oil feedstocks, the weakened U.S. dollar and a plant utilization rate approaching 90 pct will propel the streamlined U.S. petrochemical industry to record profits this year, with growth expected through at least 1990, major company executives predicted. This bullish outlook for chemical manufacturing and an industrywide move to shed unrelated businesses has prompted </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/GAF_Materials_Corporation">GAF Corp</NamedEntityInText>
<SimpleTextPart> (</SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/GAF_Materials_Corporation">GAF</NamedEntityInText>
<SimpleTextPart>), privately-held </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Cain_Chemical_Inc">Cain Chemical Inc</NamedEntityInText>
<SimpleTextPart>, and other firms to aggressively seek acquisitions of petrochemical plants. Oil companies such as </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Ashland_Inc.">Ashland Oil Inc</NamedEntityInText>
<SimpleTextPart> (</SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Ashland_Inc.">ASH</NamedEntityInText>
<SimpleTextPart>), the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Kentucky">Kentucky</NamedEntityInText>
<SimpleTextPart>-based oil refiner and marketer, are also shopping for money-making petrochemical businesses to buy. I see us poised at the threshold of a golden period, said </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Paul_Oreffice">Paul Oreffice</NamedEntityInText>
<SimpleTextPart>, chairman of giant </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Dow_Chemical_Company">Dow Chemical Co</NamedEntityInText>
<SimpleTextPart> (</SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Dow_Chemical_Company">DOW</NamedEntityInText>
<SimpleTextPart>), adding, Theres no major plant capacity being added around the world now. The whole game is bringing out new products and improving the old ones. Analysts say the chemical industrys biggest customers, automobile manufacturers and home builders that use a lot of paints and plastics, are expected to buy quantities this year. U.S. petrochemical plants are currently operating at about 90 pct capacity, reflecting tighter supply that could hike product prices by 30 to 40 pct this year, said </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/John_Dosher">John Dosher</NamedEntityInText>
<SimpleTextPart>, managing director of </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Pace_Consultants_Inc">Pace Consultants Inc</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Houston">Houston</NamedEntityInText>
<SimpleTextPart>. Demand for some products such as styrene could push profit margins up by as much as 300 pct, he said. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Paul_Oreffice">Oreffice</NamedEntityInText>
<SimpleTextPart>, speaking at a meeting of chemical engineers in </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Houston">Houston</NamedEntityInText>
<SimpleTextPart>, said </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Dow_Chemical_Company">Dow</NamedEntityInText>
<SimpleTextPart> would easily top the 741 mln dlrs it earned last year and predicted it would have the best year in its history. In 1985, when oil prices were still above 25 dlrs a barrel and chemical exports were adversely affected by the strong U.S. dollar, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Dow_Chemical_Company">Dow</NamedEntityInText>
<SimpleTextPart> had profits of 58 mln dlrs. I believe the entire chemical industry is headed for a record year or close to it, </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Paul_Oreffice">Oreffice</NamedEntityInText>
<SimpleTextPart> said. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/GAF_Materials_Corporation">GAF</NamedEntityInText>
<SimpleTextPart> chairman </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Samuel_J._Heyman">Samuel Heyman</NamedEntityInText>
<SimpleTextPart> estimated that the U.S. chemical industry would report a 20 pct gain in profits during 1987. Last year, the domestic industry earned a total of 13 billion dlrs, a 54 pct leap from 1985. The turn in the fortunes of the once-sickly chemical industry has been brought about by a combination of luck and planning, said Paces </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/John_Dosher">John Dosher</NamedEntityInText>
<SimpleTextPart>. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/John_Dosher">Dosher</NamedEntityInText>
<SimpleTextPart> said last years fall in oil prices made feedstocks dramatically cheaper and at the same time the American dollar was weakening against foreign currencies. That helped boost U.S. chemical exports. Also helping to bring supply and demand into balance has been the gradual market absorption of the extra chemical manufacturing capacity created by Middle Eastern oil producers in the early 1980s. Finally, virtually all major U.S. chemical manufacturers have embarked on an extensive corporate restructuring program to mothball inefficient plants, trim the payroll and eliminate unrelated businesses. The restructuring touched off a flurry of friendly and hostile takeover attempts. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/GAF_Materials_Corporation">GAF</NamedEntityInText>
<SimpleTextPart>, which made an unsuccessful attempt in 1985 to acquire </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Union_Carbide">Union Carbide Corp</NamedEntityInText>
<SimpleTextPart> UK, recently offered three billion dlrs for </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/BorgWarner">Borg Warner Corp</NamedEntityInText>
<SimpleTextPart> BOR, a </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Chicago">Chicago</NamedEntityInText>
<SimpleTextPart> manufacturer of plastics and chemicals. Another industry powerhouse, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/W.R._Grace">W.R. Grace</NamedEntityInText>
<SimpleTextPart> (</SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/W.R._Grace">GRA</NamedEntityInText>
<SimpleTextPart>) has divested its retailing, restaurant and fertilizer businesses to raise cash for chemical acquisitions. But some experts worry that the chemical industry may be headed for trouble if companies continue turning their back on the manufacturing of staple petrochemical commodities, such as ethylene, in favor of more profitable specialty chemicals that are custom-designed for a small group of buyers. Companies like </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/DuPont">DuPont</NamedEntityInText>
<SimpleTextPart> (</SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/DuPont">DD</NamedEntityInText>
<SimpleTextPart>) and </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Monsanto">Monsanto Co</NamedEntityInText>
<SimpleTextPart> MTC spent the past two or three years trying to get out of the commodity chemical business in reaction to how badly the market had deteriorated, </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/John_Dosher">Dosher</NamedEntityInText>
<SimpleTextPart> said. But I think they will eventually kill the margins on the profitable chemicals in the niche market. Some top chemical executives share the concern. The challenge for our industry is to keep from getting carried away and repeating past mistakes, </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/GAF_Materials_Corporation">GAFs</NamedEntityInText>
<SimpleTextPart> </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Samuel_J._Heyman">Heyman</NamedEntityInText>
<SimpleTextPart> cautioned. The shift from commodity chemicals may be ill-advised. Specialty businesses do not stay special long. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Houston">Houston</NamedEntityInText>
<SimpleTextPart>-based </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Cain_Chemical_Inc">Cain Chemical</NamedEntityInText>
<SimpleTextPart>, created this month by the </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Sterling_investment_banking_group">Sterling investment banking group</NamedEntityInText>
<SimpleTextPart>, believes it can generate 700 mln dlrs in annual sales by bucking the industry trend. Chairman </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Gordon_Cain">Gordon Cain</NamedEntityInText>
<SimpleTextPart>, who previously led a leveraged buyout of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Conoco">Duponts Conoco Incs</NamedEntityInText>
<SimpleTextPart> chemical business, has spent 1.1 billion dlrs since January to buy seven petrochemical plants along the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Gulf_Coast_of_the_United_States">Texas Gulf Coast</NamedEntityInText>
<SimpleTextPart>. The plants produce only basic commodity petrochemicals that are the building blocks of specialty products. This kind of commodity chemical business will never be a glamorous, high-margin business, </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Gordon_Cain">Cain</NamedEntityInText>
<SimpleTextPart> said, adding that demand is expected to grow by about three pct annually. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Garo_H._Armen">Garo Armen</NamedEntityInText>
<SimpleTextPart>, an analyst with </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Dean_Witter_Reynolds">Dean Witter Reynolds</NamedEntityInText>
<SimpleTextPart>, said chemical makers have also benefitted by increasing demand for plastics as prices become more competitive with aluminum, wood and steel products. </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Garo_H._Armen">Armen</NamedEntityInText>
<SimpleTextPart> estimated the upturn in the chemical business could last as long as four or five years, provided the U.S. economy continues its modest rate of growth.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="58">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15064</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://dbpedia.org/resource/International_Paper">Federal Paper Board Co Inc</NamedEntityInText>
<SimpleTextPart> said it has named </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/Ozaki_Trading_Co_Ltd">Ozaki Trading Co Ltd</NamedEntityInText>
<SimpleTextPart> of </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Osaka">Osaka</NamedEntityInText>
<SimpleTextPart> to represent it it </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/Japan">Japan</NamedEntityInText>
<SimpleTextPart> on the sale of bleached paperboard. Federal said it plans to open its own Japanese office in the near future.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="60">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15066</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/CMS_Enhancements_Inc">CMS Enhancements Inc</NamedEntityInText>
<SimpleTextPart> said it has introduced the first add-on mass storage products for the new </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/IBM">International Business Machines Corp</NamedEntityInText>
<SimpleTextPart> </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/IBM">IBM</NamedEntityInText>
<SimpleTextPart> IBM Personal System/2 Model 30 personal computers. </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/CMS_Enhancements_Inc">CMS</NamedEntityInText>
<SimpleTextPart> said the products are available immediately and include hard disk drives, tape backup subsystems and a hard disk drive on an expansion card. It added it plans to introduce more products for higher- end models of the </SimpleTextPart>
<NamedEntityInText uri="http://dbpedia.org/resource/IBM">IBM</NamedEntityInText>
<SimpleTextPart> personal computers within the next two months. Prices for the new products range from 795 dlrs for a tape backup subsystem, to 5,695 dlrs for a mass storage subsystem.</SimpleTextPart>
</TextWithNamedEntities>
</Document>
<Document id="62">
<DocumentURI>http://www.research.att.com/~lewis/Reuters-21578/15068</DocumentURI>
<DocumentSource>Reuters-21578</DocumentSource>
<TextWithNamedEntities>
<NamedEntityInText uri="http://aksw.org/notInWiki/Nantucket_Industries_Inc">Nantucket Industries Inc</NamedEntityInText>
<SimpleTextPart> said </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/James_Adams">James Adams</NamedEntityInText>
<SimpleTextPart> has been named president of its hosiery division, replacing </SimpleTextPart>
<NamedEntityInText uri="http://aksw.org/notInWiki/John_Wineapple">John Wineapple</NamedEntityInText>