-
Notifications
You must be signed in to change notification settings - Fork 656
/
Copy pathphrasals.js
954 lines (953 loc) · 13.5 KB
/
phrasals.js
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
// phrasal verbs are two words that really mean one verb.
// 'beef up' is one verb, and not some direction of beefing.
// this seems like an inefficient way to store it, but the trie compresses by prefix
// the first-words are also conjugated as infinitives, so mind that
// by @spencermountain, 2015 mit
// many credits to http://www.allmyphrasalverbs.com/
export default [
'act out',
'air out',
'act up',
'add down',
'add off',
'add on',
'add up',
'ask around',
'ask out',
'auction off',
'back away',
'back down',
'back out',
'back off',
'back in',
'back up',
'bail out',
'bang in',
'bang out',
'bank on',
'bargain on',
'barge in',
'barge out',
'bash in',
'bash out',
'be off',
'be onto',
'belt out',
'bear out',
'bear down',
'beat down',
'beat in',
'beat off',
'beat out',
'beat up',
'beef up',
'bend down',
'bend over',
'bend up',
'bite off',
'black out',
'blank out',
'blast off',
'bleed out',
'block in',
'block off',
'block out',
'blow away',
'blow back',
'blow down',
'blow out',
'blow up',
'blurt out',
'board up',
'bore down',
'bog down',
'bog up',
'boil down',
'boil up',
'bone up',
'book in',
'book out',
'boot up',
'boss around',
'bottle down',
'bottle up',
'bounce away',
'bounce back',
'box in',
'box out',
'branch out',
'break down',
'break in',
'break out',
'break up',
'brighten up',
'bring about',
'bring along',
'bring around',
'bring away',
'bring back',
'bring down',
'bring forth',
'bring in',
'bring out',
'bring up',
'bring on',
'bring under',
'brush off',
'brush up',
'bubble over',
'buckle down',
'buckle up',
'build up',
'bulk down',
'bulk up',
'bundle down',
'bundle up',
'burn in',
'burn off',
'burn out',
'burst in',
'burst out',
'bust down',
'bust in',
'bust out',
'bust up',
'butt in',
'butt out',
'buy out',
'buy up',
'buzz off',
'call around',
'call away',
'call back',
'call down',
'call off',
'call on',
'call up',
'call out',
'calm down',
'cancel out',
'carry away',
'carry off',
'carry on',
'carry out',
'carve down',
'carve in',
'carve out',
'carve up',
'cash in',
'cash out',
'cast doubt',
'cast off',
'catch off',
'catch on',
'catch up',
'cave in',
'check in',
'check out',
'cheer on',
'cheer up',
'chat up',
'chew up',
'chew out',
'chill out',
'chip in',
'clean down',
'clean up',
'clear up',
'clear out',
'close up',
'close off',
'close out',
'close in',
'come apart',
'come around',
'come away',
'come back',
'come by',
'come forth',
'come forward',
'come in',
'come off',
'come up',
'come out',
'come over',
'come together',
'come through',
'come under',
'come true',
'cook down',
'cook up',
'cool down',
'cool off',
'count off',
'count on',
'crack on',
'creep by',
'creep down',
'creep in',
'creep on',
'creep out',
'creep up',
'cross in',
'crowd out',
'cross out',
'cry out',
'cut away',
'cut back',
'cut down',
'cut out',
'cut up',
'cut off',
'die down',
'dam up',
'dole out',
'do over',
'double down',
'double up',
'drum up',
'drag on',
'draw on',
'dress down',
'dress up',
'drop away',
'drop back',
'drop by',
'drop in',
'drop off',
'drop out',
'eat in',
'eat out',
'eat up',
'edge out',
'end off',
'end up',
'eye up',
'face down',
'face off',
'face up',
'fall apart',
'fall back',
'fall behind',
'fall down',
'fall in',
'fall off',
'fall out',
'fall over',
'fall through',
'fall short',
'fall victim',
'farm out',
'fatten up',
'feed off',
'feed on',
'feel up',
'fence in',
'fence out',
'fend for',
'fend off',
'fess up',
'fight back',
'figure out',
'file away',
'file for',
'file in',
'file out',
'fill down',
'fill in',
'fill out',
'fill up',
'find out',
'finish up',
'fire away',
'fire back',
'fire up',
'firm up',
'fish out',
'fish up',
'fizzle out',
'flag down',
'flag up',
'flake out',
'flame out',
'flame up',
'flare out',
'flare up',
'flatten down',
'flesh out',
'flip out',
'fork over',
'fold down',
'fold up',
'fog up',
'follow up',
'fool about',
'fool around',
'fool with',
'free up',
'freeze up',
'freshen up',
'frighten away',
'frighten off',
'frown on',
'fry up',
'fuck up',
'fuck around',
'fuel down',
'fuel up',
'gad about',
'gang up',
'gear down',
'gear up',
'geek out',
'get across',
'get ahead',
'get along',
'get around',
'get at',
'get away',
'get back',
'get by',
'get down',
'get in',
'get off',
'get on',
'get out',
'get over',
'get round',
'get up',
'give away',
'give back',
'give birth',
'give down',
'give in',
'give off',
'give on',
'give out',
'give rise',
'give up',
'give way',
'gloss over',
'go about',
'go after',
'go ahead',
'go away',
'go back',
'go by',
'go it',
'go off',
'go on',
'go over',
'go round',
'go through',
'go under',
'goof off',
'goof up',
'grind down',
'grind off',
'grind on',
'grind up',
'grow down',
'grow in',
'grow out',
'grow up',
'gun for',
'hack up',
'hash out',
'ham up',
'hand down',
'hand in',
'hand out',
'hand over',
'hang down',
'hang in',
'hang out',
'hang up',
'hang on',
'hanker for',
'have at',
'have it',
'have to',
'haze over',
'head in',
'head off',
'head on',
'head out',
'head over',
'head under',
'head for',
'heal over',
'hear from',
'hear of',
'heat up',
'help out',
'hide away',
'hide out',
'hit back',
'hit on',
'hit up',
'hold back',
'hold down',
'hold dear',
'hold fast',
'hold off',
'hold on',
'hold out',
'hold over',
'hold up',
'hole up',
'hone in',
'horse around',
'hunker down',
'hunt around',
'hunt down',
'hurry up',
'hush down',
'hush up',
'iron out',
'jack in',
'jack off',
'jack out',
'jazz up',
'joke around',
'jot down',
'juice up',
'jump in',
'keel over',
'keep away',
'keep back',
'keep down',
'keep from',
'keep in',
'keep off',
'keep on',
'keep out',
'keep to',
'keep up',
'key in',
'key up',
'kick off',
'kick out',
'kick up',
'knock down',
'knock off',
'knock out',
'knock up',
'lace up',
'lap up',
'lash into',
'lash out',
'latch on',
'laugh off',
'lay off',
'lay on',
'lay down',
'lean in',
'leave in',
'leave open',
'leave out',
'let down',
'let go',
'let in',
'let out',
'let up',
'level off',
'level out',
'lie around',
'lie down',
'lie in',
'light up',
'lighten up',
'line up',
'link up',
'listen out',
'listen up',
'live off',
'live up',
'live out',
'load down',
'load up',
'lock down',
'lock in',
'lock out',
'lock up',
'log in',
'log off',
'log on',
'log out',
'look after',
'look back',
'look down',
'look forward',
'look into',
'look over',
'look out',
'look under',
'look up',
'loosen up',
'lose out',
'luck out',
'lust over',
'make do',
'make off',
'make out',
'make up',
'make sure',
'make fun',
'man down',
'man up',
'mark down',
'mark up',
'marry off',
'mash up',
'max out',
'measure up',
'melt down',
'melt up',
'mess about',
'mess around',
'mess up',
'meet up',
'miss out',
'mix up',
'mock up',
'monkey with',
'mop down',
'mop up',
'mouth off',
'move along',
'move away',
'move down',
'move in',
'move out',
'move up',
'move on',
'muddle up',
'mull over',
'nail down',
'narrow down',
'nerd out',
'nod off',
'note down',
'open up',
'opt in',
'opt out',
'own up',
'pack down',
'pack in',
'pack out',
'pack up',
'pair down',
'pair off',
'pair up',
'pan out',
'pass away',
'pass back',
'pass in',
'pass off',
'pass on',
'pass out',
'pat down',
'patch up',
'pay back',
'pay off',
'peel in',
'peel off',
'peel out',
'pencil in',
'pick off',
'pick on',
'pick out',
'pick up',
'pig out',
'pile on',
'pile up',
'pin down',
'pin up',
'pipe down',
'pipe up',
'play around',
'play out',
'place under',
'plug in',
'plump down',
'plump up',
'point out',
'pop down',
'pop off',
'pop on',
'pop up',
'pop in',
'pore over',
'pour down',
'power down',
'power off',
'power on',
'power up',
'prattle on',
'press ahead',
'press on',
'print out',
'prop up',
'psych out',
'psych up',
'punch out',
'pull apart',
'pull down',
'pull in',
'pull out',
'pull together',
'pull up',
'pull over',
'put apart',
'put away',
'put back',
'put down',
'put in',
'put off',
'put on',
'put out',
'put together',
'put up',
'quiet down',
'rack up',
'rat out',
'reach in',
'reach out',
'read off',
'read out',
'read over',
'read up',
'reel off',
'rein in',
'rent out',
'rise up',
'ring in',
'ring off',
'ring out',
'rip off',
'rip open',
'rope off',
'roll around',
'roll in',
'roll out',
'roll up',
'root about',
'root for',
'root out',
'round out',
'rough up',
'round off',
'rub down',
'rub in',
'rub out',
'rub up',
'rule out',
'run across',
'run away',
'run back',
'run down',
'run in',
'run into',
'run out',
'run over',
'run through',
'run under',
'run up',
'run around',
'rustle up',
'sail off',
'save up',
'scale down',
'scale up',
'scout out',
'scrape down',
'scrape up',
'screw off',
'screw in',
'screw out',
'see off',
'see out',
'see to',
'sell off',
'sell out',
'send away',
'send back',
'send down',
'send in',
'send off',
'send on',
'send out',
'send over',
'send up',
'set down',
'set in',
'set out',
'set up',
'set forth',
'set upon',
'set foot',
'settle down',
'settle in',
'settle out',
'settle up',
'serve up',
'shack up',
'shade in',
'shake down',
'shake up',
'shave off',
'shoot away',
'shoot back',
'shoot for',
'shoot off',
'shoot out',
'shout out',
'show down',
'show off',
'show on',
'show up',
'shut in',
'shut out',
'shut up',
'shut down',
'side with',
'sign in',
'sign out',
'sign up',
'sink in',
'sing along',
'single out',
'sit down',
'sit in',
'sit out',
'sit up',
'size up',
'sleep in',
'sleep off',
'sleep over',
'slice off',
'slice up',
'slip up',
'slip on',
'slip out',
'slow down',
'slow up',
'smash down',
'smash in',
'smash out',
'smash up',
'smoke out',
'snuggle up',
'snap off',
'snap on',
'snap up',
'snow in',
'snow out',
'sober up',
'soak up',
'sort out',
'sound like',
'spark up',
'speed up',
'speed down',
'speak up',
'speak out',
'spell out',
'spill out',
'spill over',
'spin up',
'spice up',
'splash out',
'split off',
'split up',
'spread out',
'spring on',
'spruce up',
'spur on',
'square down',
'square off',
'square up',
'stack up',
'stamp out',
'stand back',
'stand down',
'stand up',
'start out',
'start up',
'start off',
'stare down',
'stave off',
'stay up',
'stay in',
'step up',
'step out',
'stink up',
'stir up',
'stitch up',
'stop by',
'stop in',
'stop off',
'storm off',
'storm out',
'stretch out',
'straighten out',
'straighten up',
'strike down',
'strike in',
'strike off',
'strike out',
'strike up',
'string up',
'string along',
'stick up',
'study up',
'suck in',
'suck off',
'suck out',
'suck up',
'suit up',
'sum up',
'suss out',
'swear by',
'swing by',
'switch away',
'switch back',
'switch off',
'switch on',
'tack on',
'take aback',
'take after',
'take apart',
'take away',
'take back',
'take down',
'take leave',
'take in',
'take off',
'take on',
'take out',
'take up',
'take over',
'talk over',
'talk shit',
'talk under',
'team up',
'tear down',
'tear off',
'tear up',
'tee off',
'tee up',
'tell off',
'tell on',
'think back',
'think over',
'think up',
'throw away',
'throw back',
'throw up',
'throw in',
'tick by',
'tick off',
'tide over',
'tidy up',
'tie away',
'tie back',
'tie down',
'tie in',
'tie up',
'tighten down',
'tighten up',
'time out',
'tip off',
'tip over',
'tire out',
'tone down',
'top down',
'top off',
'top out',
'top up',
'toss up',
'track down',
'trade in',
'trade out',
'trade up',
'trickle down',
'trip out',
'trip up',
'trot out',
'try in',
'try off',
'try on',
'try out',
'tuck in',
'turn down',
'turn in',
'turn off',
'turn on',
'turn out',
'turn up',
'type in',
'type out',
'type up',
'urge on',
'use up',
'usher in',
'vacuum up',
'wait off',
'wait on',
'wait up',
'wake up',
'walk away',
'walk in',
'walk off',
'walk out',
'warm in',
'warm out',
'warm up',
'wash away',
'wash down',
'wash out',
'wash up',
'watch out',
'wave in',
'wave out',
'wean in',
'wean out',
'wear down',
'wear in',
'wear off',
'wear on',
'wear out',
'weigh in',
'weigh up',
'weird out',
'went down',
'went up',
'whack off',
'wheel in',
'wheel out',
'whip out',
'whip up',
'wimp out',
'wind down',
'wind up',
'wipe out',
'wire up',
'wise up',
'work in',
'work off',
'work out',
'work up',
'write off',
'write up',
'yammer on',
'zero in',
'zero out',
'zip by',
'zip up',
'zip over',
'zone out',
'zonk out',
'grab hold',
]