forked from wellecks/mt_decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtm
More file actions
12831 lines (12831 loc) · 505 KB
/
tm
File metadata and controls
12831 lines (12831 loc) · 505 KB
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
honorables ||| honourable ||| 0.0
sénateurs ||| Senate ||| -0.65036469698
sénateurs ||| senators ||| -0.124938733876
sénateurs ||| senator ||| -1.57978355885
, ||| up ||| -3.28675580025
, ||| would ||| -2.42145442963
, ||| if ||| -2.8096344471
, ||| ' ||| -3.4628469944
, ||| as ||| -2.31671905518
, ||| or ||| -2.64993357658
, ||| , good for them , ||| -3.76387691498
, ||| ; and ||| -3.76387691498
, ||| in ||| -2.4416577816
, ||| more ||| -3.4628469944
, ||| which ||| -3.16181707382
, ||| at ||| -2.8096344471
, ||| . ||| -3.4628469944
, ||| and I ||| -3.4628469944
, ||| then ||| -2.86078715324
, ||| move ||| -3.28675580025
, ||| point ||| -2.76387691498
, ||| ; ||| -2.55975699425
, ||| of ||| -2.33251333237
, ||| é al , ||| -3.76387691498
, ||| our ||| -3.76387691498
, ||| all ||| -3.4628469944
, ||| , ||| -0.0358480773866
, ||| , and ||| -2.86078715324
, ||| the ||| -3.76387691498
, ||| you ||| -3.76387691498
, ||| so ||| -2.8096344471
, ||| , high spending , ||| -3.76387691498
, ||| when ||| -2.91877889633
, ||| , as it were , ||| -3.76387691498
, ||| on ||| -2.68469572067
, ||| were ||| -3.28675580025
, ||| then , ||| -3.76387691498
, ||| time ||| -3.16181707382
, ||| , again , ||| -3.76387691498
, ||| and ||| -1.51345705986
, ||| in time ||| -3.76387691498
, ||| for ||| -3.16181707382
, ||| I ||| -2.8096344471
, ||| no ||| -3.06490707397
, ||| é ||| -3.76387691498
, ||| , recently pointed out , ||| -3.76387691498
, ||| , Mr. Speaker , ||| -3.76387691498
, ||| fact ||| -2.86078715324
, ||| , as someone worked out , ||| -3.76387691498
, ||| but ||| -2.7224843502
, ||| , then ||| -3.16181707382
que ||| as the one ||| -3.68654680252
que ||| saying that ||| -2.73230433464
que ||| realize ||| -3.08448696136
que ||| said ||| -3.38551688194
que ||| get ||| -2.57260346413
que ||| can ||| -2.32481908798
que ||| have ||| -2.27157354355
que ||| which ||| -1.61099994183
que ||| they ||| -3.20942568779
que ||| by ||| -1.98757684231
que ||| expect ||| -3.20942568779
que ||| that ||| -0.154812589288
que ||| one ||| -2.98757696152
que ||| does ||| -3.20942568779
que ||| find that ||| -3.68654680252
que ||| a ||| -2.04309415817
que ||| all ||| -3.08448696136
que ||| way ||| -3.20942568779
que ||| has ||| -3.68654680252
que ||| whom ||| -2.98757696152
que ||| only ||| -2.13024449348
que ||| as being ||| -3.68654680252
que ||| say to ||| -3.68654680252
que ||| found ||| -3.20942568779
que ||| be ||| -3.08448696136
que ||| as well as ||| -3.68654680252
que ||| so ||| -3.68654680252
que ||| about how ||| -3.38551688194
que ||| would like ||| -3.68654680252
que ||| off ||| -3.68654680252
que ||| think ||| -2.57260346413
que ||| we ||| -3.38551688194
que ||| should ||| -2.5404188633
que ||| to hear ||| -3.68654680252
que ||| sure ||| -2.84144878387
que ||| let ||| -2.5404188633
que ||| see ||| -2.48242688179
que ||| going ||| -3.38551688194
que ||| would ||| -2.15506792068
que ||| say ||| -2.68654680252
que ||| that that ||| -3.68654680252
que ||| than ||| -1.47703182697
que ||| that when that ||| -3.68654680252
que ||| as ||| -1.37057650089
que ||| do ||| -2.5404188633
que ||| such ||| -2.98757696152
que ||| that requires that ||| -3.68654680252
que ||| what ||| -1.51045560837
que ||| are ||| -2.45609807968
que ||| where ||| -2.40779328346
que ||| make ||| -2.73230433464
que ||| by saying that ||| -3.68654680252
que ||| that , but ||| -3.68654680252
que ||| will ||| -2.10676336288
que ||| than it does ||| -3.68654680252
que ||| how ||| -2.36432766914
que ||| well ||| -3.68654680252
que ||| which I say ||| -3.68654680252
que ||| when ||| -2.51045560837
que ||| about ||| -2.38551688194
que ||| was ||| -3.20942568779
que ||| says ||| -3.20942568779
que ||| its ||| -3.68654680252
que ||| want ||| -2.73230433464
que ||| tell ||| -3.68654680252
que ||| that as ||| -3.38551688194
que ||| that I think ||| -3.68654680252
que ||| again ||| -3.68654680252
que ||| own ||| -3.68654680252
que ||| that what ||| -3.20942568779
que ||| since ||| -3.08448696136
que ||| be asked to represent them once again ||| -3.68654680252
que ||| think that ||| -3.68654680252
que ||| find ||| -2.98757696152
que ||| to see ||| -3.68654680252
que ||| put ||| -3.20942568779
que ||| which says ||| -3.68654680252
que ||| sure that ||| -3.68654680252
que ||| do not believe that ||| -3.68654680252
que ||| see that ||| -3.20942568779
que ||| did ||| -3.20942568779
que ||| being ||| -2.98757696152
que ||| as told ||| -3.68654680252
que ||| say that ||| -2.84144878387
que ||| it ||| -3.68654680252
que ||| that much of what ||| -3.68654680252
que ||| which is that ||| -3.68654680252
que ||| to ||| -1.8000562191
que ||| as that ||| -3.68654680252
que ||| know ||| -3.68654680252
que ||| is ||| -2.32481908798
que ||| out ||| -2.98757696152
que ||| believe that when ||| -3.68654680252
que ||| like ||| -2.19518518448
que ||| feel ||| -3.38551688194
que ||| that more than ||| -3.68654680252
que ||| but ||| -2.51045560837
que ||| up ||| -3.68654680252
que ||| after ||| -2.98757696152
que ||| thing ||| -3.38551688194
que ||| suggest ||| -3.68654680252
que ||| make sure that ||| -3.68654680252
que ||| were ||| -3.68654680252
que ||| do see ||| -3.68654680252
que ||| than what ||| -3.20942568779
que ||| just that ||| -3.68654680252
que ||| call ||| -3.38551688194
que ||| just seems that ||| -3.68654680252
que ||| make sure ||| -3.38551688194
que ||| just ||| -2.64515423775
que ||| believe that ||| -3.38551688194
que ||| believe ||| -2.90839576721
que ||| doing ||| -3.08448696136
que ||| hear ||| -3.38551688194
que ||| saying ||| -3.08448696136
que ||| that is what ||| -3.68654680252
que ||| because ||| -2.48242688179
se ||| would be taking place ||| -3.62541532516
se ||| had ||| -2.19405150414
se ||| get ||| -1.71160149574
se ||| are going ||| -3.62541532516
se ||| is to be ||| -3.32438540459
se ||| went ||| -2.51147198677
se ||| they ||| -2.42129540443
se ||| has to size up ||| -3.32438540459
se ||| did happen ||| -3.62541532516
se ||| that ||| -2.84726405144
se ||| after having ||| -3.62541532516
se ||| does ||| -2.09393644333
se ||| was would ||| -3.62541532516
se ||| it ||| -2.32438540459
se ||| are asking themselves ||| -3.32438540459
se ||| a ||| -2.01263141632
se ||| way ||| -3.32438540459
se ||| has ||| -1.42675828934
se ||| if it was ||| -3.32438540459
se ||| address ||| -3.32438540459
se ||| had a ||| -3.62541532516
se ||| will come ||| -3.62541532516
se ||| committed ||| -3.02335524559
se ||| be ||| -1.0888569355
se ||| there ||| -3.14829421043
se ||| be limited to that which is ||| -3.62541532516
se ||| have ||| -1.44643843174
se ||| out for a ||| -3.62541532516
se ||| are being ||| -3.32438540459
se ||| would deal ||| -3.32438540459
se ||| will look ||| -3.62541532516
se ||| caught ||| -3.62541532516
se ||| when they ||| -3.32438540459
se ||| should ||| -2.67117285728
se ||| take ||| -2.39496636391
se ||| whether ||| -1.66637396812
se ||| together ||| -3.62541532516
se ||| to find out ||| -3.32438540459
se ||| getting ||| -2.37014293671
se ||| happening ||| -3.62541532516
se ||| see ||| -3.14829421043
se ||| going ||| -2.19405150414
se ||| would ||| -1.65693235397
se ||| are thinking when ||| -3.32438540459
se ||| these ||| -2.62541532516
se ||| is an answer that has ||| -3.62541532516
se ||| making ||| -3.02335524559
se ||| come to ||| -3.62541532516
se ||| commit ||| -3.32438540459
se ||| how to ||| -3.62541532516
se ||| over ||| -3.32438540459
se ||| take time away ||| -3.62541532516
se ||| what ||| -3.62541532516
se ||| are ||| -1.11755943298
se ||| to get ||| -3.32438540459
se ||| themselves ||| -1.87722730637
se ||| come ||| -2.14829421043
se ||| find themselves ||| -2.92644524574
se ||| it has ||| -3.62541532516
se ||| will ||| -1.34666180611
se ||| perhaps ||| -3.62541532516
se ||| ask ||| -3.62541532516
se ||| take place ||| -3.32438540459
se ||| how ||| -2.54623413086
se ||| if ||| -0.936995506287
se ||| to come up ||| -3.62541532516
se ||| come up ||| -3.32438540459
se ||| when ||| -2.62541532516
se ||| question ||| -2.28299260139
se ||| commit itself ||| -3.62541532516
se ||| goes ||| -2.51147198677
se ||| down ||| -2.58402276039
se ||| about ||| -3.62541532516
se ||| was ||| -1.65228748322
se ||| is a ||| -3.32438540459
se ||| to be ||| -2.78031730652
se ||| involved ||| -3.14829421043
se ||| they are ||| -3.32438540459
se ||| to have ||| -3.62541532516
se ||| now ||| -3.32438540459
se ||| get down ||| -3.32438540459
se ||| have a ||| -3.14829421043
se ||| down to ||| -3.62541532516
se ||| are being eliminated as successes are being ||| -3.32438540459
se ||| have been ||| -3.62541532516
se ||| look ||| -2.10690140724
se ||| get involved ||| -3.62541532516
se ||| had to be ||| -3.14829421043
se ||| himself ||| -2.14829421043
se ||| find ||| -2.62541532516
se ||| itself if ||| -3.62541532516
se ||| then the question ||| -3.62541532516
se ||| place if ||| -3.32438540459
se ||| have been told that if ||| -3.32438540459
se ||| was committed ||| -3.62541532516
se ||| concern ||| -3.14829421043
se ||| is getting ||| -2.92644524574
se ||| have an opportunity to ||| -3.62541532516
se ||| for ||| -2.72232532501
se ||| having ||| -3.32438540459
se ||| is going ||| -2.67117285728
se ||| has come ||| -3.32438540459
se ||| did ||| -2.42129540443
se ||| should be ||| -3.62541532516
se ||| being ||| -2.19405150414
se ||| go ||| -3.62541532516
se ||| nevertheless ||| -3.62541532516
se ||| be a ||| -3.62541532516
se ||| happens ||| -2.78031730652
se ||| on ||| -3.02335524559
se ||| will happen ||| -3.62541532516
se ||| to ||| -1.29703569412
se ||| know ||| -2.84726405144
se ||| is ||| -0.628903687
se ||| wonder ||| -2.78031730652
se ||| out ||| -2.42129540443
se ||| would be ||| -2.72232532501
se ||| is will ||| -3.62541532516
se ||| is that this is going ||| -3.32438540459
se ||| would have ||| -3.62541532516
se ||| deal ||| -3.14829421043
se ||| would commit ||| -3.62541532516
se ||| be if ||| -3.32438540459
se ||| becomes ||| -3.14829421043
se ||| wondering ||| -3.32438540459
se ||| is down ||| -3.62541532516
se ||| up ||| -1.80587136745
se ||| after ||| -3.14829421043
se ||| keep ||| -3.14829421043
se ||| with ||| -3.62541532516
se ||| is going to ||| -3.62541532516
se ||| away ||| -2.92644524574
se ||| or ||| -2.67117285728
se ||| coming ||| -3.62541532516
se ||| is now going ||| -3.32438540459
se ||| get up ||| -3.62541532516
se ||| please ||| -3.02335524559
se ||| were ||| -2.37014293671
se ||| may be ||| -3.14829421043
se ||| then ||| -2.92644524574
se ||| may ||| -2.54623413086
se ||| dealing ||| -3.14829421043
se ||| itself ||| -2.01263141632
se ||| will be ||| -2.24520421028
se ||| might ||| -2.67117285728
se ||| true ||| -3.14829421043
se ||| just ||| -2.84726405144
se ||| would see if ||| -3.62541532516
se ||| might be ||| -3.32438540459
se ||| the ||| -2.84726405144
se ||| get itself ||| -3.62541532516
se ||| is being ||| -2.54623413086
se ||| how is ||| -3.62541532516
se ||| be right up ||| -3.32438540459
se ||| happen ||| -3.14829421043
se ||| place ||| -2.28299260139
se ||| has to be ||| -3.32438540459
se ||| if they are ||| -3.62541532516
se ||| is to ||| -3.62541532516
se ||| was passing himself off ||| -3.32438540459
se ||| they were ||| -3.32438540459
se ||| have to ||| -3.32438540459
se ||| are getting ||| -3.32438540459
se ||| here ||| -3.32438540459
est ||| matter ||| -3.32414531708
est ||| ' ||| -2.35410833359
est ||| not one ||| -3.80126643181
est ||| does not ||| -3.50023651123
est ||| are ||| -1.50901043415
est ||| has not done the job is ||| -3.80126643181
est ||| are now ||| -3.80126643181
est ||| where ||| -3.50023651123
est ||| makes ||| -2.75987386703
est ||| being ||| -2.42105531693
est ||| one ||| -3.50023651123
est ||| end ||| -2.84702396393
est ||| does ||| -3.50023651123
est ||| not ||| -2.84702396393
est ||| stands ||| -2.95616841316
est ||| it ||| -3.50023651123
est ||| is there is ||| -3.80126643181
est ||| a ||| -2.2961165905
est ||| was created was ||| -3.80126643181
est ||| way ||| -3.80126643181
est ||| has ||| -1.51796519756
est ||| been ||| -2.19920659065
est ||| the ||| -3.80126643181
est ||| has been ||| -2.2961165905
est ||| is what is ||| -3.80126643181
est ||| lies ||| -3.50023651123
est ||| ? ||| -3.10229635239
est ||| ' s ||| -3.10229635239
est ||| is being ||| -2.54599404335
est ||| he ||| -3.32414531708
est ||| important ||| -3.10229635239
est ||| was ||| -1.42651808262
est ||| is most important ||| -3.80126643181
est ||| agreed ||| -3.19920659065
est ||| big ||| -3.50023651123
est ||| was not ||| -3.80126643181
est ||| is something which is ||| -3.80126643181
est ||| is ||| -0.0662267655134
est ||| now ||| -3.32414531708
est ||| has now ||| -3.80126643181
est ||| s ||| -3.80126643181
est ||| very , very ||| -3.80126643181
est ||| is is ||| -3.80126643181
est ||| is important ||| -3.50023651123
est ||| are doing is ||| -3.80126643181
- ||| would ||| -2.04705834389
- ||| go ||| -3.30233097076
- ||| - J é ||| -3.30233097076
- ||| - ||| -0.0898769646883
- ||| deputy ||| -3.60336089134
- ||| , would ||| -3.60336089134
- ||| can ||| -3.60336089134
- ||| do ||| -1.87096714973
- ||| speaking ||| -3.60336089134
- ||| what ||| -3.30233097076
- ||| are ||| -1.98011159897
- ||| where ||| -3.00130105019
- ||| let the ||| -3.60336089134
- ||| for ||| -2.82520961761
- ||| themselves ||| -3.60336089134
- ||| they ||| -3.60336089134
- ||| back ||| -2.82520961761
- ||| my ||| -3.30233097076
- ||| please ||| -3.30233097076
- ||| did ||| -2.2416331768
- ||| may ||| -3.60336089134
- ||| that ||| -2.26093816757
- ||| which ||| -3.12623977661
- ||| end ||| -2.7582628727
- ||| does ||| -1.89579069614
- ||| indeed ||| -3.30233097076
- ||| it ||| -2.82520961761
- ||| perhaps could ||| -3.60336089134
- ||| him ||| -2.60336089134
- ||| might ||| -3.12623977661
- ||| é ||| -2.90439081192
- ||| how ||| -2.60336089134
- ||| of ||| -2.7582628727
- ||| , ||| -1.29800951481
- ||| could ||| -2.7582628727
- ||| ? ||| -3.60336089134
- ||| to ||| -3.12623977661
- ||| - R é ||| -3.30233097076
- ||| the ||| -1.93126308918
- ||| House ||| -3.12623977661
- ||| is ||| -1.61213481426
- ||| - on - ||| -3.30233097076
- ||| was ||| -2.82520961761
- ||| - justiciable , non - ||| -3.60336089134
- ||| member ||| -2.45723295212
- ||| health ||| -2.90439081192
- ||| kind ||| -2.70027089119
- ||| the answer to the ||| -3.60336089134
- ||| perhaps ||| -3.30233097076
- ||| tell ||| -3.30233097076
- ||| - in - ||| -3.60336089134
- ||| be ||| -3.12623977661
- ||| let ||| -2.60336089134
- ||| é t é ||| -3.60336089134
- ||| is the ||| -3.60336089134
- ||| Deputy ||| -3.00130105019
- ||| " ||| -3.00130105019
- ||| , let ||| -3.60336089134
- ||| side ||| -3.12623977661
- ||| - he does ||| -3.60336089134
- ||| then ||| -3.60336089134
il ||| going ||| -3.43400979042
il ||| it hopes it ||| -3.735039711
il ||| now it is ||| -3.735039711
il ||| it appears that it ||| -3.735039711
il ||| this piece of legislation is ||| -3.735039711
il ||| be ||| -2.47976708412
il ||| we now ||| -3.735039711
il ||| this one we ||| -3.735039711
il ||| it is that he ||| -3.735039711
il ||| get ||| -3.43400979042
il ||| can ||| -3.735039711
il ||| must we ||| -3.735039711
il ||| do ||| -3.25791835785
il ||| this bill is ||| -3.735039711
il ||| such ||| -3.25791835785
il ||| left ||| -3.43400979042
il ||| what ||| -2.88994169235
il ||| are ||| -3.25791835785
il ||| his service he ||| -3.735039711
il ||| what we ||| -3.735039711
il ||| at ||| -3.735039711
il ||| it states they ||| -3.735039711
il ||| it said it ||| -3.735039711
il ||| understand ||| -3.735039711
il ||| now he ||| -3.735039711
il ||| he said he ||| -3.735039711
il ||| they ||| -1.57970368862
il ||| this is ||| -3.735039711
il ||| then ||| -2.88994169235
il ||| it is it ||| -3.735039711
il ||| that ||| -2.22988963127
il ||| does ||| -2.47976708412
il ||| it does ||| -3.43400979042
il ||| it ||| -0.396981835365
il ||| to work there ||| -3.735039711
il ||| represent ||| -3.735039711
il ||| him ||| -2.3548283577
il ||| a ||| -2.88994169235
il ||| we feel it ||| -3.735039711
il ||| go ||| -3.735039711
il ||| will ||| -2.55894851685
il ||| has ||| -2.65585851669
il ||| they were searching for him ||| -3.735039711
il ||| voice ||| -3.735039711
il ||| takes ||| -3.735039711
il ||| us ||| -2.95688843727
il ||| to ||| -1.9946770668
il ||| action ||| -3.43400979042
il ||| the ||| -3.03606963158
il ||| that is ||| -3.735039711
il ||| his past life he ||| -3.735039711
il ||| how ||| -3.25791835785
il ||| is ||| -2.11179041862
il ||| there ||| -1.19346046448
il ||| must ||| -2.65585851669
il ||| have ||| -3.735039711
il ||| now we ||| -3.735039711
il ||| time ||| -3.13297963142
il ||| wrong ||| -3.43400979042
il ||| we must ||| -3.735039711
il ||| it if he ||| -3.735039711
il ||| so ||| -2.88994169235
il ||| it he ||| -3.735039711
il ||| he ||| -0.49324426055
il ||| now ||| -2.88994169235
il ||| we ||| -1.11075758934
il ||| take ||| -2.78079724312
il ||| this ||| -1.47258865833
il ||| he is saying he ||| -3.735039711
il ||| his ||| -1.92885971069
il ||| he must ||| -3.43400979042
il ||| time has ||| -3.735039711
il ||| there is ||| -3.735039711
il ||| it that he ||| -3.735039711
passé ||| spent ||| -0.989746391773
passé ||| went ||| -1.56377768517
passé ||| talking ||| -2.16583752632
passé ||| elected ||| -2.16583752632
passé ||| before ||| -1.62176954746
passé ||| happened ||| -0.92279958725
passé ||| anything ||| -2.16583752632
passé ||| past ||| -0.236418694258
passé ||| back ||| -1.86480760574
passé ||| whether ||| -2.16583752632
passé ||| history ||| -1.56377768517
passé ||| given ||| -2.46686768532
passé ||| later ||| -2.16583752632
passé ||| historically ||| -2.16583752632
passé ||| then ||| -1.98974633217
passé ||| gone ||| -1.29077637196
ici ||| going ||| -2.53592681885
ici ||| here in this House ||| -2.83695673943
ici ||| raise here ||| -2.83695673943
ici ||| within ||| -2.0588054657
ici ||| Parliament ||| -2.23489665985
ici ||| raise ||| -2.83695673943
ici ||| year ||| -1.93386673927
ici ||| at ||| -2.0588054657
ici ||| were ||| -2.83695673943
ici ||| come ||| -2.53592681885
ici ||| here before ||| -2.83695673943
ici ||| by ||| -0.998107671738
ici ||| before ||| -1.66086542606
ici ||| talking ||| -2.83695673943
ici ||| today ||| -2.53592681885
ici ||| to ||| -2.0588054657
ici ||| take this ||| -2.53592681885
ici ||| paid ||| -2.53592681885
ici ||| House ||| -1.34559500217
ici ||| issue ||| -2.83695673943
ici ||| until ||| -1.75777554512
ici ||| Chamber ||| -1.83695673943
ici ||| next ||| -1.83695673943
ici ||| House today ||| -2.83695673943
ici ||| place ||| -1.72301340103
ici ||| by the end ||| -2.53592681885
ici ||| body ||| -2.53592681885
ici ||| place before ||| -2.83695673943
ici ||| take ||| -2.23489665985
ici ||| this ||| -1.83695673943
ici ||| to the House ||| -2.53592681885
ici ||| counts ||| -2.53592681885
ici ||| within the next ||| -2.53592681885
ici ||| here ||| -0.179900884628
mardi ||| Thursday ||| -1.86332285404
mardi ||| Tuesday ||| -0.00599036365747
dernier ||| on ||| -1.3302372694
dernier ||| business ||| -2.69196510315
dernier ||| previous ||| -2.08990502357
dernier ||| recent ||| -2.08990502357
dernier ||| year ||| -1.39093506336
dernier ||| ago ||| -2.39093518257
dernier ||| past ||| -1.2006033659
dernier ||| back ||| -2.39093518257
dernier ||| last year ||| -2.21484375
dernier ||| latest ||| -1.46151614189
dernier ||| was ||| -2.08990502357
dernier ||| final ||| -1.61278390884
dernier ||| last ||| -0.129672244191
dernier ||| at ||| -2.21484375
dernier ||| th ||| -2.69196510315
? ||| ? ||| -0.000198262714548
? ||| answer ||| -3.34064245224
sénateurs , ||| Senate and ||| -0.477121263742
sénateurs , ||| senators , ||| -0.176091253757
, que ||| , then that ||| -2.38560628891
, que ||| , would ||| -2.38560628891
, que ||| , after ||| -2.38560628891
, que ||| would say ||| -2.68663620949
, que ||| , compared to ||| -2.68663620949
, que ||| , get ||| -2.68663620949
, que ||| and believe ||| -2.68663620949
, que ||| , can ||| -2.20951509476
, que ||| so that ||| -2.38560628891
, que ||| would admit that ||| -2.38560628891
, que ||| of that ||| -2.68663620949
, que ||| , what ||| -1.16812229156
, que ||| that , ||| -1.90848505497
, que ||| up that ||| -2.68663620949
, que ||| , where ||| -1.90848505497
, que ||| , which ||| -1.23947823048
, que ||| fact that ||| -2.38560628891
, que ||| , make ||| -2.68663620949
, que ||| being , ||| -2.38560628891
, que ||| , whom ||| -1.84153819084
, que ||| , that ||| -0.195274576545
, que ||| which ||| -2.08457636833
, que ||| , will ||| -1.90848505497
, que ||| , which indicate that ||| -2.38560628891
, que ||| that , if they do ||| -2.68663620949
, que ||| , how ||| -2.38560628891
, que ||| , today that ||| -2.38560628891
, que ||| , that much of what ||| -2.68663620949
, que ||| , is that ||| -2.38560628891
, que ||| , to ||| -1.48251628876
, que ||| , you will understand that ||| -2.38560628891
, que ||| , well , ||| -2.68663620949
, que ||| or that ||| -2.68663620949
, que ||| , be ||| -2.68663620949
, que ||| , being ||| -2.08457636833
, que ||| , as ||| -2.08457636833
, que ||| time that ||| -2.38560628891
, que ||| , let ||| -1.84153819084
, que ||| , we ||| -2.20951509476
, que ||| and that ||| -1.84153819084
, que ||| , would like ||| -2.38560628891
, que ||| , and would ||| -2.68663620949
, que ||| , then it should ||| -2.68663620949
que se ||| that to ||| -1.49136173725
que se ||| what will happen ||| -1.49136173725
que se ||| that when ||| -1.19033169746
que se ||| that should ||| -1.19033169746
que se ||| what is ||| -0.889301717281
que se ||| what happens ||| -1.19033169746
que se ||| was if ||| -1.19033169746
que se ||| what has ||| -1.19033169746
que se ||| that , if ||| -1.49136173725
que se ||| is about ||| -1.19033169746
que se ||| that if ||| -0.412180453539
se est ||| has ||| -0.39545121789
se est ||| it was ||| -2.4166405201
se est ||| did not get it right ||| -2.4166405201
se est ||| has been ||| -0.898126542568
se est ||| have been ||| -1.81458055973
se est ||| there was ||| -2.4166405201
se est ||| had a ||| -2.11561059952
se est ||| has made a ||| -2.11561059952
se est ||| being ||| -2.11561059952
se est ||| is ||| -0.825575888157
se est ||| has agreed ||| -2.11561059952
se est ||| has a ||| -2.11561059952
se est ||| are ||| -1.81458055973
se est ||| was ||| -0.676277816296
se est ||| have agreed ||| -2.4166405201
se est ||| a ||| -1.93951928616
se est ||| to a ||| -2.4166405201
se est ||| be a ||| -2.4166405201
se est ||| there is ||| -2.11561059952
est - ||| is , ||| -1.79934060574
est - ||| does ||| -0.384367197752
est - ||| is the ||| -1.49831056595
est - ||| is that ||| -1.49831056595
est - ||| is ||| -0.307978868484
est - ||| are ||| -1.79934060574
- il ||| - we ||| -1.91381382942
- il ||| be kind ||| -1.91381382942
- il ||| can we ||| -1.91381382942
- il ||| he let ||| -1.91381382942
- il ||| do we ||| -1.73772263527
- il ||| does it ||| -1.61278390884
- il ||| it - it ||| -1.91381382942
- il ||| are we ||| -1.91381382942
- il ||| him whether he ||| -1.91381382942
- il ||| did he ||| -1.73772263527
- il ||| that ||| -2.21484375
- il ||| does ||| -1.36974585056
- il ||| does he ||| -1.13566255569
- il ||| , it ||| -1.73772263527
- il ||| could it ||| -2.21484375
- il ||| would it ||| -1.91381382942
- il ||| him ||| -1.73772263527
- il ||| that we ||| -2.21484375
- il ||| - it ||| -1.73772263527
- il ||| do they ||| -1.91381382942
- il ||| is ||| -1.73772263527
- il ||| would he ||| -1.61278390884
- il ||| is it ||| -0.328353136778
- il ||| - he ||| -1.51587378979
- il ||| - there ||| -2.21484375
- il ||| be ||| -2.21484375
- il ||| , we ||| -1.91381382942
- il ||| é miscamingue to ||| -1.91381382942
- il ||| is he ||| -1.21484386921
ici , ||| Chamber , ||| -1.54406809807
ici , ||| here and ||| -0.845098018646
ici , ||| this instance , ||| -1.54406809807
ici , ||| House , ||| -1.24303805828
ici , ||| here which ||| -1.24303805828
ici , ||| here , ||| -0.163856804371
mardi dernier ||| Tuesday of last ||| -0.954242527485
mardi dernier ||| past Tuesday ||| -0.954242527485
mardi dernier ||| last Tuesday ||| -0.176091253757
mardi dernier ||| on Tuesday ||| -0.954242527485
, que se ||| , that if ||| 0.0
que se est ||| what has ||| -0.301030009985
que se est ||| what has been ||| -0.301030009985
se est - ||| did ||| 0.0
est - il ||| was he ||| -1.76342797279
est - il ||| is he ||| -0.649484634399
est - il ||| he did ||| -1.46239805222
est - il ||| is this ||| -1.76342797279
est - il ||| does he ||| -1.16136801243
est - il ||| is there ||| -1.76342797279
est - il ||| is it ||| -0.219359949231
est - il ||| is whether it ||| -1.76342797279
, mardi dernier ||| , last Tuesday ||| 0.0
se est - il ||| come he did ||| -0.301030009985
se est - il ||| did he ||| -0.301030009985
que se est - il ||| what ||| 0.0
se est - il passé ||| has happened ||| 0.0
, que se est - il ||| , what ||| 0.0
que se est - il passé ||| what happened ||| -0.176091253757
que se est - il passé ||| what has happened ||| -0.477121263742
, que se est - il passé ||| , what happened ||| 0.0
un ||| strong ||| -3.36109805107
un ||| day ||| -3.53718924522
un ||| get ||| -3.1392493248
un ||| is this ||| -3.8382191658
un ||| a thing as a ||| -3.8382191658
un ||| very ||| -3.36109805107
un ||| across ||| -3.53718924522
un ||| are ||| -2.79682660103
un ||| for ||| -2.8382191658
un ||| any ||| -2.06736731529
un ||| someone ||| -2.93512916565
un ||| build ||| -3.8382191658
un ||| a capital base for a ||| -3.8382191658
un ||| an ||| -0.912391662598
un ||| one ||| -1.12725615501
un ||| this is ||| -3.53718924522
un ||| another ||| -2.7590379715
un ||| will ||| -3.23615932465
un ||| a ||| -0.128525346518
un ||| it ||| -3.8382191658
un ||| of ||| -3.36109805107
un ||| something called a ||| -3.8382191658
un ||| be paying a ||| -3.8382191658
un ||| to ||| -2.93512916565
un ||| an extremely strong ||| -3.8382191658
un ||| a party and a ||| -3.8382191658
un ||| to make this ||| -3.8382191658
un ||| one strong ||| -3.8382191658
un ||| a gentleman who was a ||| -3.8382191658
un ||| be ||| -2.0186753273
un ||| something ||| -2.69209122658
un ||| was ||| -2.8382191658
un ||| have ||| -2.49579644203
un ||| is a ||| -3.8382191658
un ||| place ||| -3.36109805107
un ||| want ||| -3.53718924522
un ||| something a ||| -3.8382191658
un ||| is ||| -2.12221598625
un ||| we ||| -2.93512916565
un ||| this ||| -2.53718924522
un ||| a member of a ||| -3.36109805107
un ||| any one ||| -3.8382191658
un ||| some ||| -2.10582542419
un ||| something which is an ||| -3.8382191658
un ||| a strong ||| -3.53718924522
un ||| give ||| -3.23615932465
Comité ||| Committee ||| -0.330484986305
Comité ||| m ||| -2.26245117188
Comité ||| committee ||| -0.277923762798
de ||| from ||| -1.33957886696
de ||| would ||| -2.51567006111
de ||| to sanction grants of ||| -3.62961339951
de ||| say ||| -3.62961339951
de ||| up ||| -2.9306435585
de ||| than ||| -2.23167347908
de ||| with ||| -1.83722174168
de ||| across ||| -3.15249228477
de ||| ' ||| -2.13825178146
de ||| put ||| -3.62961339951
de ||| as ||| -2.21464014053
de ||| of policy for ||| -3.62961339951
de ||| de ||| -2.39916443825
de ||| are ||| -2.9306435585
de ||| in ||| -1.27550494671
de ||| which ||| -3.15249228477
de ||| for ||| -1.21464014053
de ||| having ||| -3.02755355835
de ||| any ||| -3.02755355835
de ||| to work on ||| -3.62961339951
de ||| by ||| -1.810069561
de ||| about after some ||| -3.62961339951
de ||| well ||| -3.32858347893
de ||| to look at ||| -3.62961339951
de ||| being ||| -2.78451538086
de ||| an ||| -2.39916443825
de ||| at ||| -2.1244635582
de ||| up of ||| -3.62961339951
de ||| under ||| -3.02755355835
de ||| our ||| -3.62961339951
de ||| a ||| -2.07331085205
de ||| of ||| -0.313223689795
de ||| on ||| -1.77228093147
de ||| will ||| -2.51567006111
de ||| the ||| -3.62961339951
de ||| in Quebec of ||| -3.62961339951
de ||| of Parliament of ||| -3.62961339951
de ||| to ||| -0.746520102024
de ||| s ||| -1.8167001009
de ||| ' s ||| -3.15249228477
de ||| make ||| -3.15249228477
de ||| with an ||| -3.62961339951
de ||| that ||| -2.5504322052
de ||| moving ||| -3.32858347893
de ||| for me to ||| -3.62961339951
de ||| is ||| -2.51567006111
de ||| there ||| -3.15249228477
de ||| out ||| -2.78451538086
de ||| about ||| -1.78451538086
de ||| have ||| -2.67537093163
de ||| to continue to ||| -3.62961339951
de ||| over ||| -2.67537093163
de ||| its ||| -3.32858347893
de ||| and ||| -3.02755355835
de ||| throughout ||| -3.15249228477
de ||| be ||| -3.15249228477
de ||| into ||| -2.85146212578
de ||| off ||| -2.85146212578
de ||| Government ||| -3.02755355835
de ||| we ||| -3.02755355835
de ||| take ||| -3.32858347893
de ||| in a ||| -3.32858347893
de ||| about to ||| -3.62961339951
de ||| to offer congratulations to ||| -3.62961339951
de ||| through ||| -3.15249228477
de ||| some ||| -1.96685564518
sélection ||| selection ||| -0.054357662797
sélection ||| determining qualified ||| -0.929418921471
a ||| had ||| -2.00860023499
a ||| said ||| -2.29964590073
a ||| things ||| -3.6420686245
a ||| told ||| -2.73897862434
a ||| has in its ||| -3.6420686245
a ||| in ||| -3.04000854492
a ||| went ||| -2.26185727119
a ||| by ||| -2.6420686245
a ||| have determined is ||| -3.6420686245
a ||| case ||| -2.94309854507
a ||| was stated ||| -3.6420686245
a ||| heard ||| -2.60067605972
a ||| does ||| -2.43794870377
a ||| it ||| -2.49594068527
a ||| made ||| -1.92606532574
a ||| was taken ||| -3.6420686245
a ||| a ||| -1.60067594051
a ||| who were ||| -3.34103870392
a ||| has ||| -0.374896913767
a ||| been ||| -2.68782615662
a ||| had a ||| -3.6420686245
a ||| has seen ||| -3.6420686245
a ||| who ||| -2.60067605972
a ||| found ||| -2.68782615662
a ||| there ||| -3.04000854492
a ||| have ||| -1.17520105839
a ||| is anything that has ||| -3.6420686245
a ||| so ||| -3.6420686245
a ||| moved ||| -2.79697060585
a ||| does the House give its ||| -3.6420686245
a ||| does have ||| -3.04000854492
a ||| given ||| -3.6420686245
a ||| have seen ||| -3.34103870392
a ||| taken ||| -3.6420686245
a ||| has had ||| -2.73897862434
a ||| took ||| -2.38679623604
a ||| as ||| -3.04000854492
a ||| made an ||| -3.6420686245
a ||| has made ||| -2.79697060585
a ||| have had ||| -3.04000854492
a ||| was not quite ||| -3.6420686245
a ||| taking ||| -2.94309854507
a ||| was brought ||| -3.6420686245
a ||| has been ||| -2.34103870392
a ||| were made ||| -3.6420686245
a ||| well ||| -2.94309854507
a ||| s ||| -2.19491052628
a ||| done ||| -3.6420686245
a ||| was ||| -1.03354263306
a ||| says ||| -3.6420686245
a ||| is a ||| -2.68782615662
a ||| its ||| -2.5281252861
a ||| have made ||| -3.34103870392
a ||| ago ||| -3.16494727135
a ||| have a ||| -3.16494727135
a ||| saw ||| -2.56288743019
a ||| have been ||| -3.04000854492
a ||| quite ||| -2.94309854507
a ||| who have ||| -3.6420686245
a ||| terms ||| -3.34103870392
a ||| stated ||| -2.46597743034
a ||| has taken ||| -3.6420686245
a ||| got ||| -2.56288743019
a ||| spoken ||| -3.6420686245
a ||| worked ||| -3.6420686245
a ||| started ||| -3.04000854492
a ||| put ||| -2.49594068527
a ||| put his ||| -3.6420686245
a ||| brought ||| -2.5281252861
a ||| is that he made ||| -3.34103870392
a ||| one ||| -3.34103870392
a ||| were introduced ||| -3.6420686245
a ||| did ||| -1.45737719536
a ||| did was ||| -3.34103870392
a ||| have taken ||| -3.6420686245
a ||| did what came ||| -3.34103870392
a ||| spoke ||| -2.79697060585
a ||| him ||| -3.16494727135
a ||| has said ||| -3.34103870392
a ||| paid ||| -3.34103870392
a ||| gave ||| -2.34103870392
a ||| is ||| -0.745542407036
a ||| out ||| -2.09800052643
a ||| talked ||| -2.79697060585
a ||| raised ||| -2.79697060585
a ||| came ||| -2.46597743034
a ||| over ||| -3.6420686245
a ||| called ||| -3.04000854492
a ||| has its ||| -3.6420686245
a ||| started out ||| -3.6420686245
a ||| who was ||| -3.16494727135
a ||| referred ||| -2.79697060585
a ||| has started ||| -3.6420686245
a ||| has brought ||| -3.04000854492
a ||| it if necessary but ||| -3.6420686245
a ||| were ||| -1.76700735092
a ||| any ||| -3.6420686245
a ||| an ||| -2.68782615662
a ||| is asking was ||| -3.6420686245
a ||| was said ||| -3.6420686245
a ||| his ||| -2.41161966324
a ||| have spoken ||| -3.6420686245
a ||| is having a ||| -3.6420686245
a ||| has been a ||| -3.6420686245
a ||| took his ||| -3.6420686245
a ||| against ||| -3.34103870392
a ||| him out ||| -3.6420686245
a ||| seen ||| -3.6420686245
a ||| minister ||| -2.73897862434
a ||| decided ||| -3.6420686245
a ||| he ||| -2.41161966324
a ||| has as its ||| -3.6420686245
a ||| she ||| -3.34103870392
a ||| have gone through an ||| -3.34103870392
a ||| provided ||| -3.04000854492
a ||| received ||| -3.6420686245
a ||| introduced ||| -2.94309854507
a ||| he has ||| -3.34103870392
a ||| was made ||| -3.04000854492
a ||| has done is ||| -3.6420686245
a ||| during ||| -3.6420686245
a ||| held ||| -3.04000854492
été ||| established ||| -2.74844646454
été ||| got ||| -2.44741654396
été ||| created ||| -2.52659773827
été ||| had ||| -1.92453765869
été ||| earlier ||| -2.52659773827
été ||| office ||| -3.22556781769
été ||| put ||| -1.84535646439
été ||| as ||| -2.07943964005
été ||| acted ||| -2.92453765869
été ||| brought ||| -2.22556781769
été ||| very ||| -2.22556781769
été ||| were ||| -1.48520505428
été ||| returned ||| -2.92453765869
été ||| before ||| -3.22556781769
été ||| case ||| -2.62350773811
été ||| not ||| -2.32247781754
été ||| suffered ||| -2.92453765869
été ||| made ||| -1.84535646439
été ||| hit ||| -2.92453765869
été ||| former ||| -2.62350773811
été ||| been reported ||| -2.92453765869
été ||| been ||| -0.214843854308
été ||| presented ||| -2.92453765869
été ||| place ||| -2.52659773827
été ||| done ||| -2.52659773827
été ||| issue ||| -2.74844646454
été ||| developed ||| -2.92453765869
été ||| made that were ||| -2.92453765869
été ||| touched ||| -2.74844646454
été ||| was ||| -0.822447180748
été ||| have ||| -2.92453765869
été ||| came ||| -2.27132511139
été ||| reported ||| -2.52659773827
été ||| received ||| -2.38046956062
été ||| became ||| -2.52659773827
été ||| spent ||| -2.92453765869
été ||| into ||| -2.74844646454
été ||| set ||| -2.52659773827
été ||| this ||| -2.32247781754