-
Notifications
You must be signed in to change notification settings - Fork 1
/
pslegal.py
1534 lines (1503 loc) · 36.1 KB
/
pslegal.py
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
#!/usr/bin/python3
#
# Copyright 2019-2021 Arpan Mandal
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import division
import string
import math
import timeit
import sys
start_time = timeit.default_timer()
import numpy as np
leg_terms = [
'ADR',
'Ab initio',
'Abandonment',
'Abatement',
'Abduction',
'Abovementioned',
'Abscond',
'Absolute',
'Absolute discharge',
'Absolute owner',
'Absolute privilege',
'Abstract of title',
'Abuse of process',
'Abuttals',
'Acceptance',
'Acceptance of service',
'Acceptor',
'Accessory',
'Accomplice',
'Accord and Satisfaction',
'Accordingly',
'Accounts',
'Accumulation',
'Accused',
'Acknowledgement',
'Acknowledgement of Service',
'Acquiescence',
'Acquit',
'Acquittal',
'Act of God',
'Act of bankruptcy',
'Action',
'Active trust',
'Actual bodily harm',
'Actual loss',
'Actuary',
'Actus reus',
'Ad hoc',
'Ad idem',
'Ad infinitum',
'Ad valorem',
'Additional voluntary contribution',
'Ademption',
'Adjourned sine die',
'Adjournment',
'Adjudgeadjudicate',
'Adjudication order',
'Administration order',
'Administrative law',
'Administrator',
'Admissibility of Evidence',
'Admission',
'Admonition',
'Adoption',
'Adoptive child',
'Adoptive parent',
'Adverse possession',
'Adverse witness',
'Advocate',
'Affidavit',
'Affirm',
'Affirmation',
'Affray',
'Aforementioned',
'Aforesaid',
'Age of consent',
'Agency',
'Agent',
'Aggravated assault',
'Aggravated burglary',
'Aggravated damages',
'Aggravated vehicle taking',
'Agricultural holding',
'Aiding and abetting',
'Airspace',
'Alias',
'Alibi',
'Alien',
'Alienation',
'All and sundry',
'All that',
'Allegation',
'Alleviate',
'Allocation rate',
'Allotment',
'Alternate director',
'Alternative dispute resolution',
'Alternative verdict',
'Amalgamation',
'Ambiguity',
'Ambulatory will',
'Amnesty',
'Ancient lights',
'Annual accounts',
'Annual general Meeting',
'Annual return',
'Annuitant',
'Annuity',
'Annul',
'Ante',
'Antecedents',
'Antedate',
'Antenuptial agreement',
'Anton Piller order',
'Appeal',
'Appeals',
'Appearance',
'Appellant',
'Appellate',
'Appellate jurisdiction',
'Appertaining to Applicant',
'Appointee',
'Appointor',
'Appurtenances',
'Arbitrage',
'Arbitration',
'Arbitrator',
'Arraignment',
'Arrears',
'Arrest',
'Arrestable offence',
'Arson',
'Articles',
'Articles of association',
'Assault',
'Assent',
'Asset',
'Assign',
'Assignment',
'Assurance',
'Assure',
'Assured',
'Assured shorthold Tenancy',
'Attachment and committal',
'Attachment of earnings',
'Attest',
'Attorney',
'Attorney General',
'Audi alteram partem',
'Audit',
'Auditors report',
'Authorised Investments',
'Authorised share Capital',
'Autopsy',
'Backlog',
'Bail',
'Bail hostel',
'Bailee',
'Bailiff',
'Bailiwick',
'Bailment',
'Bailor',
'Balance sheet',
'Bankers draft',
'Bankrupt',
'Bankruptcy order',
'Bankruptcy search',
'Bar',
'Bare trust',
'Bare trustee',
'Bargain and sale',
'Barrister',
'Barter',
'Battery',
'Bearer',
'Bench',
'Bench warrant',
'Beneficial interest',
'Beneficial owner',
'Beneficiary',
'Bequeath',
'Bequest',
'Bigamy',
'Bill of costs',
'Bill of exchange',
'Bill of lading',
'Bill of sale',
'Binding effect',
'Binding over',
'Binding precedent',
'Blackmail',
'Bodily harm',
'Bona fide',
'Bona vacantia',
'Bond',
'Bonded goods',
'Breach of contract',
'Burden of proof',
'Call',
'Calledup capital',
'Canon law',
'Capacity',
'Capital allowances',
'Capital gain',
'Capital gains tax',
'Capital punishment',
'Capital redemption reserve',
'Care order',
'Careless driving',
'Cartel',
'Case Number',
'Case Status',
'Case law',
'Case stated',
'Causation',
'Cause List',
'Cause of Action',
'Cause of action',
'Causing death by careless and inconsiderate driving',
'Causing death by dangerous driving',
'Caution',
'Caveat',
'Caveat emptor',
'Central Criminal Court',
'Certificate of Incorporation',
'Certificate of origin',
'Certiorari',
'Challenge for cause',
'Challenge to a jury',
'Challenge to the array',
'Challenge without Cause',
'Chambers',
'Chancery Division',
'Charge',
'Charge certificate',
'Charge sheet',
'Chargeable event',
'Chargeable gain',
'Charges clause',
'Charges register',
'Charging clause',
'Charging order',
'Charity',
'Charity Commission',
'Chattel',
'Chattels',
'Chattels personal',
'Chattels real',
'Cheat',
'Cheque',
'Cheque card',
'Chief rent',
'Child',
'Child Support Agency',
'Child Support Maintenance',
'Child abuse',
'Child assessment Order',
'Children in care',
'Chose',
'Chose in action',
'Chose in possession',
'Circuit',
'Circuit Court',
'Circuit Judge',
'Circuit judge',
'Circumstantial evidence',
'Citation',
'Citizens arrest',
'Civil',
'Civil Procedure Code',
'Civil court',
'Claim',
'Claimant',
'Class action',
'Clause',
'Clayton’s Case',
'Clearing bank',
'Clerk to the Justices',
'Close company',
'Closing order',
'Codicil',
'Codifying statute',
'Coercion',
'Collateral',
'Collusion',
'Commissioner for Oaths',
'Commissions',
'Committal for sentence',
'Committal for trial',
'Committal order',
'Committal proceedings',
'Committee of Inspection',
'Common assault',
'Common duty of care',
'Common law',
'Common seal',
'Commorientes',
'Community service order',
'Companies House',
'Company',
'Company secretary',
'Compensation',
'Compensation for loss of office',
'Compensation order',
'Complaint',
'Completion',
'Composition with Creditors',
'Compulsory purchase',
'Compulsory winding up',
'Concealment',
'Concealment of securities',
'Conclusive evidence',
'Concurrent sentence',
'Condition',
'Condition precedent',
'Condition subsequent',
'Conditional agreement',
'Conditional discharge',
'Conditional sale agreement',
'Confiscation order',
'Consecutive sentence',
'Consent',
'Consent order',
'Consideration',
'Consign',
'Consignee',
'Consignor',
'Consistory Court',
'Conspiracy',
'Construction',
'Constructive',
'Constructive dismissal',
'Constructive notice',
'Constructive trust',
'Consumer credit agreement',
'Contempt',
'Contempt of court',
'Contemptuous damages',
'Contingency fee',
'Contingent legacy',
'Contract',
'Contract for services',
'Contract law',
'Contract of exchange',
'Contract of service',
'Contributory negligence',
'Conversion',
'Convey',
'Conveyance',
'Conveyancing',
'Conviction',
'Copyright',
'Coroner',
'Corporate body',
'Corporation',
'Corporation tax',
'Corpus',
'Corpus delicti',
'Costs',
'Counsel',
'Counterclaim',
'Counterfeit',
'Counterpart',
'County court',
'County court judge',
'Coupon',
'Court Hall',
'Court of Appeal',
'Court of Protection',
'Covenant',
'Creditor',
'Creditors voluntary winding up',
'Crime',
'Criminal',
'Criminal Procedure Code.',
'Criminal damage',
'Criminal responsibility',
'Cross-examination',
'Crossexamine',
'Crown Court',
'Culpa',
'Cum dividend',
'Cumulative preference shares',
'Curfew',
'Curtilage',
'Customs duties',
'Damages',
'Dangerous driving',
'Date of Hearing',
'Date of Institution',
'De facto',
'De jure',
'De minimis non curat lex',
'De novo',
'Debenture',
'Debt Debtor',
'Debt securities',
'Debtor',
'Deceit',
'Decree',
'Decree absolute',
'Decree nisi',
'Deed',
'Deed of arrangement',
'Defamation',
'Default',
'Defence',
'Defendant',
'Delay',
'Delegatus non potest delegare',
'Dependant',
'Deponent',
'Deposition',
'Depreciation',
'Derogation',
'Descendant',
'Determination',
'Detinue',
'Devise',
'Devise Devisee',
'Diminished responsibility',
'Diocese',
'Diplomatic immunity',
'Directiondirecting',
'Director',
'Director of Public Prosecutions',
'Disbursement',
'Discharge',
'Disclaimdisclaimer',
'Discovery',
'Discretionary trust',
'Disposal',
'Dispute',
'Distraindistress',
'Distraint',
'District',
'District Court',
'District Judge',
'Dividend',
'Divorce',
'Divorce petition',
'Domicile',
'Domicile of choice',
'Domicile of origin',
'Domiciled',
'Dominant tenement',
'Donatio mortis causa',
'Donee',
'Donor',
'Drawee',
'Drawer',
'Duces tecum',
'Duress',
'Duty',
'Easement',
'Emolument',
'Enabling legislation',
'Endorsement',
'Endorsement of claim',
'Endowment',
'Endowment policy',
'Enduring power of Attorney',
'Engrossment',
'Equitable mortgage',
'Equity',
'Escrow',
'Estate',
'Estimate',
'Estoppel',
'Et seq',
'Euthanasia',
'Evidence',
'Ex aequo et bono',
'Ex gratia',
'Ex parte',
'Ex post facto',
'Ex turpi causa non oritur actio',
'Ex works',
'Examination-in-chief',
'Excess of jurisdiction',
'Exchange of contract',
'Excise duty',
'Exclusions',
'Exclusive licence Ex dividend',
'Execute',
'Executed',
'Executive',
'Executive director',
'Executor',
'Executory',
'Executrix',
'Exemplary damages',
'Exhibit',
'Expert witness',
'Express trust',
'Extradition',
'Extraordinary Resolution',
'Extraordinary general Meeting',
'Factor',
'False imprisonment',
'False pretence',
'False representation',
'Family Division',
'Fee simple',
'Fee tail',
'Felony',
'Feme covert',
'Feme sole',
'Feu',
'Feu duty',
'Fiduciary',
'Fieri facias',
'Final judgement',
'Fitness to plead',
'Fixed charge',
'Floating charge',
'Forbearance',
'Force majeure',
'Foreclosure',
'Forfeiture',
'Fostering',
'Fraud',
'Fraudulent conveyance',
'Fraudulent preference',
'Fraudulent trading',
'Free of encumbrances',
'Freehold',
'Freeholder',
'Frustration',
'Fundamental Rights',
'Futures contract',
'Garnishee',
'Garnishee order',
'General damages',
'General meeting',
'Goodwill',
'Gram Nyayalas',
'Grant',
'Grant of probate',
'Grievous bodily harm',
'Gross negligence',
'Guarantee',
'Guarantee company',
'Guarantor',
'Guardian',
'Guilty',
'HM Customs and Excise',
'HM Land Registry',
'Habeas Corpus',
'Habeas corpus',
'Harassment of Occupiers',
'Harassment of debtors',
'Hearsay',
'Hearsay evidence',
'Hereditament',
'High Court',
'High Court of Justice',
'Hire',
'Hire purchase',
'Holding company',
'Hostile witness',
'House of Lords',
'Housing associations',
'Hypothecation',
'IOU',
'In pari delicto',
'In personam',
'In rem',
'Incorporeal',
'Incorporeal hereditament',
'Indian Penal Code',
'Indict',
'Indictable offence',
'Indictment',
'Injunction',
'Insolvent',
'Intangible property',
'Inter alia',
'Inter partes',
'Inter vivos',
'Interest',
'Interim order',
'Interlineation',
'Interlocutory Judgement',
'Interlocutory Proceedings',
'Interlocutory injunction',
'Interpretation',
'Interrogatories',
'Intestacyintestate',
'Intestate',
'Intimidation',
'Invitation to treat',
'Involuntary manslaughter',
'Issue',
'Issued share capital',
'Issues',
'Joint and several liability',
'Joint lives policy',
'Joint tenancy',
'Joint will',
'Joyriding',
'Judge',
'Judge Advocate General',
'Judge Advocate Generals',
'Judge Advocate of the Fleet',
'Judge advocate',
'Judge in chambers',
'Judgement',
'Judgement creditor',
'Judgement debtor',
'Judgement in default',
'Judgement summons',
'Judicial discretion',
'Judicial immunity',
'Judicial precedent',
'Judicial review',
'Judicial separation',
'Judiciary',
'Junior barrister',
'Junior counsel',
'Jurisdiction',
'Juror',
'Jury',
'Jury service',
'Just and equitable winding up',
'Justice of the Peace',
'Justification',
'Justifying bail',
'Juvenile offender',
'Kerb crawling',
'Kidnap',
'Kin',
'King’s Inns',
'Knock for knock',
'Knock-for-knock',
'Knowhow',
'Laches',
'Land',
'Landlord',
'Lasting powers of attorney',
'Lawsuit',
'Lawyer',
'Lay litigant',
'Leading question',
'Lease',
'Leasehold',
'Legacy',
'Legal Aid',
'Legal aid scheme',
'Legal professional privilege',
'Legatee',
'Legislative Assembly',
'Legislature',
'Lessee',
'Lessor',
'Letter of credit',
'Letters of administration',
'Liabilities',
'Liability',
'Libel',
'Licence',
'Licensed conveyancer',
'Licensee',
'Lien',
'Life assurance policy',
'Life assured',
'Life estate',
'Life imprisonment',
'Life interest',
'Life tenant',
'Limitation of actions',
'Limited company',
'Lineal descendant',
'Liquidated damages',
'Liquidation',
'Liquidator',
'Lis pendens',
'Litigant',
'Litigation',
'Loan capital',
'Loan creditor',
'Locus standi',
'Lok Adalats',
'Magistrate',
'Magistrates court',
'Maintenance',
'Majority',
'Male issue',
'Malfeasance',
'Malice',
'Malice aforethought',
'Malicious falsehood',
'Malicious prosecution',
'Mandamus',
'Mandate',
'Manslaughter',
'Market overt',
'Martial law',
'Master of the Rolls',
'Material facts',
'Matricide',
'Matrimonial causes',
'Matrimonial home',
'Mediation',
'Memorandum and articles of association',
'Mens rea',
'Mercantile law',
'Merchantable quality',
'Mesne profits',
'Messuage',
'Minor',
'Minority',
'Minutes',
'Misadventure',
'Miscarriage of justice',
'Misconduct',
'Misdirection',
'Misfeasance',
'Misjoinder',
'Misrepresentation',
'Mistrial',
'Mitigation',
'Mitigation of damages',
'Moiety',
'MolestMolestation',
'Money laundering',
'Moratorium',
'Mortgage',
'Mortgagee',
'Mortgagor',
'Motive',
'Muniments',
'Naked trust',
'Natural justice',
'Natural person',
'Naturalisation',
'Negligence',
'Negligent',
'Negotiable instrument',
'Nemo judex in sua causa',
'Next of kin',
'Non est factum',
'Non-joinder',
'Nondisclosure',
'Nonexclusive licence',
'Nonfeasance',
'Not guilty',
'Not negotiable',
'Notary',
'Notice',
'Notice to quit',
'Novation',
'Nudum pactum',
'Nuisance',
'Oath',
'Obiter dicta',
'Objects clause',
'Obligation',
'Obligee',
'Obligor',
'Obstruction',
'Occupation',
'Occupational pension Scheme',
'Occupier',
'Offensive weapon',
'Offer',
'Offeree Offeror',
'Official Solicitor',
'Official receiver',
'Official secret',
'Omission',
'Oppression',
'Option',
'Order',
'Order in Council',
'Orders',
'Original Jurisdiction',
'Originating summons',
'Out-of-court settlement',
'Outlaw',
'Overt act',
'Panel',
'Pardon',
'Pari passu',
'Parole',
'Partition',
'Partnership',
'Party',
'Passing off',
'Patent',
'Patricide',
'Pawn',
'Payee',
'Payment into court',
'Payor',
'Penalty',
'Penalty points',
'Pendency',
'Pendente lite',
'Per',
'Per pro',
'Per quod',
'Per quod servitium amisit',
'Per se',
'Per stirpes',
'Performance',
'Perjury',
'Perpetuity',
'Personal guarantee',
'Personal injury',
'Personal property',
'Personal representative',
'Personalty',
'Personation',
'Perverting the course of justice',
'Petition',
'Petitioner',
'Picket',
'Plaint',
'Plaintiff',
'Plea',
'Plea bargain',
'Plead',
'Pleadings',
'Pledge',
'Plenipotentiary',
'Poaching',
'Polygamy',
'Possess',
'Possession',
'Possessory title',
'Postmortem',
'Power of appointment',
'Power of attorney',
'Practising certificate',
'Prayer',
'Preamble',
'Precatory words',
'Precedent',
'Precedents',
'Precept',
'Preemption',
'Preference',
'Preference shares',
'Preferential creditor',
'Prescription',
'Prima facie',
'Principal',
'Private law',
'Privilege',
'Privity of contract',
'Privy Council',
'Privy Purse',
'Pro rata',
'Pro tempore',
'Probate',
'Probate Registry',
'Probate law',
'Probation',
'Procedural',
'Process',
'Procurator',
'Procurator fiscal',
'Product liability',
'Profit à prendre',
'Prohibition',
'Promisee Promisor',
'Promissory note',
'Property',
'Prosecution',
'Prosecutor',
'Prospectus',
'Prostitution',
'Protected tenancy',
'Proviso',
'Provocation',
'Proxy',
'Proxy form',
'Public mischief',
'Public nuisance',
'Punitive damages',
'Putative father',
'Qualifying child',
'Quango',
'Quantum',
'Quantum meruit',
'Quarter days',
'Queens Bench Division',
'Queens Counsel',
'Queens evidence',
'Quid pro quo',
'Quiet enjoyment',
'Quiet possession',
'Quo Warranto',
'Quo warranto',
'Quorum',
'Racial discrimination',
'Rack rent',
'Rape',
'Real',
'Real estate',
'Real property',
'Realty',
'Reasonable force',
'Rebuttable presumption',
'Receiver',
'Receiving',
'Recognisance',
'Record',
'Recorder',
'Recovery',
'Redemption',
'Redundancy',
'Registered land',
'Registered office',
'Registrar of Companies',
'Registry',
'Registry offices',
'Reinsurance',
'Release',
'Remainder',
'Remand',
'Remedy',
'Renouncing probate',
'Rent',
'Repeat offender',
'Replevin',
'Reply',
'Repossess',
'Repossession',
'Representation',
'Representative action',
'Reprieve Rescission',
'Res ipsa loquitur',
'Rescission',
'Reservation of title',
'Reserved costs',
'Reserved judgment',
'Reserves',
'Residence',
'Residence order',
'Residuary legacy',
'Residue',
'Resisting arrest',
'Resolution',
'Respondent',
'Restitutio in integrum',
'Restitution',
'Restraining order',
'Restriction',
'Restriction order',
'Restrictive covenant',
'Resulting trust',
'Retainer',
'Retention of title',
'Reversion',
'Reversion Revocation',
'Review',
'Revoke',
'Revolving credit Agreement',
'Right of way',
'Rights issue',
'Riot',
'Riparian rights',
'Robbery',
'SWIFT payment',
'Sale or return',
'Salvage',
'Sanction',
'Satisfaction',
'Scheme of Arrangement',
'Scienter',
'Scrip',
'Scrip dividend',
'Scrip issue',
'Search',
'Search warrant',
'Securities',
'Security',
'Security of tenure',
'Sedition',
'Senior counsel',