-
Notifications
You must be signed in to change notification settings - Fork 0
/
proceessed_sentences.txt
16752 lines (16752 loc) · 905 KB
/
proceessed_sentences.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
a01-000u-s00-00.png A MOVE to stop Mr. Gaitskell from
a01-000u-s00-01.png nominating any more Labour life Peers
a01-000u-s00-02.png is to be made at a meeting of Labour
a01-000u-s00-03.png M
a01-000u-s01-00.png Mr. Michael Foot has
a01-000u-s01-01.png put down a resolution on the subject
a01-000u-s01-02.png and he is to be backed by Mr. Will
a01-000u-s01-03.png Griffiths , M
a01-000x-s00-00.png A MOVE to stop Mr. Gaitskell from nominating
a01-000x-s00-01.png any more Labour life Peers is to be made at a
a01-000x-s00-02.png meeting of Labour 0M
a01-000x-s01-00.png Mr. Michael
a01-000x-s01-01.png Foot has put down a resolution on the subject
a01-000x-s01-02.png and he is to be backed by Mr. Will Griffiths ,
a01-000x-s01-03.png 0M
a01-003-s00-00.png Though they may gather some Left-wing support , a
a01-003-s00-01.png large majority of Labour M
a01-003-s00-02.png turn down the Foot-Griffiths resolution .
a01-003-s01-00.png Mr.
a01-003-s01-01.png Foot's line will be that as Labour M
a01-003-s01-02.png opposed the Government Bill which brought
a01-003-s01-03.png life peers into existence , they should not
a01-003-s01-04.png now put forward nominees .
a01-003-s02-00.png He believes
a01-003-s02-01.png that the House of Lords should be abolished
a01-003-s02-02.png and that Labour should not take any steps
a01-003-s02-03.png which would appear to prop up an out-dated
a01-003-s02-04.png institution .
a01-003u-s00-00.png Though they may gather some Left-wing
a01-003u-s00-01.png support , a large majority of Labour
a01-003u-s00-02.png M
a01-003u-s00-03.png Griffiths resolution .
a01-003u-s01-00.png Mr. Foot's line will
a01-003u-s01-01.png be that as Labour M
a01-003u-s01-02.png Government Bill which brought life peers
a01-003u-s01-03.png into existence , they should not now put
a01-003u-s01-04.png forward nominees .
a01-003u-s02-00.png He believes that the
a01-003u-s02-01.png House of Lords should be abolished and
a01-003u-s02-02.png that Labour should not take any steps
a01-003u-s02-03.png which would appear to prop up an out-
a01-003x-s00-00.png Though they may gather some Left-wing support , a
a01-003x-s00-01.png large majority of Labour 0M
a01-003x-s00-02.png down the Foot-Griffiths resolution .
a01-003x-s01-00.png Mr. Foot's line
a01-003x-s01-01.png will be that as Labour 0M
a01-003x-s01-02.png ment Bill which brought life peers into existence , they
a01-003x-s01-03.png should not now put forward nominees .
a01-003x-s02-00.png He believes
a01-003x-s02-01.png that the House of Lords should be abolished and
a01-003x-s02-02.png that Labour should not take any steps which would
a01-003x-s02-03.png appear to prop up an out-dated institution .
a01-007-s00-00.png Since 1958 , 13 Labour life Peers and
a01-007-s00-01.png Peeresses have been created .
a01-007-s01-00.png Most Labour
a01-007-s01-01.png sentiment would # still favour the abolition
a01-007-s01-02.png of the House of Lords , but while it remains
a01-007-s01-03.png Labour has to have an adequate number of
a01-007-s01-04.png members .
a01-007-s02-00.png THE two rival African Nationalist
a01-007-s02-01.png Parties of Northern Rhodesia have agreed to
a01-007-s02-02.png get together to face the challenge from Sir
a01-007-s02-03.png Roy Welensky , the Federal Premier .
a01-007u-s00-00.png Since 1958 , 13 Labour life Peers and
a01-007u-s00-01.png Peeresses have been created .
a01-007u-s01-00.png Most Labour
a01-007u-s01-01.png sentiment would still favour the abolition
a01-007u-s01-02.png of the House of Lords , but while it remains
a01-007u-s01-03.png Labour has to have an adequate number
a01-007u-s01-04.png of members .
a01-007u-s02-00.png THE two rival African
a01-007u-s02-01.png Nationalist Parties of Northern Rhodesia
a01-007u-s02-02.png have agreed to get together to face
a01-007u-s02-03.png the challenge from Sir Roy Welensky ,
a01-007u-s02-04.png the Federal Premier .
a01-007x-s00-00.png Since 1958 , 13 Labour life Peers and #
a01-007x-s00-01.png Peeresses have been created .
a01-007x-s01-00.png Most Labour sentiment
a01-007x-s01-01.png would still favour the abolition of the House
a01-007x-s01-02.png of Lords , but while it remains Labour has to
a01-007x-s01-03.png have an adequate number of members .
a01-007x-s02-00.png THE
a01-007x-s02-01.png two rival African Nationalist Parties of Northern
a01-007x-s02-02.png Rhodesia have agreed to get together to face the
a01-007x-s02-03.png challenge from Sir Roy Welensky , the Federal Premier .
a01-011-s00-00.png Delegates from Mr. Kenneth Kaunda's United National Independence
a01-011-s00-01.png Party ( 280,000 members ) and Mr. Harry Nkumbula's African
a01-011-s00-02.png National Congress ( 400,000 ) will meet in London today
a01-011-s00-03.png to discuss a common course of action .
a01-011-s01-00.png Sir Roy is
a01-011-s01-01.png violently opposed to Africans getting an elected majority
a01-011-s01-02.png in Northern Rhodesia , but the Colonial Secretary ,
a01-011-s01-03.png Mr. Iain Macleod , is insisting on a policy of change .
a01-011u-s00-00.png Delegates from Mr. Kenneth Kaunda's
a01-011u-s00-01.png United National Independence Party
a01-011u-s00-02.png ( 280,000 members ) and Mr. Harry Nkumbula's
a01-011u-s00-03.png African National Congress ( 400,000 ) will
a01-011u-s00-04.png meet in London today to discuss a common
a01-011u-s00-05.png course of action .
a01-011u-s01-00.png Sir Roy is violently
a01-011u-s01-01.png opposed to Africans getting an elected
a01-011u-s01-02.png majority in Northern Rhodesia , but the
a01-011u-s01-03.png Colonial Secretary , Mr. Iain Macleod ,
a01-011u-s01-04.png is insisting on a policy of change .
a01-011x-s00-00.png Delegates from Mr. Kenneth Kaunda's United
a01-011x-s00-01.png National Independence Party ( 280,000 members )
a01-011x-s00-02.png and Mr. Harry Nkumbula's African National
a01-011x-s00-03.png Congress ( 400,000 ) will meet in London today
a01-011x-s00-04.png to discuss a common course of action .
a01-011x-s01-00.png Sir Roy is violently opposed to Africans
a01-011x-s01-01.png getting an elected majority in Northern
a01-011x-s01-02.png Rhodesia , but the Colonial Secretary , Mr. Iain
a01-011x-s01-03.png Macleod , is insisting on a policy of change .
a01-014-s00-00.png Sir Roy's United Federal Party is boycotting
a01-014-s00-01.png the London talks on the Protectorate's
a01-014-s00-02.png future .
a01-014-s01-00.png Said Mr. Nkumbula last night :
a01-014-s02-00.png We want to discuss what to do if the
a01-014-s02-01.png British Government gives in to Sir Roy and
a01-014-s02-02.png the talks fall through .
a01-014-s03-00.png There are bound
a01-014-s03-01.png to be demonstrations .
a01-014-s04-00.png Yesterday Sir Roy's
a01-014-s04-01.png chief aide , Mr. Julius Greenfield , telephoned
a01-014-s04-02.png his chief a report on his talks with
a01-014-s04-03.png Mr. Macmillan at Chequers .
a01-014u-s00-00.png Sir Roy's United Federal Party is
a01-014u-s00-01.png boycotting the London talks on the
a01-014u-s00-02.png Protectorate's future .
a01-014u-s01-00.png Said Mr. Nkumbula
a01-014u-s01-01.png last night :
a01-014u-s02-00.png We want to discuss what to
a01-014u-s02-01.png do if the British
a01-014u-s03-00.png demonstrations .
a01-014u-s04-00.png Yesterday Sir Roy's chief aide , Mr.
a01-014u-s04-01.png Julius Greenfield , telephoned his chief
a01-014u-s04-02.png a report on his talks with Mr. Macmillan
a01-014u-s04-03.png at Chequers .
a01-014x-s00-00.png Sir Roy's United Federal Party is boycotting
a01-014x-s00-01.png the London talks on the Protectorate's
a01-014x-s00-02.png future .
a01-014x-s01-00.png Said Mr. Nkumbula last night :
a01-014x-s02-00.png We want to discuss what to do if the
a01-014x-s02-01.png British Government gives in to Sir Roy
a01-014x-s02-02.png and the talks fall through .
a01-014x-s03-00.png There are bound
a01-014x-s03-01.png to be demonstrations .
a01-014x-s04-00.png Yesterday Sir Roy's
a01-014x-s04-01.png chief aide , Mr. Julius Greenfield , telephoned
a01-014x-s04-02.png his chief a report on his talks with Mr.
a01-014x-s04-03.png Macmillan at Chequers .
a01-020-s00-00.png Mr. Macleod went on with the conference at
a01-020-s00-01.png Lancaster House despite the crisis which had
a01-020-s00-02.png blown up .
a01-020-s01-00.png He has now revealed his full plans
a01-020-s01-01.png to the Africans and Liberals attending .
a01-020-s02-00.png These
a01-020-s02-01.png plans do not give the Africans the overall
a01-020-s02-02.png majority they are seeking .
a01-020-s03-00.png African delegates
a01-020-s03-01.png are studying them today .
a01-020-s04-00.png The conference
a01-020-s04-01.png will meet to discuss the function of a
a01-020-s04-02.png proposed House of Chiefs .
a01-020u-s00-00.png Mr. Macleod went on with the conference
a01-020u-s00-01.png at Lancaster House despite the crisis
a01-020u-s00-02.png which had blown up .
a01-020u-s01-00.png He has now revealed
a01-020u-s01-01.png his full plans to the Africans and Liberals
a01-020u-s01-02.png attending .
a01-020u-s02-00.png These plans do not give the
a01-020u-s02-01.png Africans the overall majority they are
a01-020u-s02-02.png seeking .
a01-020u-s03-00.png African delegates are studying
a01-020u-s03-01.png them today .
a01-020u-s04-00.png The conference will meet
a01-020u-s04-01.png to discuss the function of a proposed
a01-020u-s04-02.png House of Chiefs .
a01-020x-s00-00.png Mr. Macleod went on with the conference at
a01-020x-s00-01.png Lancaster House despite the crisis which had
a01-020x-s00-02.png blown up .
a01-020x-s01-00.png He has now revealed his full plans
a01-020x-s01-01.png to the Africans and Liberals attending .
a01-020x-s02-00.png These
a01-020x-s02-01.png plans do not give the Africans the overall majo-
a01-020x-s02-02.png rity they are seeking .
a01-020x-s03-00.png African delegates are
a01-020x-s03-01.png studying them today .
a01-020x-s04-00.png The conference will meet
a01-020x-s04-01.png to discuss the function of a proposed House
a01-020x-s04-02.png of Chiefs .
a01-026-s00-00.png MR. IAIN MACLEOD , the Colonial Secretary , denied
a01-026-s00-01.png in the Commons last night that there have been
a01-026-s00-02.png secret negotiations on Northern Rhodesia's future .
a01-026-s01-00.png The Northern Rhodesia conference in London has
a01-026-s01-01.png been boycotted by the two main settlers' parties -
a01-026-s01-02.png the United Federal Party and the Dominion Party .
a01-026-s02-00.png But representatives of Sir Roy Welensky , Prime
a01-026-s02-01.png Minister of the Central African Federation , went
a01-026-s02-02.png to Chequers at the week-end for talks with
a01-026-s02-03.png Mr. Macmillan .
a01-026u-s00-00.png MR. IAIN MACLEOD , the Colonial Secretary ,
a01-026u-s00-01.png denied in the Commons last night that
a01-026u-s00-02.png there have been secret negotiations on
a01-026u-s00-03.png Northern Rhodesia's future .
a01-026u-s01-00.png The Northern
a01-026u-s01-01.png Rhodesia conference in London has been
a01-026u-s01-02.png boycotted by the two main settlers' parties -
a01-026u-s01-03.png the United Federal Party and the Dominion
a01-026u-s01-04.png Party .
a01-026u-s02-00.png But representatives of Sir Roy
a01-026u-s02-01.png Welensky , Prime Minister of the Central
a01-026u-s02-02.png African Federation , went to Chequers at
a01-026u-s02-03.png the week-end for talks with Mr. Macmillan .
a01-026x-s00-00.png Mr. Iain Macleod , the Colonial Secretary , denied
a01-026x-s00-01.png in the Commons last night that there have
a01-026x-s00-02.png been secret negotiations on the Northern Rhodesia's
a01-026x-s00-03.png future .
a01-026x-s01-00.png The Northern Rhodesia conference in
a01-026x-s01-01.png London has been boycotted by the two main
a01-026x-s01-02.png settlers' parties - the United Federal Party
a01-026x-s01-03.png and the Dominion Party .
a01-026x-s02-00.png But representatives
a01-026x-s02-01.png of Sir Roy Welensky , Prime Minister of the
a01-026x-s02-02.png Central African Federation , went to Chequers
a01-026x-s02-03.png at the week-end for talks with Mr. Macmillan .
a01-030-s00-00.png Northern Rhodesia is a member of the Federation .
a01-030-s01-00.png Mr. Macleod was not at the week-end meeting .
a01-030-s02-00.png But he told
a01-030-s02-01.png M
a01-030-s03-00.png I have no knowledge of secret negotiations .
a01-030-s04-00.png He said Britain had an obligation to consult the Federal
a01-030-s04-01.png Government .
a01-030-s05-00.png But the final decision remained with the British
a01-030-s05-01.png Government .
a01-030-s06-00.png Mr. James Callaghan , Labour's Colonial spokesman ,
a01-030-s06-01.png said Sir Roy had no right to delay progress in the talks by
a01-030-s06-02.png refusing to sit round the conference table .
a01-030u-s00-00.png Northern Rhodesia is a member of the Federation .
a01-030u-s01-00.png Mr. Macleod was not at the week-end
a01-030u-s01-01.png meeting .
a01-030u-s02-00.png But he told M
a01-030u-s03-00.png I
a01-030u-s03-01.png have no knowledge of secret negotiations .
a01-030u-s04-00.png He said Britain had an obligation to consult
a01-030u-s04-01.png the Federal Government .
a01-030u-s05-00.png But the final
a01-030u-s05-01.png decision remained with the British Government .
a01-030u-s06-00.png Mr. James Callaghan , Labour's Colonial
a01-030u-s06-01.png spokesman , said Sir Roy had no right to
a01-030u-s06-02.png delay progress in the talks by refusing
a01-030u-s06-03.png to sit round the conference table .
a01-030x-s00-00.png Northern Rhodesia is a member of the Fede-
a01-030x-s00-01.png ration .
a01-030x-s01-00.png Mr. Macleod was not at the week-end
a01-030x-s01-01.png meeting .
a01-030x-s02-00.png But he told M
a01-030x-s03-00.png I
a01-030x-s03-01.png have no knowledge of secret negotiations .
a01-030x-s04-00.png He
a01-030x-s04-01.png said Britain had an obligation to consult
a01-030x-s04-02.png the Federal Government .
a01-030x-s05-00.png Mr. James Callaghan ,
a01-030x-s05-01.png Labour's Colonial spokesman , said Sir Roy had
a01-030x-s05-02.png no right to delay progress in the talks by
a01-030x-s05-03.png refusing to sit round the conference table .
a01-038-s00-00.png Mr. Macleod thought the two Rhodesian
a01-038-s00-01.png parties had refused to attend the talks
a01-038-s00-02.png because Sir Roy had found messages
a01-038-s00-03.png sent from the Government were unsatisfac-
a01-038-s00-04.png tory .
a01-038-s01-00.png African delegates to the talks yester-
a01-038-s01-01.png day called on Mr. Macmillan to cease his
a01-038-s01-02.png negotiations with Sir Roy's representative ,
a01-038-s01-03.png Mr. Julius Greenfield .
a01-038-s02-00.png He was at Che-
a01-038-s02-01.png quers last week-end .
a01-038-s03-00.png They said they
a01-038-s03-01.png regarded with growing anger the gross
a01-038-s03-02.png and unconstitutional interference by
a01-038-s03-03.png Sir Roy's Federal Government in the
a01-038-s03-04.png talks .
a01-038x-s00-00.png Mr. Macleod thought the two Rhodesian parties
a01-038x-s00-01.png had refused to attend the talks because Sir Roy
a01-038x-s00-02.png had found messages sent from the Government were
a01-038x-s00-03.png unsatisfactory .
a01-038x-s01-00.png African delegates to the talks yesterday
a01-038x-s01-01.png called on Mr. Macmillan to cease his negotiations with
a01-038x-s01-02.png Sir Roy's representative , Mr. Julius Greenfield .
a01-038x-s02-00.png He was
a01-038x-s02-01.png at Chequers last week-end .
a01-038x-s03-00.png They said they regarded
a01-038x-s03-01.png with growing anger the gross and unconstitutional
a01-038x-s03-02.png interference by Sir Roy's Federal Government in the talks .
a01-043-s00-00.png Informal talks at Lancaster House will
a01-043-s00-01.png resume today .
a01-043-s01-00.png President Kennedy today
a01-043-s01-01.png defended the appointment of a Negro as
a01-043-s01-02.png his Housing Minister .
a01-043-s02-00.png It has aroused
a01-043-s02-01.png strong opposition from the anti-Negro
a01-043-s02-02.png senators of the Deep South .
a01-043-s03-00.png The negro
a01-043-s03-01.png is Mr. Robert Weaver of New York .
a01-043-s04-00.png One
a01-043-s04-01.png of his tasks will be to see there is no
a01-043-s04-02.png racial discrimination in Government
a01-043-s04-03.png and State housing projects .
a01-043-s04-04.png B.Kaufmann
a01-043u-s00-00.png Informal talks at Lancaster House will
a01-043u-s00-01.png resume today .
a01-043u-s01-00.png PRESIDENT KENNEDY today
a01-043u-s01-01.png defended the appointment of a Negro as
a01-043u-s01-02.png his Housing Minister .
a01-043u-s02-00.png It has aroused strong
a01-043u-s02-01.png opposition from the anti-Negro senators of the
a01-043u-s02-02.png Deep South .
a01-043u-s03-00.png The negro is Mr. Robert #
a01-043u-s03-01.png Weaver of New York .
a01-043u-s04-00.png One of his tasks will
a01-043u-s04-01.png be to see there is no racial discrimination
a01-043u-s04-02.png in Government and State housing
a01-043u-s04-03.png projects .
a01-043x-s00-00.png Informal talks at Lancaster House will resume
a01-043x-s00-01.png today .
a01-043x-s01-00.png PRESIDENT KENNEDY today defended
a01-043x-s01-01.png the appointment of a Negro as his Housing Minister .
a01-043x-s02-00.png It has aroused strong opposition from the anti-Negro
a01-043x-s02-01.png senators of the Deep South .
a01-043x-s03-00.png The negro is Mr.
a01-043x-s03-01.png Robert Weaver of New York .
a01-043x-s04-00.png One of his tasks
a01-043x-s04-01.png will be to see there is no racial discrimination
a01-043x-s04-02.png in Government and State housing projects .
a01-049-s00-00.png Senator Allen Ellender of Louisiana sparked
a01-049-s00-01.png off the opposition by telling a television
a01-049-s00-02.png audience it was current Washington gossip
a01-049-s00-03.png that Weaver once had Communist affiliations .
a01-049-s01-00.png The Senate Banking Committee , which is headed
a01-049-s01-01.png by another Southern Senator - Willis Robertson ,
a01-049-s01-02.png of Virginia - met today in closed session
a01-049-s01-03.png to discuss Weaver's appointment .
a01-049-s02-00.png Senator
a01-049-s02-01.png Robertson later disclosed he had sent a letter
a01-049-s02-02.png to Mr. Kennedy saying he had received several
a01-049-s02-03.png complaints about Weaver's loyalty .
a01-049u-s00-00.png Senator Allen Ellender , of Louisiana ,
a01-049u-s00-01.png sparked off the opposition by telling a
a01-049u-s00-02.png television audience it was current
a01-049u-s00-03.png Washington gossip that Weaver once had
a01-049u-s00-04.png Communist affiliations .
a01-049u-s01-00.png The Senate Banking
a01-049u-s01-01.png Committee , which is headed by another
a01-049u-s01-02.png Southern Senator - Willis Robertson , of
a01-049u-s01-03.png Virginia - met today in closed session to
a01-049u-s01-04.png discuss Weaver's appointment .
a01-049u-s02-00.png Senator
a01-049u-s02-01.png Robertson later disclosed he had sent a letter
a01-049u-s02-02.png to Mr. Kennedy saying he had received
a01-049x-s00-00.png Senator Allen Ellender , of Louisiana ,
a01-049x-s00-01.png sparked off the opposition by telling a
a01-049x-s00-02.png television audience it was current Washington
a01-049x-s00-03.png gossip that Weaver once had Communist affilia-
a01-049x-s00-04.png tions .
a01-049x-s01-00.png The Senate Banking Committee , which
a01-049x-s01-01.png is headed by another Southern Senator -
a01-049x-s01-02.png Willis Robertson , of Virginia - met today in
a01-049x-s01-03.png closed session to discuss Weaver's appointment .
a01-049x-s02-00.png Senator Robertson later disclosed he had sent a
a01-049x-s02-01.png letter to Mr. Kennedy saying he had received several
a01-049x-s02-02.png complaints about Weaver's loyalty .
a01-053-s00-00.png He said these concerned Mr. Weaver's
a01-053-s00-01.png alleged association with organisations black-
a01-053-s00-02.png listed by the Government .
a01-053-s01-00.png Immediately
a01-053-s01-01.png Mr. Kennedy rushed a letter to Senator
a01-053-s01-02.png Robertson saying the Federal Bureau of In-
a01-053-s01-03.png vestigation had reported on Mr. Weaver .
a01-053-s02-00.png He believed he would perform outstanding
a01-053-s02-01.png service in his post .
a01-053-s03-00.png Senator Robertson's
a01-053-s03-01.png committee has to pass Mr. Weaver's
a01-053-s03-02.png nomination before it can be con-
a01-053-s03-03.png # sidered by the full Senate .
a01-053u-s00-00.png He said these concerned Mr. Weaver's
a01-053u-s00-01.png alleged association with organisations black-
a01-053u-s00-02.png listed by the Government .
a01-053u-s01-00.png Immediately Mr.
a01-053u-s01-01.png Kennedy rushed a letter to Senator Robertson
a01-053u-s01-02.png saying the Federal Bureau of Investigation had
a01-053u-s01-03.png reported on Mr. Weaver .
a01-053u-s02-00.png He believed
a01-053u-s02-01.png he would perform outstanding service
a01-053u-s02-02.png in his post .
a01-053u-s03-00.png Senator Robertson's committee
a01-053u-s03-01.png has to pass Mr. Weaver's nomination before it
a01-053u-s03-02.png can be considered by the full Senate .
a01-053x-s00-00.png He said these concerned Mr. Weaver's alleged
a01-053x-s00-01.png association with organisations black-listed by the
a01-053x-s00-02.png Government .
a01-053x-s01-00.png Immediately Mr. Kennedy rushed a letter
a01-053x-s01-01.png to Senator Robertson saying the Federal Bureau
a01-053x-s01-02.png of Investigation had reported on Mr. Weaver .
a01-053x-s02-00.png He believed he would perform outstanding
a01-053x-s02-01.png service in his post .
a01-053x-s03-00.png Senator Robertson's
a01-053x-s03-01.png committee has to pass Mr. Weaver's
a01-053x-s03-02.png nomination before it can be considered by the
a01-053x-s03-03.png full Senate .
a01-058-s00-00.png PRESIDENT KENNEDY is ready to get tough
a01-058-s00-01.png over West Germany's cash offer to help
a01-058-s00-02.png America's balance of payments position .
a01-058-s01-00.png He said bluntly in Washington yester-
a01-058-s01-01.png day that the offer - 357million - was
a01-058-s01-02.png not good enough .
a01-058-s02-00.png And he indicated
a01-058-s02-01.png that his Government would try to get
a01-058-s02-02.png Germany to pay more .
a01-058-s03-00.png He did not
a01-058-s03-01.png mention personal talks with Dr.
a01-058-s03-02.png Adenauer , the West German Chancellor .
a01-058u-s00-00.png PRESIDENT KENNEDY is ready to get tough
a01-058u-s00-01.png over West Germany's cash offer to help
a01-058u-s00-02.png America's balance of payments position .
a01-058u-s01-00.png He
a01-058u-s01-01.png said bluntly in Washington yesterday that
a01-058u-s01-02.png the offer - 357million - was not good enough .
a01-058u-s02-00.png And he indicated that his Government
a01-058u-s02-01.png would try to get Germany to pay more .
a01-058u-s03-00.png He
a01-058u-s03-01.png did not mention personal talks with Dr.
a01-058u-s03-02.png Adenauer , the West German Chancellor .
a01-058x-s00-00.png PRESIDENT KENNEDY is ready to get
a01-058x-s00-01.png tough over West Germany's cash offer to
a01-058x-s00-02.png help America's balance of payments position
a01-058x-s01-00.png He said bluntly in Washington yesterday
a01-058x-s01-01.png that the offer - 357million - was not good
a01-058x-s01-02.png enough .
a01-058x-s02-00.png And he indicated that his
a01-058x-s02-01.png Government would try to get Germany to
a01-058x-s02-02.png pay more .
a01-058x-s03-00.png He did not mention personal
a01-058x-s03-01.png talks with Dr. Adenauer , the West
a01-058x-s03-02.png German Chancellor .
a01-063-s00-00.png But he said discussions on a higher
a01-063-s00-01.png level than in the past might be
a01-063-s00-02.png useful .
a01-063-s01-00.png The President will probably
a01-063-s01-01.png discuss the problem with Dr. Brentano ,
a01-063-s01-02.png the West German Foreign Minister , who is
a01-063-s01-03.png due in Washington next week .
a01-063-s02-00.png A big
a01-063-s02-01.png slice of Germany's aid # is the early
a01-063-s02-02.png payment of a 210million debt to America .
a01-063-s03-00.png United States officials quickly point out
a01-063-s03-01.png that this is money due to America
a01-063-s03-02.png anyway .
a01-063u-s00-00.png But he said discussions on a higher
a01-063u-s00-01.png level than in the past might be useful .
a01-063u-s01-00.png The President will probably discuss the
a01-063u-s01-01.png problem with Dr. Brentano , the West German
a01-063u-s01-02.png Foreign Minister , who is due in Washington
a01-063u-s01-03.png next week .
a01-063u-s02-00.png A big slice of Germany's aid
a01-063u-s02-01.png is the early payment of a 210million
a01-063u-s02-02.png debt to America .
a01-063u-s03-00.png United States officials
a01-063u-s03-01.png quickly point out that this is money due
a01-063u-s03-02.png to America anyway .
a01-063x-s00-00.png But he said discussions on a higher
a01-063x-s00-01.png level than in the past might be useful .
a01-063x-s01-00.png The President will probably discuss the
a01-063x-s01-01.png problem with Dr. Brentano , the West
a01-063x-s01-02.png German Foreign Minister , who is due in
a01-063x-s01-03.png Washington next week .
a01-063x-s02-00.png A big slice of
a01-063x-s02-01.png Germany's aid is the early payment
a01-063x-s02-02.png of a 210million debt to America .
a01-063x-s03-00.png United
a01-063x-s03-01.png States officials quickly point out that
a01-063x-s03-02.png this is money due to America anyway .
a01-068u-s00-00.png And they are unimpressed by the Germans' claim
a01-068u-s00-01.png that they cannot pay more than 357million
a01-068u-s00-02.png without upsetting their own economy .
a01-068u-s01-00.png The
a01-068u-s01-01.png Americans say Germany is having it too
a01-068u-s01-02.png good and is not paying for the past
a01-068u-s01-03.png or for the present .
a01-068u-s02-00.png The Adenauer Government
a01-068u-s02-01.png flatly rejected attempts by the Eisenhower
a01-068u-s02-02.png Government to get them to pay a regular
a01-068u-s02-03.png sum towards the cost of keeping American
a01-068u-s02-04.png troops in Germany .
a01-072u-s00-00.png These support costs are a big drain on
a01-072u-s00-01.png America's dollar reserves .
a01-072u-s01-00.png Dr. Adenauer's
a01-072u-s01-01.png answer is the once-and-for-all cash
a01-072u-s01-02.png offer of 357million .
a01-072u-s02-00.png President Kennedy's
a01-072u-s02-01.png rejection of it is a painful blow to the
a01-072u-s02-02.png West German Government .
a01-072u-s03-00.png It will now have
a01-072u-s03-01.png to pay more - and increase taxation to do
a01-072u-s03-02.png so - or run the obvious # risks in upsetting
a01-072u-s03-03.png the new American administration .
a01-072x-s00-00.png These support costs are a big drain on America's
a01-072x-s00-01.png dollar reserves .
a01-072x-s01-00.png Dr. Adenauer's answer is the
a01-072x-s01-01.png once-and-for-all cash offer of 357million .
a01-072x-s02-00.png President
a01-072x-s02-01.png Kennedy's rejection of it is a painful blow to the
a01-072x-s02-02.png West German Government .
a01-072x-s03-00.png It will now have to pay
a01-072x-s03-01.png more - and increase taxation to do so - or
a01-072x-s03-02.png run the obvious risks in upsetting the new
a01-072x-s03-03.png American administration .
a01-077-s00-00.png And , since this is election year in West
a01-077-s00-01.png Germany , Dr. Adenauer is in a tough
a01-077-s00-02.png spot .
a01-077-s01-00.png Joyce Egginton cables :
a01-077-s02-00.png President
a01-077-s02-01.png Kennedy at his Washington Press con-
a01-077-s02-02.png ference admitted he did not know
a01-077-s02-03.png whether America was lagging behind
a01-077-s02-04.png Russia in missile power .
a01-077-s03-00.png He said he
a01-077-s03-01.png was waiting for his senior military
a01-077-s03-02.png aides to come up with the answer on
a01-077-s03-03.png February 20 .
a01-077u-s00-00.png And , since this is election year in West
a01-077u-s00-01.png Germany , Dr. Adenauer is in a tough spot .
a01-077u-s01-00.png Joyce Egginton cables :
a01-077u-s02-00.png President Kennedy
a01-077u-s02-01.png at his Washington Press conference admitted
a01-077u-s02-02.png he did not know whether America was
a01-077u-s02-03.png lagging behind Russia in missile power .
a01-077u-s03-00.png He said he was waiting for his senior
a01-077u-s03-01.png military aides to come up with the answer
a01-077u-s03-02.png on February 20 .
a01-082u-s00-00.png This surprising statement was a sharp about-
a01-082u-s00-01.png face from his warnings during the
a01-082u-s00-02.png Presidential election campaign .
a01-082u-s01-00.png He claimed
a01-082u-s01-01.png slackness in the Eisenhower Administration
a01-082u-s01-02.png had caused America to lag behind Russia
a01-082u-s01-03.png in nuclear development .
a01-082u-s02-00.png President Kennedy
a01-082u-s02-01.png did his best to avoid giving Pressmen
a01-082u-s02-02.png a direct answer . George Brown
a01-082u-s03-00.png CHILDREN TWO men who are poles apart
a01-082u-s03-01.png in personality last night dominated
a01-087-s00-00.png Mr. Brown , passionate and warm-hearted , led
a01-087-s00-01.png Labour's attack on the higher health
a01-087-s00-02.png charges .
a01-087-s01-00.png Mr. Powell , white-faced and outwardly
a01-087-s01-01.png unemotional , replied with a statistical state-
a01-087-s01-02.png ment - and ended by inciting Labour M
a01-087-s01-03.png to angry uproar .
a01-087-s02-00.png One dealt with the human
a01-087-s02-01.png issue behind the Health Service ; the other
a01-087-s02-02.png tried to show that the balance-sheet must
a01-087-s02-03.png always come first .
a01-087u-s00-00.png Mr. Brown , passionate and warm-hearted ,
a01-087u-s00-01.png led Labour's attack on the higher health
a01-087u-s00-02.png charges .
a01-087u-s01-00.png Mr. Powell , white-faced and
a01-087u-s01-01.png outwardly unemotional , replied with a
a01-087u-s01-02.png statistical statement - and ended by inciting
a01-087u-s01-03.png Labour M
a01-087u-s02-00.png One dealt
a01-087u-s02-01.png with the human issue behind the Health
a01-087u-s02-02.png Service ; the other tried to show that the
a01-087u-s02-03.png balance-sheet must always come first .
a01-091-s00-00.png The result of the vote was not in
a01-091-s00-01.png doubt .
a01-091-s01-00.png For the Tories were massed
a01-091-s01-01.png in answer to their whips to defeat a
a01-091-s01-02.png censure motion on the Government for
a01-091-s01-03.png undermining the Health Service and
a01-091-s01-04.png placing heavy burdens on those least
a01-091-s01-05.png able to bear them .
a01-091-s02-00.png Mr. Brown
a01-091-s02-01.png declared that the policy under censure
a01-091-s02-02.png was monstrous .
a01-091-s03-00.png It had offended many
a01-091-s03-01.png people far beyond the ranks of Labour
a01-091-s03-02.png supporters .
a01-091u-s00-00.png The result of the vote was not in doubt .
a01-091u-s01-00.png For the Tories were massed in answer to
a01-091u-s01-01.png their whips to defeat a censure motion
a01-091u-s01-02.png on the Government for undermining the
a01-091u-s01-03.png Health Service and placing heavy burdens
a01-091u-s01-04.png on those least able to bear them .
a01-091u-s02-00.png Mr.
a01-091u-s02-01.png Brown declared that the policy under
a01-091u-s02-02.png censure was monstrous .
a01-091u-s03-00.png It had offended
a01-091u-s03-01.png many people far beyond the ranks of
a01-091u-s03-02.png Labour supporters .
a01-096u-s00-00.png The Press , many doctors and public were
a01-096u-s00-01.png denouncing the proposals .
a01-096u-s01-00.png He quoted from
a01-096u-s01-01.png this letter which Mr. Gaitskell had received :
a01-096u-s02-00.png My background is a doctor of 68 , who
a01-096u-s02-01.png has practised medicine for 43 years , chiefly
a01-096u-s02-02.png as a panel doctor .
a01-096u-s03-00.png I am a lifelong
a01-096u-s03-01.png Conservative .
a01-096u-s04-00.png I am horrified and amazed
a01-096u-s04-01.png by my party's proposal to prostitute the
a01-096u-s04-02.png whole principle of the State service and
a01-096u-s04-03.png to render that service a hardship to poor
a01-096u-s04-04.png people .
a01-102-s00-00.png After a lifetime of helping others and
a01-102-s00-01.png healing the sick , my considered
a01-102-s00-02.png opinion is that anybody supporting
a01-102-s00-03.png the increased charges is a wicked ,
a01-102-s00-04.png old - .
a01-102-s01-00.png Mr. Brown went on :
a01-102-s02-00.png We
a01-102-s02-01.png are dealing with a noble edifice which
a01-102-s02-02.png needs an imaginative architect to
a01-102-s02-03.png improve it , but it has got a
a01-102-s02-04.png quantity surveyor .
a01-102-s03-00.png We have descended
a01-102-s03-01.png from the real problems to fiddling about
a01-102-s03-02.png with bills of cost .
a01-102u-s00-00.png After a lifetime of helping others and
a01-102u-s00-01.png healing the sick , my considered opinion is that
a01-102u-s00-02.png anybody supporting the increased charges is a
a01-102u-s00-03.png wicked , old - .
a01-102u-s01-00.png Mr. Brown went on :
a01-102u-s02-00.png We
a01-102u-s02-01.png are dealing with a noble edifice which
a01-102u-s02-02.png needs an imaginative architect to improve
a01-102u-s02-03.png it , but it has got a quantity surveyor .
a01-102u-s03-00.png We
a01-102u-s03-01.png have descended from the real problems to
a01-102u-s03-02.png fiddling about with bills of cost .
a01-107-s00-00.png We believe that a comprehensive medical service , free to the patient
a01-107-s00-01.png at the point of need and with one standard for all sick
a01-107-s00-02.png people , is good and attainable .
a01-107-s01-00.png We remain for it .
a01-107-s02-00.png But the Tories
a01-107-s02-01.png never were .
a01-107-s03-00.png Interrupted by angry Tories , Mr. Brown retorted :
a01-107-s04-00.png The jackals bay when there is nothing better they can do .
a01-107u-s00-00.png We believe that a comprehensive medical
a01-107u-s00-01.png service , free to the patient at the point
a01-107u-s00-02.png of need and with one standard for all
a01-107u-s00-03.png sick people , is good and attainable .
a01-107u-s01-00.png We remain for it .
a01-107u-s02-00.png But the Tories
a01-107u-s02-01.png never were .
a01-107u-s03-00.png Interrupted by angry Tories ,
a01-107u-s03-01.png Mr. Brown retorted :
a01-107u-s04-00.png The jackals bay
a01-107u-s04-01.png when there is nothing better they can do .
a01-113-s00-00.png He told them that their conception of social services was wholly
a01-113-s00-01.png different - fundamentally different from that of Labour .
a01-113-s01-00.png They
a01-113-s01-01.png would provide an ambulance service for the absolutely
a01-113-s01-02.png wretched - but it would not be too comfortable nor too easy to
a01-113-s01-03.png get .
a01-113-s02-00.png Answering jeers that it was Labour which first put a
a01-113-s02-01.png ceiling on health spending and started charges , Mr. Brown
a01-113-s02-02.png reminded the hostile Government benches that was
a01-113-s02-03.png done in 1950 because of the financial strain of
a01-113-s02-04.png the Korean war .
a01-113u-s00-00.png He told them that their conception of social
a01-113u-s00-01.png services was wholly different - fundamentally
a01-113u-s00-02.png different from that of Labour .
a01-113u-s01-00.png They would
a01-113u-s01-01.png provide an ambulance service for the absolutely
a01-113u-s01-02.png wretched - but it would not be too comfortable
a01-113u-s01-03.png nor too easy to get .
a01-113u-s02-00.png Answering jeers that
a01-113u-s02-01.png it was Labour which first put a ceiling
a01-113u-s02-02.png on health spending and started charges , Mr.
a01-113u-s02-03.png Brown reminded the hostile Government benches
a01-113u-s02-04.png that was done in 1950 because of the financial
a01-113u-s02-05.png strain of the Korean war .
a01-117-s00-00.png In fact , the Tories made it worse now for the sick and
a01-117-s00-01.png needy than Labour had to make it in 1950 .
a01-117-s01-00.png And
a01-117-s01-01.png as a percentage of social service expenditure ,
a01-117-s01-02.png health had fallen from 28.5 to 23.1 per cent.
a01-117-s02-00.png Then Mr. Brown swung his attack directly to the
a01-117-s02-01.png unsmiling Mr. Powell .
a01-117-s03-00.png He demanded that instead
a01-117-s03-01.png of taking it out of the patients Mr. Powell should
a01-117-s03-02.png take ruthless action against the drug making
a01-117-s03-03.png industry , whose profits had risen by up to 400
a01-117-s03-04.png per cent. in the last eight years .
a01-117u-s00-00.png In fact , the Tories made it worse now
a01-117u-s00-01.png for the sick and needy than Labour had
a01-117u-s00-02.png to make it in 1950 .
a01-117u-s01-00.png And as a percentage
a01-117u-s01-01.png of social service expenditure , health had
a01-117u-s01-02.png fallen from 28.5 to 23.1 per cent.
a01-117u-s02-00.png Then
a01-117u-s02-01.png Mr. Brown swung his attack directly to
a01-117u-s02-02.png the unsmiling Mr. Powell .
a01-117u-s03-00.png He demanded
a01-117u-s03-01.png that instead of taking it out of the
a01-117u-s03-02.png patients Mr. Powell should take ruthless
a01-117u-s03-03.png action against the drug making industry , #
a01-117u-s03-04.png whose profits had risen by up to 400 per
a01-122-s00-00.png Mr. Powell finds it easier to take it out of mothers ,
a01-122-s00-01.png children and sick people than to take on this vast
a01-122-s00-02.png industry , Mr. Brown commented icily .
a01-122-s01-00.png Let us have a
a01-122-s01-01.png full inquiry into the cost of drugs and the pharmaceutical
a01-122-s01-02.png industry .
a01-122-s02-00.png The health of children today owed much
a01-122-s02-01.png to the welfare food scheme .
a01-122-s03-00.png It was maintained
a01-122-s03-01.png during the war .
a01-122-s04-00.png Now in conditions of Tory
a01-122-s04-01.png affluence it seemed it could not be carried on .
a01-122u-s00-00.png Mr. Powell finds it easier to take it out
a01-122u-s00-01.png of mothers , children and sick people than
a01-122u-s00-02.png to take on this vast industry , Mr.
a01-122u-s00-03.png Brown commented icily .
a01-122u-s01-00.png Let us have a
a01-122u-s01-01.png full inquiry into the cost of drugs and
a01-122u-s01-02.png the pharmaceutical industry .
a01-122u-s02-00.png The health
a01-122u-s02-01.png of children today owed much to the welfare
a01-122u-s02-02.png food scheme .
a01-122u-s03-00.png It was maintained during
a01-122u-s03-01.png the war .
a01-122u-s04-00.png Now in conditions of Tory
a01-122u-s04-01.png affluence it seemed it could not be
a01-122u-s04-02.png carried on .
a01-128-s00-00.png When Mr. Brown sat down Labour M
a01-128-s00-01.png a full minute - and even his bitterest opponents
a01-128-s00-02.png on defence joined in .
a01-128-s01-00.png Mr. Powell devoted half his speech
a01-128-s01-01.png to giving details of plans for improving the hospital service ,
a01-128-s01-02.png on which indeed the Government is making progress .
a01-128-s02-00.png His basic defence of the Health Service cuts was that
a01-128-s02-01.png even after the proposed changes the net cost of the
a01-128-s02-02.png service to the Exchequer will have increased over
a01-128-s02-03.png three years by 20 per cent.
a01-128u-s00-00.png When Mr. Brown sat down Labour M
a01-128u-s00-01.png cheered for a full minute - and even his
a01-128u-s00-02.png bitterest opponents on defence joined in .
a01-128u-s01-00.png Mr. Powell devoted half his speech to giving
a01-128u-s01-01.png details of plans for improving the hospital
a01-128u-s01-02.png service , on which indeed the Government is
a01-128u-s01-03.png making progress .
a01-128u-s02-00.png His basic defence of the
a01-128u-s02-01.png Health Service cuts was that even after
a01-128u-s02-02.png the proposed changes the net cost of the
a01-128u-s02-03.png service to the Exchequer will have increased
a01-128u-s02-04.png over three years by 20 per cent.
a01-132-s00-00.png That cannot continue without either
a01-132-s00-01.png development being limited or an
a01-132-s00-02.png adjustment being made in financing .
a01-132-s01-00.png The Government decided to adjust
a01-132-s01-01.png the financing - which Mr. Powell
a01-132-s01-02.png claimed was underpinning - not
a01-132-s01-03.png undermining - the service .
a01-132-s02-00.png Answering the
a01-132-s02-01.png attack on economic charges for welfare
a01-132-s02-02.png foods , Mr. Powell said that all these
a01-132-s02-03.png foods would still be free in families
a01-132-s02-04.png receiving regular National Assistance
a01-132-s02-05.png grants .
a01-132u-s00-00.png That cannot continue without either development
a01-132u-s00-01.png being limited or an adjustment being made
a01-132u-s00-02.png in financing .
a01-132u-s01-00.png The Government decided to
a01-132u-s01-01.png adjust the financing - which Mr. Powell
a01-132u-s01-02.png claimed was underpinning - not undermining -
a01-132u-s01-03.png the service .
a01-132u-s02-00.png Answering the attack on
a01-132u-s02-01.png economic charges for welfare foods , Mr.
a01-132u-s02-02.png Powell said that all these foods would
a01-132u-s02-03.png still be free in families receiving regular
a01-132u-s02-04.png National Assistance grants .
a01-132x-s00-00.png That cannot continue without either development
a01-132x-s00-01.png being limited or an adjustment being made
a01-132x-s00-02.png in financing .
a01-132x-s01-00.png The Government decided to adjust
a01-132x-s01-01.png the financing - which Mr. Powell claimed was
a01-132x-s01-02.png underpinning - not undermining - the service .
a01-132x-s02-00.png Answering the attack on economic charges
a01-132x-s02-01.png for welfare , Mr. Powell said that all these
a01-132x-s02-02.png foods would still be free in families receiving
a01-132x-s02-03.png regular National Assistance grants .
a02-000-s00-00.png MR. Macmillan has picked a strong brains trust
a02-000-s00-01.png team to negotiate terms for joining the Common Market .
a02-000-s01-00.png And he has abandoned plans to visit President de
a02-000-s01-01.png Gaulle this month to smooth the way .
a02-000-s02-00.png General
a02-000-s02-01.png de Gaulle's official welcome last week
a02-000-s02-02.png to Britain's moves towards the Six was
a02-000-s02-03.png taken as a friendly gesture in Whitehall ,
a02-000-s02-04.png but no more than that .
a02-004-s00-00.png So the idea of personal mission by
a02-004-s00-01.png the Prime Minister to Paris was dropped
a02-004-s01-00.png Instead Mr. Macmillan will rely on a
a02-004-s01-01.png hand-picked team under the leadership of
a02-004-s01-02.png Sir Pierson Dixon , Britain's Ambassador to
a02-004-s01-03.png France , to back Mr. Edward Heath , Lord
a02-004-s01-04.png Privy Seal , who is charged with the conduct
a02-004-s01-05.png of negotiations with the Six .
a02-004-s02-00.png At the same
a02-004-s02-01.png time the Prime Minister has offered
a02-004-s02-02.png Commonwealth Governments every facility possible to
a02-004-s02-03.png safeguard their interests
a02-008-s00-00.png Seven Commonwealth countries have told Mr. Sandys ,
a02-008-s00-01.png Commonwealth Relations Secretary , that they wish to be kept
a02-008-s00-02.png in touch in London .
a02-008-s01-00.png Three of them - Canada , Australia ,
a02-008-s01-01.png New Zealand - will have strong delegations at an opening
a02-008-s01-02.png meeting in London on Monday .
a02-008-s02-00.png Once the Common
a02-008-s02-01.png Market's Council of Ministers draws up the procedure
a02-008-s02-02.png for negotiations in a fortnight's time , these Commonwealth
a02-008-s02-03.png countries can arrange for observers to advise the British
a02-008-s02-04.png negotiating team .
a02-012-s00-00.png The team is composed of experienced
a02-012-s00-01.png negotiators in several fields .
a02-012-s01-00.png Sir Pier-
a02-012-s01-01.png son Dixon has a wide reputation as
a02-012-s01-02.png a skilful backstage negotiator since
a02-012-s01-03.png his days as Britain's chief UN dele-
a02-012-s01-04.png gate .
a02-012-s02-00.png Second in command is Mr.
a02-012-s02-01.png Eric Roll , 53-year-old Deputy Secre-
a02-012-s02-02.png tary at the Ministry of Agriculture ,
a02-012-s02-03.png Food , and Fisheries .
a02-012-s03-00.png The Foreign Office
a02-012-s03-01.png is represented by Sir Roderick Barclay
a02-017-s00-00.png Other leading members are : Sir Henry Lintott from
a02-017-s00-01.png the Commonwealth Relations Office , Sir William
a02-017-s00-02.png Corell-Barnes ( Colonial Office ) , Mr. G. R. Bell
a02-017-s00-03.png ( Treasury ) , and Mr. G. H. Andrew ( Board of Trade ) .
a02-017-s01-00.png They will accompany Mr. Heath next month when
a02-017-s01-01.png he goes to Brussels , headquarters of the Common
a02-017-s01-02.png Market Commission , or wherever the Six decide
a02-017-s01-03.png negotiations should be held .
a02-020-s00-00.png Some of the problems were reviewed yesterday at a
a02-020-s00-01.png meeting in Paris between M. Couve de Murville , French
a02-020-s00-02.png Foreign Minister , and Mr. Heath .
a02-020-s01-00.png MR. Selwyn Lloyd -
a02-020-s01-01.png a man with troubles enough back home - seems
a02-020-s01-02.png fated to fly into trouble abroad .
a02-020-s02-00.png Last year it was
a02-020-s02-01.png the riots in Istanbul , which enlivened the NATO
a02-020-s02-02.png Council meeting .
a02-024-s00-00.png Now we have the strikes and demonstrations in
a02-024-s00-01.png Ghana coinciding with the meeting of the Com-
a02-024-s00-02.png monwealth Economic Consultative Council - the
a02-024-s00-03.png first to be held in Africa .
a02-024-s01-00.png Only a few hours af-
a02-024-s01-01.png ter Mr Lloyd and his 24-strong delegation landed
a02-024-s01-02.png at Accra this morning , hundreds of shop assistants
a02-024-s01-03.png demonstrated outside the British-owned Kingsway
a02-024-s01-04.png Stores , the largest in town .
a02-027-s00-00.png The stores had been hit by the same strike wave
a02-027-s00-01.png that has paralysed the port of Takoradi for the past
a02-027-s00-02.png week .
a02-027-s01-00.png Root of the discontent : The austerity Budget ,
a02-027-s01-01.png including a compulsory savings scheme which the
a02-027-s01-02.png Ghana Government introduced in July .
a02-027-s02-00.png Ghana's strong
a02-027-s02-01.png man is not here to face the storm .
a02-027-s03-00.png President Nkrumah ,
a02-027-s03-01.png having made his contribution to the neutrals' conference
a02-027-s03-02.png in Belgrade , has resumed his holiday on the Black
a02-027-s03-03.png Sea and no one here professes to know when he
a02-027-s03-04.png will return .
a02-032-s00-00.png But in his absence his chief lieutenants have
a02-032-s00-01.png not let him down .
a02-032-s01-00.png The strong arm of authority has
a02-032-s01-01.png been raised against the strikers and is now beginning
a02-032-s01-02.png to tell .
a02-032-s02-00.png Today's Ghanaian Times ( motto : The welfare
a02-032-s02-01.png of the people is the supreme law ) reports :
a02-032-s03-00.png The
a02-032-s03-01.png Government has been urged to take immediate ac-
a02-032-s03-02.png tion to deal ruthlessly with the strikers .
a02-037-s00-00.png The urge came from a conference of activists of
a02-037-s00-01.png Nkrumah's Convention Party after powerful addresses
a02-037-s00-02.png by Comrades Krobo Edusei , Tawia Adamafio , and
a02-037-s00-03.png others .
a02-037-s01-00.png Strong deeds followed strong words .
a02-037-s02-00.png In Takoradi
a02-037-s02-01.png a limited state of emergency was declared , giving
a02-037-s02-02.png the Government adequate power to maintain all
a02-037-s02-03.png essential services and ensure food supplies .
a02-037-s03-00.png Thus it
a02-037-s03-01.png becomes an offence punishable with imprisonment
a02-037-s03-02.png for anyone who publishes a report likely to cause
a02-037-s03-03.png alarm or prejudicial to public safety .
a02-042-s00-00.png And up to ten years' imprisonment can be imposed
a02-042-s00-01.png on anyone convicted of sabotage .
a02-042-s01-00.png These stern measures
a02-042-s01-01.png had the desired effect today at Kumasi where the
a02-042-s01-02.png strikers gave in , but in Takoradi , the chief storm centre ,
a02-042-s01-03.png they are still holding out despite the presence of 1,400
a02-042-s01-04.png police and 16 armoured cars .
a02-042-s02-00.png And how did the
a02-042-s02-01.png Government react when the strikers demonstrated in
a02-042-s02-02.png Accra ?
a02-046-s00-00.png At 9.40 Mr. Edusei , Minister of Transport and pro-
a02-046-s00-01.png bably the toughest man in Mr. Nkrumah's team ,
a02-046-s00-02.png drove up to the Kingsway Stores and faced the
a02-046-s00-03.png demonstrators , most of them shopgirls in overalls .
a02-046-s01-00.png If you have not dispersed by ten o'clock , he
a02-046-s01-01.png told them , ' the police will act . '
a02-046-s02-00.png At five to ten
a02-046-s02-01.png a posse of police arrived and in less than
a02-046-s02-02.png two minutes the crowd had gone .
a02-050-s00-00.png If the threatened counter-revolution was not * to bring
a02-050-s00-01.png the President back from his travels it might have been
a02-050-s00-02.png thought that the muster from the 13 States of the
a02-050-s00-03.png Commonwealth was an occasion worthy of his presence .
a02-050-s01-00.png After all it was Mr. Nkrumah who suggested that this
a02-050-s01-01.png year the Economic Consultative Council should meet
a02-050-s01-02.png in Accra .
a02-050-s01-03.png * enough
a02-053-s00-00.png It has been left , however , to Mr. Goka , Ghana's Finance
a02-053-s00-01.png Minister , to do the honours as host , in which capacity
a02-053-s00-02.png he held a reception tonight in Accra's Ambassador
a02-053-s00-03.png Hotel .
a02-053-s01-00.png POLICE , on direct orders from the Cabinet , are
a02-053-s01-01.png openly intimidating members of Earl Russell's nuclear-
a02-053-s01-02.png disarming Committee of 100 , the Committee claimed
a02-053-s01-03.png yesterday .
a02-053-s02-00.png It said pressure was being put on
a02-053-s02-01.png members and associates all over the country .
a02-057-s00-00.png It alleged :
a02-057-s01-00.png Phones were being tapped and
a02-057-s01-01.png going out of action ;
a02-057-s02-00.png Police were visiting
a02-057-s02-01.png people on no pretext whatsoever , except
a02-057-s02-02.png to pass the time of day ;
a02-057-s03-00.png Supporters had
a02-057-s03-01.png been warned - one that his connection
a02-057-s03-02.png with the committee was going too far ; another
a02-057-s03-03.png that anti-apartheid agitation was
a02-057-s03-04.png all right , but support for the committee
a02-057-s03-05.png was not .
a02-062-s00-00.png A third man's house was watched for four days
a02-062-s00-01.png by plain-clothes men .
a02-062-s01-00.png Committee-member Mr. George
a02-062-s01-01.png Clark commented at a Press conference :
a02-062-s02-00.png The
a02-062-s02-01.png most extraordinary things are happening .
a02-062-s03-00.png Fifty
a02-062-s03-01.png committee members will appear at Bow-street
a02-062-s03-02.png today , including Lord Russell , Lady Russell ,
a02-062-s03-03.png Lord Boyd-Orr , the Rev. Michael Scott , and
a02-062-s03-04.png Mr. Clark .
a02-067-s00-00.png They are required to show why they
a02-067-s00-01.png should not be bound over for disturbing
a02-067-s00-02.png the peace and for inciting a breach
a02-067-s00-03.png of the peace .
a02-067-s01-00.png The summonses say they
a02-067-s01-01.png are likely to persevere in such unlawful
a02-067-s01-02.png conduct .
a02-067-s02-00.png Lord Russell , 89 , was
a02-067-s02-01.png putting his affairs in order , and
a02-067-s02-02.png packing a case , at his Chelsea home
a02-067-s02-03.png yesterday .
a02-067-s03-00.png His secretary , American-born
a02-067-s03-01.png Mr. Ralph Schoenman , said :
a02-072-s00-00.png He is not going to agree to be bound over .
a02-072-s01-00.png That will
a02-072-s01-01.png probably mean jail and , though frail , he is very fit and
a02-072-s01-02.png will take the rigours of prison in his stride .
a02-072-s02-00.png He
a02-072-s02-01.png hopes to be allowed to do some writing .
a02-072-s03-00.png Back at
a02-072-s03-01.png the Press conference , Mr. Clark said two committee
a02-072-s03-02.png members tried a plant call on suspect phone .
a02-072-s04-00.png They
a02-072-s04-01.png discussed a sit-down at Watford at 5.30 p.m. - none
a02-072-s04-02.png was planned but police turned up .
a02-078-s00-00.png Sir Roy Welensky said today that he no
a02-078-s00-01.png longer accepted the good faith of Mr. Kenneth
a02-078-s00-02.png Kaunda .
a02-078-s01-00.png Sir Roy , Federal Rhodesian Prime Minister ,
a02-078-s01-01.png said that Mr. Kaunda's United National Independence
a02-078-s01-02.png Party was a monster as vicious as the Zambia
a02-078-s01-03.png National Congress , which was led by Mr. Kaunda
a02-078-s01-04.png until he was outlawed in 1959 .
a02-078-s02-00.png The record
a02-078-s02-01.png of lawlessness among UNIP supporters went
a02-078-s02-02.png back a long way , Sir Roy told the
a02-078-s02-03.png Federal Parliament in Salisbury .
a02-082-s00-00.png He cited cases in which hundreds of UNIP supporters
a02-082-s00-01.png had been arrested or convicted since last year on
a02-082-s00-02.png charges of creating disturbances .
a02-082-s01-00.png During the first